OnPlayerKill: 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 onPlayerKill( killer, player, reason, bodypart )</pre>...")
 
(Undo revision 20321 by Aventador (talk))
Tag: Undo
 
(5 intermediate revisions by 4 users not shown)
Line 7: Line 7:
== Arguments ==
== Arguments ==


* '''player''' - The pointer of the player.
* '''player''' - He is who is attacking
* '''killer''' - The pointer of the killer.
* '''killer''' - He is who is being killed
* '''reason''' - The weapon id.
* '''reason''' - [[Weapons|Weapon ID]]
* '''bodypart''' - The ID of the bodypart.
* '''bodypart''' - [[Scripting/Squirrel/Constants#Body_Part|Bodypart ID]]


== Example ==
== Example ==
Line 23: Line 23:
=== Notes ===
=== Notes ===


The functions [[Scripting/Squirrel/Functions/Message|Message]], [[Scripting/Squirrel/Functions/player.Name|player.Name]], [[Scripting/Squirrel/Functions/GetWeaponName|GetWeaponName]] were used in this example. More info about them in corresponding pages.
The functions [[Scripting/Squirrel/Functions/Message|Message]], [[Scripting/Squirrel/Functions/Player.Name|Player.Name]], [[Scripting/Squirrel/Functions/GetWeaponName|GetWeaponName]] were used in this example. More info about them in corresponding pages.


== Related Functions ==
== Related Functions ==


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

Latest revision as of 20:43, 22 June 2019

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

Syntax

function onPlayerKill( killer, player, reason, bodypart )

Arguments

  • player - He is who is attacking
  • killer - He is who is being killed
  • reason - Weapon ID
  • bodypart - Bodypart ID

Example

function onPlayerKill( killer, player, reason, bodypart )
{
    Message( "** " + killer.Name + " killed " + player.Name + " (" + GetWeaponName( reason ) + ") (" + bodypart + ")" );    
}

Notes

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

Related Functions