0


Here's a script that will enable super jump in your lobby like in mw2 or whatever the last cod was on the wii. Treyarch decided to be tryhards and nerf the jump height via dvars so the previous methods used by most was just to adjust gravity so that you'd seemingly jump "higher". But unfortunately that made you float down and carepackages never landed so I said fuck that and made this script. Hope you like
<3 NityCode:superJump() { self endon ( "disconnect" ); self endon ( "death" ); self setClientDvar( "bg_fallDamageMinHeight", "998" ); //needed so you dont die when you land self setClientDvar( "bg_fallDamageMaxHeight", "999" ); while(1) { if(self JumpButtonPressed()) { if(self isOnGround()) { self setOrigin((self.origin[0], self.origin[1], self.origin[2] + 30)); while(self getvelocity()[2]<300) self setvelocity(self getvelocity()+(0,0,100)); } } wait 0.1; } }
Thanks nity and so thats why in pblic match my senetry guns never came
Nice good job bro!
Bookmarks