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!

[Tutorial] how to enable super speed to DEV

Joined
Apr 2, 2013
Messages
1,098
Reaction score
4,819
in WarZ.sln

HUD_TPSGame.cpp

Search for:

PHP:
#ifndef FINAL_BUILD           
     if(gUserProfile.ProfileData.isDevAccount && Keyboard->IsPressed(kbsLeftAlt))               
            accelaration *= 5.0f;
#endif

replace for:

PHP:
//#ifndef FINAL_BUILD           
     if(gUserProfile.ProfileData.isDevAccount && Keyboard->IsPressed(kbsLeftAlt))               
             accelaration *= 5.0f;
//#endif
because I commented these lines? to enable the function, both in the studio and the client.



Do not forget to thank me =)





Credits: Staff DeathZ


 
Last edited:
Master Summoner
Joined
May 8, 2013
Messages
574
Reaction score
571
in WarZ.sln

HUD_TPSGame.cpp

Search for:

PHP:
#ifndef FINAL_BUILD            
     if(gUserProfile.ProfileData.isDevAccount && Keyboard->IsPressed(kbsLeftAlt))                
            accelaration *= 5.0f;
#endif

replace for:

PHP:
#ifdef FINAL_BUILD            
     if(gUserProfile.ProfileData.isDevAccount && Keyboard->IsPressed(kbsLeftAlt))                
             accelaration *= 5.0f;
#endif



do not forget to leave your like =)


Credits: Staff DeathZ

yes but your two codes are the same, I see no difference
 
Newbie Spellweaver
Joined
Jun 12, 2013
Messages
7
Reaction score
2
i did dev super speed, and all player disconnecting the from server when player can shift button.

İs problem at me?
 
Newbie Spellweaver
Joined
Jun 9, 2013
Messages
54
Reaction score
0
Yeah, I think this is what caused my server to crash all the clients when they join.
I am not sure though, all I did was add the RPG and do super speed.
I followed exact.
I even removed RPG and still got crash.
 
Newbie Spellweaver
Joined
Dec 1, 2013
Messages
36
Reaction score
4
If I go into cities too fast, it will crash me. Is that normal or?
 
Custom Title Activated
Loyal Member
Joined
May 18, 2006
Messages
1,425
Reaction score
119
// Punisher & Dev speed
if (gUserProfile.ProfileData.isPunisher || gUserProfile.ProfileData.isDevAccount)
{
accelaration *= 1.3f;
}
 
Experienced Elementalist
Joined
May 15, 2013
Messages
240
Reaction score
19
// Punisher & Dev speed
if (gUserProfile.ProfileData.isPunisher || gUserProfile.ProfileData.isDevAccount)
{
accelaration *= 1.3f;
}
Punisher have accelaration like a dev ? Why ? o_O
 
Back
Top