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!

RaiderZ Source Code / Maiet SDK and Client

Good to be back.
Joined
Feb 1, 2009
Messages
631
Reaction score
59
so anyone can share his knowledge on how to setup one?
 
Junior Spellweaver
Joined
Mar 3, 2008
Messages
115
Reaction score
11
Well so far i am facing only 4 to few errors during compiling. Any programmer guide me what is this & how to resolve it?

Code:
16>Project : error PRJ0019: A tool returned an error code from "Performing Pre-Build Event..."'

[TABLE]
[TR]
[TD="bgcolor: #EDEDF5"] [/TD]
[TD="bgcolor: #FFFFFF"] [/TD]
[TD="width: *"]
Creating temporary file "h:\Raiderz\RaiderZ_Develop\Develop\Game\Debug_ed\BAT00004B6209864.bat" with contents [ @echo off  "runtime/dev/utils/SVNRevisionGenerator" ../  if errorlevel 1 goto VCReportError  goto VCEnd  :VCReportError  echo Project : error PRJ0019: A tool returned an error code from "Performing Pre-Build Event..."  exit 1  :VCEnd ] Creating command line "h:\Raiderz\RaiderZ_Develop\Develop\Game\Debug_ed\BAT00004B6209864.bat" [/TD]
[/TR]
[/TABLE]
[TABLE="width: 100%"]
[TR]
[TD][SIZE=+2] Output Window [/SIZE][/TD]
[/TR]
[/TABLE]
[TABLE]
[TR]
[TD="bgcolor: #EDEDF5"] [/TD]
[TD="bgcolor: #FFFFFF"] [/TD]
[TD="width: *"]
Performing Pre-Build Event... The system cannot find the path specified. Project : error PRJ0019: A tool returned an error code from "Performing Pre-Build Event..." [/TD]
[/TR]
[/TABLE]
[TABLE="width: 100%"]
[TR]
[TD][SIZE=+2] Results [/SIZE][/TD]
[/TR]
[/TABLE]
[TABLE]
[TR]
[TD="bgcolor: #EDEDF5"] [/TD]
[TD="bgcolor: #FFFFFF"] [/TD]
[TD="width: *"]
Build log was saved at "file://h:\Raiderz\RaiderZ_Develop\Develop\Game\Debug_ed\BuildLog.htm" GameLib - 1 error(s), 0 warning(s) [/TD]
[/TR]
[/TABLE]

and

Code:
8>.\source\FSContext.cpp(105) : error C2196: case value '192' already used
8>.\source\FSContext.cpp(106) : warning C4066: characters beyond first in wide-character constant ignored
8>.\source\FSContext.cpp(107) : warning C4066: characters beyond first in wide-character constant ignored
8>.\source\FSContext.cpp(108) : warning C4066: characters beyond first in wide-character constant ignored
8>.\source\FSContext.cpp(113) : warning C4066: characters beyond first in wide-character constant ignored
8>.\source\FSContext.cpp(113) : error C2196: case value '192' already used

upon double clicking on C2196 error it shows me this in .cpp file code

Code:
[bold]case L'˼':[/bold]
    case L'´Â':
        if (HasJonsung())    m_strPostfix.push_back(L'˼');
        else m_strPostfix.push_back(L'´Â');



Any guidance will be appreciated. The bolded characters in code is what it takes me to.
 
CPP/C#/PHP/ASM
Joined
Apr 7, 2009
Messages
452
Reaction score
189
to complie this source you must change your computer language to korean or chinese (i dont remmber already)
and then those "warning C4066" will disappear.
 
Junior Spellweaver
Joined
Mar 3, 2008
Messages
115
Reaction score
11
Yup it's Korean code i already get it. It's same like i work with lastchaos files that's also korean game. But What about

error PRJ0019 & error C2196: case value '192' already used. MSDN seems to be clueless for me on that xD
 
Newbie Spellweaver
Joined
Apr 8, 2005
Messages
41
Reaction score
21
This is great, can't wait to dig in.
 
Back
Top