Jump to content

Slow Motion


Castillo

Recommended Posts

Posted

Hey, i tryed to use the setGameSpeed function to do a kind of slow motion but i failed, so if someone could give me a example ( i want the setGameSpeed only sets for who executes function )

Thanks :)

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

Posted

But how exactly i can detect who executed function?

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

Posted

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 )

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

Posted
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! :)

http://www.sincitygaming.net - The next generation of gaming!

SinCity Gaming | UltiRace 24/7 - 188.165.199.162:22003

SinCity Gaming | Roleplay Gaming - Beta soon!

SinCity Gaming | Zombie Mode + - 188.165.199.162:22005

Instead of using ip: 188.165.199.162 you can use: sincitygaming.net

Posted

Thanks taalasma :)

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

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...