Lua:player killed
From Fortress Forever Wiki
Jump to navigationJump to search
player_killed(player_id, damageinfo)This function is called whenever a player dies. Inputs
ExampleHere's an example if you wanted to give your team a point when you killed someone not on your team: The global variable "killer" will be set, which contains the player that killed this player. function player_killed( player_id ) -- If you kill someone, give your team a point if GetPlayerTeam( killer ) then if not ( GetPlayerTeam( player_id ) == GetPlayerTeam( killer ) ) then AddTeamScore( GetPlayerTeam( killer ), 1 ) end end end |