RAGE.Events.Add: Difference between revisions
Crossy1998 (talk | contribs) (RAGE.Events.Add Function) |
Crossy1998 (talk | contribs) |
||
| Line 2: | Line 2: | ||
{{CSharpContainer| | {{CSharpContainer| | ||
{{Parameters}} | {{Parameters}} | ||
*''' | *'''args:''': Object Array | ||
{{Example}} | {{Example}} | ||
Revision as of 00:50, 27 March 2019
Example
C# Syntax
Parameters
- args:: Object Array
Example
//Constructor
public main()
{
//Once this custom even has been added you can also call it from CEF(Chromium Embedded Framework)
RAGE.Events.Add("sendhelloworld", SendHelloWorld);
}
public void SendHelloWorld(object[] args)
{
Chat.Output("HELLO WORLD!");
}