Guest User

Untitled

a guest
Jun 24th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. public OnPluginStart()
  2. {
  3. HookEvent("player_death", Event_PlayerDeath)
  4. }
  5.  
  6. public Event_PlayerDeath(Handle:event, const String:name[], bool:dontBroadcast)
  7. {
  8. new victim_id = GetEventInt(event, "userid")
  9. new attacker_id = GetEventInt(event, "attacker")
  10.  
  11. new victim = GetClientOfUserId(victim_id)
  12. new attacker = GetClientOfUserId(attacker_id)
  13.  
  14. /* CODE */
  15. }
Add Comment
Please, Sign In to add comment