Jump to content

Slow Motion


Castillo

Recommended Posts

i have this but it sets the server game speed not the player :S

function slowMotion ( playerSource )
if ( playerSource ) then
setGameSpeed(0.5, playerSource)
outputChatBox ( "Slow Motion Activated", playerSource )
end
end
addCommandHandler ( "slow", slowMotion )

Link to comment
i have this but it sets the server game speed not the player :S
function slowMotion ( playerSource )
if ( playerSource ) then
setGameSpeed(0.5, playerSource)
outputChatBox ( "Slow Motion Activated", playerSource )
end
end
addCommandHandler ( "slow", slowMotion )

Do this in client-side and it should work.

function slowMotion ( )
setGameSpeed(0.5)
outputChatBox ( "Slow Motion Activated", 255,255,0 ) -- some colors
end
addCommandHandler ( "slow", slowMotion )

Do that in client-side! :)

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...