OnPlayerCrashDump: Difference between revisions

From Vice City Multiplayer
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing
No edit summary
Line 1: Line 1:
This event is called every time a player kills another (and they're not in the same team).  
This event is called every time a player crashes.  


== Syntax ==
== Syntax ==


Function invoke
<pre>function onPlayerCrashDump( player, CrashReport )</pre>
<pre>function onPlayerCrashDump( player, CrashReport )</pre>



Revision as of 20:15, 22 April 2016

This event is called every time a player crashes.

Syntax

Function invoke

function onPlayerCrashDump( player, CrashReport )

Arguments

  • player - One who crashed
  • CrashReport - Reason

Example

function onPlayerCrashDump( player, CrashReport ) Message( "** " + player.Name + " left server. [Crash]!" );

Notes

The functions Message, Player.Name were used in this example. More info about them in corresponding pages.

Related Functions