Events::Event

From RAGE Multiplayer Wiki
Revision as of 14:09, 27 November 2018 by Unknown (talk | contribs)

Shared
Function

 JavaScript


Description

OOP constructor of Events' add function

Syntax

let ev = new mp.Event(name, functionHandler);

Required arguments

  • name: String
  • functionHandler: (...args: any) => void

Returned value

  • Event Handler

Example

let ev = new mp.Event("playerDeath", (player, reason, killer) =>
{
    mp.players.broadcast('First blood!');
    ev.destroy(); // this event handler will be not called anymore since it's destroyed
});
ev.destroy(); // due to this line the event is never going to be executed if we call this before it