boobster

Untitled

Apr 16th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.51 KB | None | 0 0
  1. hook.Add("PlayerHurt","LALA",function(victim, attacker, _, dmg)
  2.     if victim:IsPlayer() and attacker:IsPlayer() and not victim == attacker then
  3.         victim:ChatPrint("Dostales")
  4.         attacker:ChatPrint("Trafienie")
  5.         attacker:ChatPrint("-"..dmg)
  6.      end
  7. end)
  8. hook.Add("PlayerDeath","lala3",function(victim,_,attacker)
  9.     if attacker:IsPlayer() and victim:IsPlayer() and not victim == attacker then
  10.         attacker:ChatPrint("Cel uniszkodliwiony")
  11.         attacker:addMoney(300)
  12.     end
  13. end)
Add Comment
Please, Sign In to add comment