Difference between revisions of "OnPlayerKillEx"

From Soldat Community Wiki
Jump to: navigation, search
(Created page with "===From the Scripting Manual=== ''procedure OnPlayerKillEx(Killer, Victim: byte; Weapon: byte);'' '''Parameter Info:''' Killer (Byte): Player ID of the player who ki...")
 
 
Line 12: Line 12:
  
 
==See also==
 
==See also==
[[OnPlayerKillEx]]
+
[[OnPlayerKill]]
  
 
[[Category:Beta Server Scripting]]
 
[[Category:Beta Server Scripting]]

Latest revision as of 11:24, 13 March 2013

From the Scripting Manual

 procedure OnPlayerKillEx(Killer, Victim: byte; Weapon: byte);
 
 Parameter Info:
  Killer (Byte): Player ID of the player who killed the Victim
  Victim (Byte): Player ID of the Victim.
  Weapon (Byte): Number of the weapon used to kill the Victim.
 
 Description:
  This procedure will be called every time a player dies.
  Difference from OnPlayerKill is the Weapon variable(string>byte).

See also

OnPlayerKill