Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Help with the source error

Newbie Spellweaver
Joined
May 30, 2015
Messages
21
Reaction score
1
this is what i am getting while i build the source of UGG

Code:
[/B][/COLOR][B]Cannot load project with duplicated project items: ZRuleBountyHunter.cpp is included as 'ClCompile' and as 'ClCompile' item types.[/B][B]
 
Skilled Illusionist
Joined
Oct 3, 2011
Messages
300
Reaction score
48
Go to next directory Source / Gunz and find

PHP:
Gunz.vcxproj
Now open it with some text editor.
A search for that file wich is probably duplicated so, delete these files include and u r rdy.
There is some more related to the gamemodes inside that source.

Salut.
 
Upvote 0
Newbie Spellweaver
Joined
May 30, 2015
Messages
21
Reaction score
1
Code:
 c:\program files (x86)\windows kits\10\include\10.0.17134.0\um\winnt.h(390): error C2146: syntax error: missing ';' before identifier 'PVOID64'
c:\program files (x86)\windows kits\10\include\10.0.17134.0\um\winnt.h(390): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\program files (x86)\windows kits\10\include\10.0.17134.0\um\winnt.h(12995): error C3646: 'Buffer': unknown override specifier
c:\program files (x86)\windows kits\10\include\10.0.17134.0\um\winnt.h(12995): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
cscommon\include\realcpnet.h(42): warning C4091: 'typedef ': ignored on left of 'RCP_IO_OPERATION' when no variable is declared
 
Upvote 0
Skilled Illusionist
Joined
Oct 3, 2011
Messages
300
Reaction score
48
stdafx.h
Code:
#define POINTER_64 __ptr64

On every stdafx if the compiler doesn't finish his work correctly.

And about that file RealCPNet just remove the typedef in the struct declaration
 
Upvote 0
Back
Top