Delay: Difference between revisions

From Onset Developer Wiki
No edit summary
No edit summary
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Info|Function|Server & Client|1.0}}
{{Info|Function|Server & Client|1.0}}


{{FuncDescription|__EDIT_ME__}}
{{FuncDescription|Create a delayed function just like a timer but only once. ([[DelayFor]])}}


{{FuncSyntax|Delay(Milliseconds, LuaFunction [, UserArgs])}}
{{FuncSyntax|Delay(Milliseconds, LuaFunction [, UserArgs])}}


{{FuncParameters}}
{{FuncParameters}}
{{FuncParam|Milliseconds|__EDIT_ME__}}
{{FuncParam|Milliseconds|The interval in milliseconds.}}
{{FuncParam|LuaFunction|__EDIT_ME__}}
{{FuncParam|LuaFunction|The Lua function to delay.}}
{{FuncParamOptional|UserArgs|__EDIT_ME__}}
{{FuncParamOptional|UserArgs (optional)|The user arguments.}}


{{FuncReturnValue|__EDIT_ME__}}
{{FuncReturnValue|Returns the id of this delay, same as for timers.}}


== Example ==
== Example ==
Line 18: Line 18:
Delay(10000, function(player)
Delay(10000, function(player)
SetPlayerOutline(player, false)
SetPlayerOutline(player, false)
end)
end, player)
end)
end)
</syntaxhighlight>
</syntaxhighlight>


{{RelatedFunctions}}
{{RelatedFunctions}}
__EDIT_ME__
*[[GetTimerCount]]
*[[GetAllTimers]]
*[[IsValidTimer]]
*[[CreateTimer]]
*[[CreateCountTimer]]
*[[DestroyTimer]]
*[[PauseTimer]]
*[[UnpauseTimer]]
*[[GetTimerRemainingTime]]

Latest revision as of 15:03, 31 August 2020

Delay

Type: Function
Context: Server & Client
Introduced: v1.0

Description

Create a delayed function just like a timer but only once. (DelayFor)

Syntax

Delay(Milliseconds, LuaFunction [, UserArgs])

Parameters

  • Milliseconds
    The interval in milliseconds.
  • LuaFunction
    The Lua function to delay.
  • UserArgs (optional) (optional)
    The user arguments.

Return Value

  • Returns the id of this delay, same as for timers.

Example

AddEvent("OnPlayerSpawn", function(player)
	SetPlayerOutline(player, true)
	Delay(10000, function(player)
		SetPlayerOutline(player, false)
	end, player)
end)

See also