Guest User

Untitled

a guest
Dec 10th, 2013
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.02 KB | None | 0 0
  1. variables:
  2.     {zabojstwa.%player%} = 0
  3.     {smierci.%player%) = 0
  4.     {wejscia.%player%} = 0
  5.     {punkty.%player%} = 0
  6.    
  7. on death:
  8.     attacker is a player
  9.     victim is a player
  10.     add 1 to {zabojstwa.%attacker%}
  11.     add 1 to {smierci.%victim%}
  12.     set {_pkt} to random number between 1 and 10
  13.     add {_pkt} to {punkty.%attacker%}
  14.     send "&eZabiles gracza:&7 %victim%." to attacker
  15.     send "&cZostales zabity przez gracza:&7 %attacker%" to victim
  16.  
  17.    
  18. on login:
  19.     add 1 to {wejscia.%player%}
  20.  
  21. command /profil:
  22.     trigger:
  23.         send "&c|======= << PROFIL >> =======|" to player
  24.         send "&3Twoj nick w grze:&2&l %player%" to player
  25.         send "&3Odwiedziles juz nas:&2&l %{wejscia.%player%}%" to player
  26.         send "   " to player
  27.         send "&3Zgony:&2&l %{smierci.%player%}%"
  28.         send "&3Zabiles:&2&l %{zabojstwa.%player%}%" to player
  29.         send "&3Punkty:&2&l %{punkty.%player%}%" to player
  30.         send "   " to player
  31.         send "&3Twoja ranga: Obywatel" to player
  32.         send "&1Zyczymy milej gry! Team LostLands.pl" to player
  33.         send "&c|======= << PROFIL >> =======|" to player
Advertisement
Add Comment
Please, Sign In to add comment