unlimited sprint?
-
I'm looking for a stand alone unlimited sprint mod or script for T6. I'm not very skilled in coding, so I'm not sure how to make the script myself. Any help would be appreciated.
-
I'm looking for a stand alone unlimited sprint mod or script for T6. I'm not very skilled in coding, so I'm not sure how to make the script myself. Any help would be appreciated.
patient0xero look on the forums
-
patient0xero look on the forums
hindercanrun I've looked on the forums, but everything that I find is for multiplayer or part of another mod.
-
hindercanrun I've looked on the forums, but everything that I find is for multiplayer or part of another mod.
patient0xero take it from the mod
or just take the code from the multiplayer one -
patient0xero take it from the mod
or just take the code from the multiplayer oneThis post is deleted! -
hindercanrun I've looked on the forums, but everything that I find is for multiplayer or part of another mod.
patient0xero the multiplayer version should work for zombies too.
this for example works for both
#include maps/_utility; #include common_scripts/utility; init() { level thread onplayerconnect(); } onplayerconnect() { for(;;) { level waittill("connected", player); player thread onplayerspawned(); } } onplayerspawned() { level endon( "game_ended" ); self endon("disconnect"); for(;;) { self waittill("spawned_player"); self setperk( "specialty_unlimitedsprint" ); } }
-
Isn't there literally a dvar for this player_sprintunlimited 1
-
-
Isn't there literally a dvar for this player_sprintunlimited 1
John_Banana Yes there is, unfortunately, it's not working at the moment. It will be fixed in a future Pluto release.
3arc moment. -
patient0xero the multiplayer version should work for zombies too.
this for example works for both
#include maps/_utility; #include common_scripts/utility; init() { level thread onplayerconnect(); } onplayerconnect() { for(;;) { level waittill("connected", player); player thread onplayerspawned(); } } onplayerspawned() { level endon( "game_ended" ); self endon("disconnect"); for(;;) { self waittill("spawned_player"); self setperk( "specialty_unlimitedsprint" ); } }
chicken emoji how can i install this code for mp bot sessions?