knugi

Untitled

May 3rd, 2015
303
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.46 KB | None | 0 0
  1.  
  2. on command:
  3. if command is "is" or "island":
  4. if arguments is not set:
  5. cancel event
  6. execute player command "wyspa"
  7. command /wyspa [<text>] [<text>]:
  8. trigger:
  9. if arg 1 is not set:
  10. send "&eIsland World v3.6"
  11. send "&a/wyspa utworz &8- &7tworzysz wyspe."
  12. send "&a/wyspa usun &8- &7usuwasz wyspe."
  13. send "&a/wyspa info &8- &7pokazuje informacje o twojej wyspie."
  14. send "&a/wyspa sethome &8- &7ustawiasz punkt spawnu wyspy."
  15. send "&a/wyspa delhome &8- &7restartujesz punkt spawnu wyspy."
  16. send "&a/wyspa dom &8- &7teleprtujesz sie na swoją wyspę."
  17. send "&a/wyspa fixhome &8- &7naprawiasz koordynaty domu."
  18. send "&a/wyspa wyrzuc [nick] &8- &7wyrzucasz gracza bez party z wyspy."
  19. send "&a/wyspa dodaj [nick] &8- &7Dodajesz gracza do wyspy."
  20. send "&a/wyspa usun [nick] &8- &7usuwasz gracza z wyspy."
  21. send "&a/wyspa tp [nick] &8- &7teleportujesz sie na wyspe gracza."
  22. send "&a/wyspa odwiedz [nick] &8- &7zwiedzasz wyspe gracza."
  23. send "&a/wyspa odejdz &8- &7opuszczasz wyspę."
  24. send "&a/wyspa zablokuj &8- &7zamykasz wyspe."
  25. send "&a/wyspa odblokuj &8- &7otwierasz wyspe."
  26. send "&a/wyspa calc &8- &7obliczasz wartosc wyspy."
  27. send "&a/wyspa otworz <offline> &8- &7otwierasz wyspe dla odwiedzajacych."
  28. send "&a/wyspa zamknij &8- &7zamykasz wyspe dla odwiedzajacych."
  29. stop
  30. if arg 1 is "utworz" or "create":
  31. execute player command "is create"
  32. stop
  33. if arg 1 is "usun" or "delete":
  34. execute player command "is delete"
  35. stop
  36. if arg 1 is "info" or "informacje":
  37. execute player command "is info"
  38. stop
  39. if arg 1 is "sethome":
  40. if arg 2 is not set:
  41. execute player command "is sethome"
  42. stop
  43. execute player command "is sethome %arg 2%"
  44. stop
  45. if arg 1 is "delhome":
  46. if arg 2 is not set:
  47. execute player command "is delete"
  48. stop
  49. execute player command "is delete %arg 2%"
  50. stop
  51. if arg 1 is "dom" or "home":
  52. if arg 2 is not set:
  53. execute player command "is home"
  54. stop
  55. execute player command "is home %arg 2%"
  56. stop
  57. if arg 1 is "fixhome":
  58. execute player command "is fixhome"
  59. stop
  60. if arg 1 is "wyrzuc" or "expell":
  61. if arg 2 is not set:
  62. execute player command "is expell"
  63. stop
  64. execute player command "is expell %arg 2%"
  65. stop
  66. if arg 1 is "dodaj" or "add":
  67. if arg 2 is not set:
  68. execute player command "is add"
  69. stop
  70. execute player command "is add %arg 2%"
  71. stop
  72. if arg 1 is "usun" or "remove":
  73. if arg 2 is not set:
  74. execute player command "is remove"
  75. stop
  76. execute player command "is remove %arg 2%"
  77. stop
  78. if arg 1 is "tp":
  79. if arg 2 is not set:
  80. execute player command "is tp"
  81. stop
  82. execute player command "is tp %arg 2%"
  83. stop
  84. if arg 1 is "visit" or "odwiedz":
  85. if arg 2 is not set:
  86. execute player command "is visit"
  87. stop
  88. execute player command "is visit %arg 2%"
  89. stop
  90. if arg 1 is "opusc" or "leave":
  91. execute player command "is leave"
  92. stop
  93. if arg 1 is "zablokuj" or "lock":
  94. execute player command "is lock"
  95. stop
  96. if arg 1 is "odblokuj" or "unlock":
  97. execute player command "is unlock"
  98. stop
  99. if arg 1 is "calc" or "oblicz":
  100. execute player command "is calc"
  101. stop
  102. if arg 1 is "otworz" or "open":
  103. if arg 2 is not set:
  104. execute player command "is open"
  105. stop
  106. execute player command "is open %arg 2%"
  107. stop
  108. if arg 1 is "zamknij" or "close":
  109. execute player command "is close"
  110. stop
Advertisement
Add Comment
Please, Sign In to add comment