Facebook
From pvp, 7 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 241
  1. Variables:
  2.         {pkt.%player%} = 0
  3.         {zabojstwa.%player%} = 0
  4.         {smierci.%player%) = 0
  5. on death:
  6.         attacker is a player
  7.         victim is a player
  8.         add 1 to {zabojstwa.%attacker%}
  9.         send "&c----------------------------------------------------" to attacker
  10.         send "&7Zabiles gracza&9: %victim% &7w nagrode dostajesz [&91 lvlPvp&7]" to attacker
  11.         send "&c----------------------------------------------------" to attacker
  12.         add 1 to {pkt.%attacker%}
  13. on death of player:
  14.         add 1 to {smierci.%victim%}
  15.         send "&c-----------------------------------------------------" to victim
  16.         send "&7Zostales zabity przez gracza&9: %attacker% &7zostaje ci zabrane [&91 lvlPvp&7]" to victim
  17.         send "&c-----------------------------------------------------" to victim
  18.         remove 1 from {pkt.%victim%}
  19. command /ranking [<player=%player%>]:
  20.         usage: &7Poprawne uzycie tej komenty to &9/ranking [Nick]
  21.         trigger:
  22.                 send "&c&l------------------------------"
  23.                 send "&7Ranking gracza&9: %argument 1%"
  24.                 send "&7Ilosc Zabójstw&9: %{zabojstwa.%argument 1%}%"
  25.                 send "&7Ilosc Zgonów&9: %{smierci.%argument 1%}%"
  26.                 send "&7Lvl Pvp&9: %{pkt.%argument 1%}%"
  27.                 send "&c&l------------------------------"
  28.  
  29.  
  30. on right click with sword on player:
  31.         send "&c---------------------------------------"
  32.         send "&7LvL pvp Gracza &9%clicked player% &7Wynosi&9:&7 [&9 %{pkt.%clicked player%}%&7 ]"
  33.         send "&c---------------------------------------"
  34.