-
Notifications
You must be signed in to change notification settings - Fork 6
Known Fixes
archienz edited this page Sep 14, 2010
·
3 revisions
== Setting more then 30 rounds in the rifle ==
Edit both the “Rifle.clipSize” and “numBulletsInClip” settings in Rifle.lua
Or archies way which doesn’t have issues with the clip/ammo. PlayerUI.lua, and comment out //PlayerUI_GetWeaponAmmo although it does complain that actionscript does not exist.
== Fix 5s Delay on Player join ==
This will fix the 5 second delay each time a player joins a server:
Open ns2\lua\Game.lua and replace line 93 with:
if (self.startTime == 0) then self.startTime = Shared.GetTime() + 5 end
== No gravity mode ==
This will prevent players from falling down when they jump :D
Open ns2\lua\Player.lua and replace line 35 with:
Player.gravity = 0
== Auto reload ==
This will auto reload your rifle when you run out of bullets
Open ns2\lua\Player.lua and replace line 504 with:
self:Reload()