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
No edit summary
 
Line 24: Line 24:


{{Scripting/Squirrel/Events/Player_Events}}
{{Scripting/Squirrel/Events/Player_Events}}
[[Category:Scripting/Squirrel/Events/Player_Events]]

Latest revision as of 22:16, 30 January 2017

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