RAGE.Events.Add
Example
C# Syntax
Parameters
- text:: String text
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!");
}