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!

[RELEASE]Disable Spectator and Ghost Mode

Newbie Spellweaver
Joined
Nov 25, 2015
Messages
97
Reaction score
2
To disable just open the:
Code:
GameClientShell.cpp

Look for this :
Code:
if (key == VK_TOGGLE_SPECTATOR_MODE)    {        
#ifndef _FINAL
        char *pCheat = "mpclip";
        g_pCheatMgr->Check(CParsedMsg( 1, &pCheat ));
#endif
        return;
    }

So you decide, just comment or delete !
For commen just paste this code:

Code:
/*    if (key == VK_TOGGLE_SPECTATOR_MODE)    {        
#ifndef _FINAL
        char *pCheat = "mpclip";
        g_pCheatMgr->Check(CParsedMsg( 1, &pCheat ));
#endif
        return;
    } */

Kappa, disabled spectator mode !
 
Skilled Illusionist
Joined
May 6, 2012
Messages
309
Reaction score
33
To disable just open the:
Code:
GameClientShell.cpp

Look for this :
Code:
if (key == VK_TOGGLE_SPECTATOR_MODE)    {        
#ifndef _FINAL
        char *pCheat = "mpclip";
        g_pCheatMgr->Check(CParsedMsg( 1, &pCheat ));
#endif
        return;
    }

So you decide, just comment or delete !
For commen just paste this code:

Code:
/*    if (key == VK_TOGGLE_SPECTATOR_MODE)    {        
#ifndef _FINAL
        char *pCheat = "mpclip";
        g_pCheatMgr->Check(CParsedMsg( 1, &pCheat ));
#endif
        return;
    } */

Kappa, disabled spectator mode !

Why? Not needed to remove when you build it as Final. Its useful for the debugbuilt.
 
Newbie Spellweaver
Joined
Nov 25, 2015
Messages
97
Reaction score
2
Ok, but if someone want to compile just de debug or release, he has a way to disable '-' If you will not help please , do not posting ok
 
Skilled Illusionist
Joined
May 6, 2012
Messages
309
Reaction score
33
Ok, but if someone want to compile just de debug or release, he has a way to disable '-' If you will not help please , do not posting ok

stfu. I helped by telling the people that its removed by building it as Final built. And you have no clue/idea from the stuff.
 
Newbie Spellweaver
Joined
Nov 25, 2015
Messages
97
Reaction score
2
KKKK are you kidding right ? Really wigga, i never see no topic, that you had helped the people, you only say : You need to learn more C++ etc......
I at least help them. Posting something usefull.
Again, if will not help or share your knowledge, dont post nothing ok ?
 
Skilled Illusionist
Joined
May 6, 2012
Messages
309
Reaction score
33
you say you never see no topic from me? So you see a topic from me? Thats strange, i never made one....
Its no help when you tell people what they have to do by the easiest stuff.
And around 90% of the problems everyone gets here wouldnt be here if everyone wouldn't use the trashy source from sdfsdf - and i already said i help people which are using the original source - no support for sdfsdf source.
 
Back
Top