Est Speed

From EventScripts Community Encyclopedia
Syntax: est_Speed <identifier> <multiplier>
Note: Command parameters are described inside the < and > characters. Optional parameters are contained within [ and ] characters.

Contents

Description

Sets the players speed

Parameters

  • identifier - See Est_PlayerSelection for player selection help
  • multiplier - The ratio you want to set the speed to

Example


event weapon_fire
{
	// Go 5x fast
	es est_Speed event_var(userid) 5
	// Change the speed back to normal after 10 seconds
	es_delayed 10 est_Speed event_var(userid) 1.0
}

Notes

  • Default=1

See Also

blog comments powered by Disqus