OnPlayerCrashDump

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

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