Request Multiplayer Movement In Zombies

keatongregg

Member
Messages
19
Reaction score
7
Points
8
I found this function here on the forums and it only seems to work on the giant and zetsubo anybody have any insight as to why it doesnt work on other maps?

function newMovment()
{
SetDvar( "doublejump_enabled", 1 );
SetDvar( "juke_enabled", 1 );
SetDvar( "playerEnergy_enabled", 1 );
SetDvar( "wallrun_enabled", 1 );
SetDvar( "sprintLeap_enabled", 1 );
SetDvar( "traverse_mode", 1 );
SetDvar( "weaponrest_enabled", 1 );
}
 
S

SeriousHD-

Guest
I found this function here on the forums and it only seems to work on the giant and zetsubo anybody have any insight as to why it doesnt work on other maps?

function newMovment()
{
SetDvar( "doublejump_enabled", 1 );
SetDvar( "juke_enabled", 1 );
SetDvar( "playerEnergy_enabled", 1 );
SetDvar( "wallrun_enabled", 1 );
SetDvar( "sprintLeap_enabled", 1 );
SetDvar( "traverse_mode", 1 );
SetDvar( "weaponrest_enabled", 1 );
}
Those are the only maps that do not use player energy dynamically. You need to put it in a loop for the other maps
 

keatongregg

Member
Messages
19
Reaction score
7
Points
8
Those are the only maps that do not use player energy dynamically. You need to put it in a loop for the other maps
Okay I guess I'm just not understanding exactly what I should loop. I looped the whole function and it still doesn't seem to work on shadows of evil.
 
Top