CallEvent: Difference between revisions
From Onset Developer Wiki
No edit summary |
No edit summary |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{Info|Function|Server & Client|1.0}} | {{Info|Function|Server & Client|1.0}} | ||
{{FuncDescription|The event to call | {{FuncDescription|The event to call by name. Will call events in all packages.}} | ||
{{FuncSyntax|CallEvent(EventName [, UserArgs...])}} | {{FuncSyntax|CallEvent(EventName [, UserArgs...])}} | ||
{{FuncParameters}} | {{FuncParameters}} | ||
{{FuncParam|EventName |The event name.}} | {{FuncParam|EventName|The event name.}} | ||
{{FuncParamOptional|UserArgs|The passed user arguments to the function.}} | {{FuncParamOptional|UserArgs|The passed user arguments to the function.}} | ||
Line 13: | Line 13: | ||
== Example == | == Example == | ||
<syntaxhighlight lang="Lua> | <syntaxhighlight lang="Lua> | ||
function SetPlayerLoggedIn(player) | |||
PlayerData[player].logged_in = true | |||
SetPlayerRandomColor(player) | |||
CallEvent("OnPlayerLoggedIn", player) | |||
end | |||
</syntaxhighlight> | </syntaxhighlight> | ||
{{RelatedFunctions}} | {{RelatedFunctions}} | ||
* [[CallEvent]] | * [[CallEvent]] | ||
* [[AddEvent]] | |||
* [[CallRemoteEvent]] | * [[CallRemoteEvent]] | ||
* [[BroadcastRemoteEvent]] | |||
* [[AddRemoteEvent]] | * [[AddRemoteEvent]] |
Latest revision as of 17:07, 30 December 2020
Description
The event to call by name. Will call events in all packages.
Syntax
CallEvent(EventName [, UserArgs...])
Parameters
- EventName
The event name. - UserArgs (optional)
The passed user arguments to the function.
Return Value
- This function has no specific return value.
Example
function SetPlayerLoggedIn(player)
PlayerData[player].logged_in = true
SetPlayerRandomColor(player)
CallEvent("OnPlayerLoggedIn", player)
end