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
(Created page with "This event is called every time a player kills another (and they're not in the same team). == Syntax == <pre>function onPlayerCrashDump( player, CrashReport )</pre> == Arg...")
 
Line 7: Line 7:
== Arguments ==
== Arguments ==


* '''player''' - He is who is crash
* '''player''' - One who crashed
* '''CrashReport''' - ...
* '''CrashReport''' - Reason


== Example ==
== Example ==

Revision as of 09:39, 5 March 2015

This event is called every time a player kills another (and they're not in the same team).

Syntax

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