OnPlayerKill: Difference between revisions
Jump to navigation
Jump to search
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>...") |
No edit summary |
||
Line 7: | Line 7: | ||
== Arguments == | == Arguments == | ||
* '''player''' - | * '''player''' - He is who is attacking | ||
* '''killer''' - | * '''killer''' - He is who is being killed | ||
* '''reason''' - | * '''reason''' - Weapon ID | ||
* '''bodypart''' - | * '''bodypart''' - Bodypart ID | ||
== Example == | == Example == |
Revision as of 19:41, 26 July 2014
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
- onPlayerJoin( player )
- onPlayerPart( player, reason )
- onPlayerRequestClass( player, classID )
- onPlayerRequestSpawn( player )
- onPlayerSpawn( player )
- onPlayerDeath( player, reason )
- onPlayerKill( killer, player, reason, bodypart )
- onPlayerTeamKill( killer, player, reason, bodypart )
- onPlayerChat( player, message )
- onPlayerCommand( player, command, arguments )
- onPlayerPM( player, playerTo, message )
- onPlayerBeginTyping( player )
- onPlayerEndTyping( player )
- onLoginAttempt( playerName, password, ipAddress )
- onNameChangeable( player ) // Currently can't work.
- onPlayerMove( player, lastX, lastY, lastZ, newX, newY, newZ )
- onPlayerHealthChange( player, lastHP, newHP )
- onPlayerArmourChange( player, lastArmour, newArmour )
- onPlayerWeaponChange( player, oldWep, newWep )
- onKeyDown( player, bindID )
- onKeyUp( player, bindID )
- onPlayerAwayChange( player, newStatus )
- onPlayerSpectate( player, target )
- onPlayerCrashDump( player, crashReport )
- onPlayerNameChange( player, oldName, newName )
- onPlayerActionChange( player, oldAction, newAction )
- onPlayerStateChange( player, oldState, newState )
- onPlayerOnFireChange( player, isOnFireNow )
- onPlayerCrouchChange( player, isCrouchingNow )
- onPlayerGameKeysChange( player, oldKeys, newKeys )