CancelLatentEvent: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 1: Line 1:
{{Needs_Example}}
__NOTOC__
__NOTOC__
{{Server client function}}
{{Server client function}}

Revision as of 16:44, 19 August 2015

Accessories-text-editor.png Script Example Missing Function CancelLatentEvent needs a script example, help out by writing one.

Before submitting check out Editing Guidelines Script Examples.


Stops a latent event from completing

Syntax

Click to collapse [-]
Server
bool cancelLatentEvent( player thePlayer, int handle )

Required Arguments

  • thePlayer: The player who is receiving the event.
  • handle: A handle previous got from getLatentEventHandles.
Click to collapse [-]
Client
bool cancelLatentEvent( int handle )

Required Arguments

Returns

Returns a true if the latent event was successfully cancelled, or false if it was not

Example

--TODO

Requirements

This template will be deleted.

See Also