Advertisement
Guest User

Untitled

a guest
Mar 28th, 2015
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.96 KB | None | 0 0
  1. # Author: Sopher - http://github.com/Sopher
  2. # Script name: Sopher Effects v1.0
  3. # Skript version: 2.0.2
  4. # Requirements: SkriptPlus 1.4 and Craftbukkit 1.7.2
  5. # License: Sopher Close Script License v1.0
  6. # URL: https://github.com/Sopher/sopherclosescriptlicense
  7.  
  8. # CONFIGURATION // KONFIGURACJA
  9. options:
  10. # Languages: eng/ pl
  11. # Jezyki: eng/ pl
  12. lang: eng
  13.  
  14. # Power effects.
  15. # Sila efektów.
  16. power: 5
  17.  
  18. # SCRIPT CODE // KOD SKRYPTU.
  19. command /sophereffects [<text>] [<text>] [<text>] [<integer>]:
  20. aliases: se, efekt, effects
  21. trigger:
  22. if arg 1 is not set:
  23. if {sopher.effects.lang} is "eng":
  24. send "[&3SE&f] &aCOMMANDS"
  25. send "&e/se on &7- turn on effects."
  26. send "&e/se off &7- turn off effects."
  27. send "&e/se add &7- add effects."
  28. send "&e/se remove &7- remove effects."
  29. send "&e/se list &7- list of effects."
  30. send "&e/se tp &7- teleport to effect."
  31. send "&e/se use &7- disposable used of effects."
  32. send "&e/se move &7- effects when walking."
  33. send "&e/se troll &7- that command is crashing player client."
  34. else if {sopher.effects.lang} is "pl":
  35. send "[&3SE&f] &aKOMENDY"
  36. send "&e/se wlacz &7- wlaczanie efektow."
  37. send "&e/se wylacz &7- wylaczanie efektow."
  38. send "&e/se dodaj &7- dodawanie efektu."
  39. send "&e/se usun &7- usuwanie efektu."
  40. send "&e/se lista &7- lista efektow."
  41. send "&e/se tp &7- teleportacja do efektu."
  42. send "&e/se uzyj &7- jednorazowe uzycie efektu."
  43. send "&e/se ruch &7- efekty przy chodzeniu."
  44. send "&e/se troll &7- scrashowanie klienta gracza."
  45. stop
  46. if arg 1 is "help" or "pomoc":
  47. if {sopher.effects.lang} is "eng":
  48. send "[&3SE&f] &aCOMMANDS"
  49. send "&e/se on &7- turn on effects."
  50. send "&e/se off &7- turn off effects."
  51. send "&e/se add &7- add effects."
  52. send "&e/se remove &7- remove effects."
  53. send "&e/se list &7- list of effects."
  54. send "&e/se tp &7- teleport to effect."
  55. send "&e/se use &7- disposable used of effects."
  56. send "&e/se move &7- effects when walking."
  57. send "&e/se troll &7- that command is crashing player client."
  58. else if {sopher.effects.lang} is "pl":
  59. send "[&3SE&f] &aKOMENDY"
  60. send "&e/se wlacz &7- wlaczanie efektow."
  61. send "&e/se wylacz &7- wylaczanie efektow."
  62. send "&e/se dodaj &7- dodawanie efektu."
  63. send "&e/se usun &7- usuwanie efektu."
  64. send "&e/se lista &7- lista efektow."
  65. send "&e/se tp &7- teleportacja do efektu."
  66. send "&e/se uzyj &7- jednorazowe uzycie efektu."
  67. send "&e/se ruch &7- efekty przy chodzeniu."
  68. send "&e/se troll &7- scrashowanie klienta gracza."
  69. stop
  70. if arg 1 is "on" or "wlacz":
  71. if player has permission "sopher.effects.*" or "sopher.effects.on":
  72. if {sopher.effects.status} is true:
  73. if {sopher.effects.lang} is "eng":
  74. send "[&3SE&f] &cEffects are already on."
  75. else if {sopher.effects.lang} is "pl":
  76. send "[&3SE&f] &cEfekty sa juz wlaczone."
  77. else:
  78. set {sopher.effects.status} to true
  79. if {sopher.effects.lang} is "eng":
  80. send "[&3SE&f] &aEffects were on"
  81. else if {sopher.effects.lang} is "pl":
  82. send "[&3SE&f] &aEfekty zostaly wlaczone."
  83. stop
  84. else:
  85. if {sopher.effects.lang} is "eng":
  86. send "[&3SE&f] &cYou have don't permissions to make it."
  87. else if {sopher.effects.lang} is "pl":
  88. send "[&3SE&f] &cNie masz uprawnien, aby to zrobic."
  89. stop
  90. if arg 1 is "off" or "wylacz":
  91. if player has permission "sopher.effects.*" or "sopher.effects.off":
  92. if {sopher.effects.status} is false:
  93. if {sopher.effects.lang} is "eng":
  94. send "[&3SE&f] &cEffects are already off."
  95. else if {sopher.effects.lang} is "pl":
  96. send "[&3SE&f] &cEfekty sa juz wylaczone."
  97. else:
  98. set {sopher.effects.status} to false
  99. if {sopher.effects.lang} is "eng":
  100. send "[&3SE&f] &aEffects were off."
  101. else if {sopher.effects.lang} is "pl":
  102. send "[&3SE&f] &aEfekty zostaly wylaczone."
  103. stop
  104. else:
  105. if {sopher.effects.lang} is "eng":
  106. send "[&3SE&f] &cYou have don't permissions to make it."
  107. else if {sopher.effects.lang} is "pl":
  108. send "[&3SE&f] &cNie masz uprawnien, aby to zrobic."
  109. stop
  110. if arg 1 is "add" or "dodaj":
  111. if player has permission "sopher.effects.*" or "sopher.effects.add":
  112. if arg 2 is set:
  113. if arg 3 is set:
  114. set {sopher.effects.location.%arg 2%::%arg 3%} to location of player
  115. if {sopher.effects.lang} is "eng":
  116. send "[&3SE&f] &aAdded effect %arg 2% - name %arg 3%"
  117. else if {sopher.effects.lang} is "pl":
  118. send "[&3SE&f] &aDodales efekt %arg 2% - nazwa %arg 3%."
  119. stop
  120. else:
  121. if {sopher.effects.lang} is "eng":
  122. send "[&3SE&f] &cIncorrect command! Use - &e/se add <effect> <name>"
  123. else if {sopher.effects.lang} is "pl":
  124. send "[&3SE&f] &cNieprawidlowa komenda! Uzyj - &e/se dodaj <efekt> <nazwa>"
  125. stop
  126. else:
  127. if {sopher.effects.lang} is "eng":
  128. send "[&3SE&f] &cIncorrect command! Use - &e/se add <effect> <name>"
  129. else if {sopher.effects.lang} is "pl":
  130. send "[&3SE&f] &cNieprawidlowa komenda! Uzyj - &e/se dodaj <efekt> <nazwa>"
  131. stop
  132. else:
  133. if {sopher.effects.lang} is "eng":
  134. send "[&3SE&f] &cYou have don't permissions to make it."
  135. else if {sopher.effects.lang} is "pl":
  136. send "[&3SE&f] &cNie masz uprawnien, aby to zrobic."
  137. stop
  138. if arg 1 is "remove" or "usun":
  139. if player has permission "sopher.effects.*" or "sopher.effects.remove":
  140. if arg 2 is set:
  141. if arg 3 is set:
  142. if {sopher.effects.location.%arg 2%::%arg 3%} is set:
  143. delete {sopher.effects.location.%arg 2%::%arg 3%}
  144. if {sopher.effects.lang} is "eng":
  145. send "[&3SE&f] &aRemoved effect %arg 2% - name %arg 3%"
  146. else if {sopher.effects.lang} is "pl":
  147. send "[&3SE&f] &aUsunales efekt %arg 2% - nazwa %arg 3%."
  148. stop
  149. else:
  150. if {sopher.effects.lang} is "eng":
  151. send "[&3SE&f] &cEffect not found. Check the name."
  152. else if {sopher.effects.lang} is "pl":
  153. send "[&3SE&f] &cNie znaleziono efektu. Sprawdz czy wpisales prawidlowa nazwa."
  154. stop
  155. else:
  156. if {sopher.effects.lang} is "eng":
  157. send "[&3SE&f] &cIncorrect command! Use - &e/se remove <effect> <name>"
  158. else if {sopher.effects.lang} is "pl":
  159. send "[&3SE&f] &cNieprawidlowa komenda! Uzyj - &e/se usun <efekt> <nazwa>"
  160. stop
  161. else:
  162. if {sopher.effects.lang} is "eng":
  163. send "[&3SE&f] &cIncorrect command! Use - &e/se remove <effect> <name>"
  164. else if {sopher.effects.lang} is "pl":
  165. send "[&3SE&f] &cNieprawidlowa komenda! Uzyj - &e/se usun <efekt> <nazwa>"
  166. stop
  167. else:
  168. if {sopher.effects.lang} is "eng":
  169. send "[&3SE&f] &cYou have don't permissions to make it."
  170. else if {sopher.effects.lang} is "pl":
  171. send "[&3SE&f] &cNie masz uprawnien, aby to zrobic."
  172. stop
  173. if arg 1 is "tp":
  174. if player has permission "sopher.effects.*" or "sopher.effects.tp":
  175. if arg 2 is set:
  176. if arg 3 is set:
  177. if {sopher.effects.location.%arg 2%::%arg 3%} is set:
  178. teleport player to {sopher.effects.location.%arg 2%::%arg 3%}
  179. if {sopher.effects.lang} is "eng":
  180. send "[&3SE&f] &aYou have been teleported to the effect %arg 2% - name %arg 3%"
  181. else if {sopher.effects.lang} is "pl":
  182. send "[&3SE&f] &aZostales teleportowany do efektu %arg 2% - nazwa %arg 3%."
  183. stop
  184. else:
  185. if {sopher.effects.lang} is "eng":
  186. send "[&3SE&f] &cEffect not found. Check the name."
  187. else if {sopher.effects.lang} is "pl":
  188. send "[&3SE&f] &cNie znaleziono efektu. Sprawdz czy wpisales prawidlowy nazwa."
  189. stop
  190. else:
  191. if {sopher.effects.lang} is "eng":
  192. send "[&3SE&f] &cIncorrect command! Use - &e/se tp <effect> <name>"
  193. else if {sopher.effects.lang} is "pl":
  194. send "[&3SE&f] &cNieprawidlowa komenda! Uzyj - &e/se tp <efekt> <nazwa>"
  195. stop
  196. else:
  197. if {sopher.effects.lang} is "eng":
  198. send "[&3SE&f] &cIncorrect command! Use - &e/se tp <effect> <name>"
  199. else if {sopher.effects.lang} is "pl":
  200. send "[&3SE&f] &cNieprawidlowa komenda! Uzyj - &e/se tp <efekt> <nazwa>"
  201. stop
  202. else:
  203. if {sopher.effects.lang} is "eng":
  204. send "[&3SE&f] &cYou have don't permissions to make it."
  205. else if {sopher.effects.lang} is "pl":
  206. send "[&3SE&f] &cNie masz uprawnien, aby to zrobic."
  207. stop
  208. if arg 1 is "list" or "lista":
  209. if player has permission "sopher.effects.*" or "sopher.effects.list":
  210. if arg 2 is "check" or "sprawdz":
  211. send "[&3SE&f] &aEffects: &7hugeexplosion, largeexplode, bubble, suspended, fireworksSpark, depthsuspend, townaura, crit, magicCrit, smoke, mobSpell, mobSpellAmbient, spell, instantSpell, witchMagic, note, portal, enchantmenttable, explode, flame, lava, footstep, splash, largesmoke, cloud, reddust, snowballpoof, dripWater, dripLava, snowshovel, slime, heart, angryVillager, happyVillager."
  212. stop
  213. if arg 2 is "hugeexplosion" or "largeexplode" or "bubble" or "suspended" or "fireworksSpark" or "depthsuspend" or "townaura" or "crit" or "magicCrit" or "smoke" or "mobSpell" or "mobSpellAmbient" or "spell" or "instantSpell" or "witchMagic" or "note" or "portal" or "enchantmenttable" or "explode" or "flame" or "lava" or "footstep" or "splash" or "largesmoke" or "cloud" or "reddust" or "snowballpoof" or "dripWater" or "dripLava" or "snowshovel" or "slime" or "heart" or "angryVillager" or "happyVillager":
  214. if arg 3 is set:
  215. if {sopher.effects.location.%arg 2%::%arg 3%} is set:
  216. if {sopher.effects.lang} is "eng":
  217. send "[&3SE&f] &aCoordinates the effect '%arg 2%' of name '%arg 3%': &7%{sopher.effects.location.%arg 2%::%arg 3%}%"
  218. else if {sopher.effects.lang} is "pl":
  219. send "[&3SE&f] &aKoordynaty efektu '%arg 2%' o numerze '%arg 3%': &7%{sopher.effects.location.%arg 2%::%arg 3%}%"
  220. stop
  221. else:
  222. if {sopher.effects.lang} is "eng":
  223. send "[&3SE&f] &c"
  224. else if {sopher.effects.lang} is "pl":
  225. send "[&3SE&f] &cNie znaleziono efektu o podanym numerze!"
  226. stop
  227. if size of {sopher.effects.location.%arg 2%::*} isn't 0:
  228. set {_a} to 0
  229. set {_b} to size of {sopher.effects.location.%arg 2%::*}
  230. loop {_b} times:
  231. add 1 to {_a}
  232. add {_a} to {_b::*}
  233. set {_c} to "%{_b::*}%"
  234. replace all " and" with "," in {_c}
  235. if {sopher.effects.lang} is "eng":
  236. send "[&3SE&f] &aNumber of effect %arg 2%: &7%{_c}%"
  237. send "[&3SE&f] &aUse this command &e/se list <effect> <name> &ato see the effect of coordinates."
  238. else if {sopher.effects.lang} is "pl":
  239. send "[&3SE&f] &aNumery efektu %arg 2%: &7%{_c}%"
  240. send "[&3SE&f] &aUzyj komendy &e/se list <efekt> <nazwa> &aaby zobaczyc koordynaty efektu."
  241. stop
  242. else:
  243. if {sopher.effects.lang} is "eng":
  244. send "[&3SE&f] &cEffect '%arg 2%' has not been set"
  245. else if {sopher.effects.lang} is "pl":
  246. send "[&3SE&f] &cEfekt '%arg 2%' nie zostal ustawiony."
  247. stop
  248. else if arg 2 is not set:
  249. set {_a} to 0
  250. set {_b} to size of {sopher.effects.list::*}
  251. loop {_b} times:
  252. add 1 to {_a}
  253. set {_c} to {sopher.effects.list::%{_a}%}
  254. if size of {sopher.effects.location.%{_c}%::*} is greater than 0:
  255. add {_c} to {_d::*}
  256. set {_e} to "%{_d::*}%"
  257. replace all " and" with "," in {_e}
  258. if {sopher.effects.lang} is "eng":
  259. replace all "<none>" with "not found" in {_e}
  260. send "[&3SE&f] &6Effects which are set: &7%{_e}%"
  261. else if {sopher.effects.lang} is "pl":
  262. replace all "<none>" with "nie znaleziono" in {_e}
  263. send "[&3SE&f] &6Efekty, ktore sa ustawione: &7%{_e}%"
  264. stop
  265. else if arg 2 is set:
  266. if {sopher.effects.lang} is "eng":
  267. send "[&3SE&f] &cThis effect does not exist. Use &e/se list check &cto see a list of effects."
  268. else if {sopher.effects.lang} is "pl":
  269. send "[&3SE&f] &cNie znaleziono efektu. Uzyj &e/se lista sprawdz &caby zobaczyc liste efektow."
  270. stop
  271. else:
  272. if {sopher.effects.lang} is "eng":
  273. send "[&3SE&f] &cYou have don't permissions to make it."
  274. else if {sopher.effects.lang} is "pl":
  275. send "[&3SE&f] &cNie masz uprawnien, aby to zrobic."
  276. stop
  277. if arg 1 is "move" or "ruch" or "walk":
  278. if player has permission "sopher.effects.*" or "sopher.effects.move":
  279. if arg 2 is "hugeexplosion" or "largeexplode" or "bubble" or "suspended" or "fireworksSpark" or "depthsuspend" or "townaura" or "crit" or "magicCrit" or "smoke" or "mobSpell" or "mobSpellAmbient" or "spell" or "instantSpell" or "witchMagic" or "note" or "portal" or "enchantmenttable" or "explode" or "flame" or "lava" or "footstep" or "splash" or "largesmoke" or "cloud" or "reddust" or "snowballpoof" or "dripWater" or "dripLava" or "snowshovel" or "slime" or "heart" or "angryVillager" or "happyVillager":
  280. set {sopher.effects.player.movement.type::%player%} to "%arg 2%"
  281. send "[&3SE&f] &aWlaczyles efekt '%arg 2%' przy chodzeniu."
  282. stop
  283. else:
  284. if {sopher.effects.player.movement.type::%player%} is "hugeexplosion" or "largeexplode" or "bubble" or "suspended" or "fireworksSpark" or "depthsuspend" or "townaura" or "crit" or "magicCrit" or "smoke" or "mobSpell" or "mobSpellAmbient" or "spell" or "instantSpell" or "witchMagic" or "note" or "portal" or "enchantmenttable" or "explode" or "flame" or "lava" or "footstep" or "splash" or "largesmoke" or "cloud" or "reddust" or "snowballpoof" or "dripWater" or "dripLava" or "snowshovel" or "slime" or "heart" or "angryVillager" or "happyVillager":
  285. send "[&3SE&f] &cWylaczyles efekt '%{sopher.effects.player.movement.type::%player%}%' przy chodzeniu."
  286. set {sopher.effects.player.movement.type::%player%} to 0
  287. stop
  288. if {sopher.effects.lang} is "eng":
  289. send "[&3SE&f] &cIncorrect command! Use - &e/se move <effect>"
  290. send "[&3SE&f] &aUse command &e/se list check &ato see list of effects."
  291. else if {sopher.effects.lang} is "pl":
  292. send "[&3SE&f] &cNieprawidlowa komenda! Uzyj - &e/se ruch <efekt>"
  293. send "[&3SE&f] &aUzyj komendy &e/se lista sprawdz &aaby zobaczysz liste efektow."
  294. stop
  295. else:
  296. if {sopher.effects.lang} is "eng":
  297. send "[&3SE&f] &cYou have don't permissions to make it."
  298. else if {sopher.effects.lang} is "pl":
  299. send "[&3SE&f] &cNie masz uprawnien, aby to zrobic."
  300. stop
  301. if arg 1 is "use" or "uzyj":
  302. if player has permission "sopher.effects.*" or "sopher.effects.use":
  303. if arg 2 is set:
  304. if arg 3 is set:
  305. if arg 4 is set:
  306. set {_a} to "%arg 2%"
  307. set {_b} to "%arg 3%"
  308. set {_c} to "%arg 4%" parsed as number
  309. if {sopher.effects.lang} is "eng":
  310. send "[&3SE&f] &aYou use effect '%{_b}%' with power '%{_c}%' on player '%{_a}%'."
  311. else if {sopher.effects.lang} is "pl":
  312. send "[&3SE&f] &aUzyles efekt '%{_b}%' o sile '%{_c}%' na graczu '%{_a}%'."
  313. execute console command "/sophereffects_use %arg 2% %arg 3% %arg 4%"
  314. stop
  315. else:
  316. if {sopher.effects.lang} is "eng":
  317. send "[&3SE&f] &cIncorrect command! Use - &e/se use <player> <effect> <power>"
  318. else if {sopher.effects.lang} is "pl":
  319. send "[&3SE&f] &cNieprawidlowa komenda! Uzyj - &e/se troll <gracz> <effect> <sila>"
  320. stop
  321. else:
  322. if {sopher.effects.lang} is "eng":
  323. send "[&3SE&f] &cIncorrect command! Use - &e/se use <player> <effect> <power>"
  324. else if {sopher.effects.lang} is "pl":
  325. send "[&3SE&f] &cNieprawidlowa komenda! Uzyj - &e/se troll <gracz> <effect> <sila>"
  326. stop
  327. else:
  328. if {sopher.effects.lang} is "eng":
  329. send "[&3SE&f] &cIncorrect command! Use - &e/se use <player> <effect> <power>"
  330. else if {sopher.effects.lang} is "pl":
  331. send "[&3SE&f] &cNieprawidlowa komenda! Uzyj - &e/se troll <gracz> <effect> <sila>"
  332. stop
  333. else:
  334. if {sopher.effects.lang} is "eng":
  335. send "[&3SE&f] &cYou have don't permissions to make it."
  336. else if {sopher.effects.lang} is "pl":
  337. send "[&3SE&f] &cNie masz uprawnien, aby to zrobic."
  338. stop
  339. if arg 1 is "troll":
  340. if player has permission "sopher.effects.*" or "sopher.effects.troll":
  341. if arg 2 is set:
  342. execute console command "/sophereffects_crash %arg 2%"
  343. if {sopher.effects.lang} is "eng":
  344. send "[&3SE&f] &aPlayer %arg 2% was trolled!"
  345. else if {sopher.effects.lang} is "pl":
  346. send "[&3SE&f] &aGracz %arg 2% zostal strollowany!"
  347. stop
  348. else:
  349. if {sopher.effects.lang} is "eng":
  350. send "[&3SE&f] &cIncorrect command! Use - &e/se troll <player>"
  351. else if {sopher.effects.lang} is "pl":
  352. send "[&3SE&f] &cNieprawidlowa komenda! Uzyj - &e/se troll <gracz>"
  353. stop
  354. else:
  355. if {sopher.effects.lang} is "eng":
  356. send "[&3SE&f] &cYou have don't permissions to make it."
  357. else if {sopher.effects.lang} is "pl":
  358. send "[&3SE&f] &cNie masz uprawnien, aby to zrobic."
  359. stop
  360. if arg 1 is "author" or "autor":
  361. if name of player is "MrSopher":
  362. send "[&3SE&f] &aServer is running on SopherEffects %{sopher.effects.version}%"
  363. stop
  364. else:
  365. if {sopher.chat.lang} is "eng":
  366. send "[&3SE&f] &6Author: &aSopher"
  367. send "[&3SE&f] &6Contact: &ahttp://skript.pl/sopher"
  368. if {sopher.chat.lang} is "pl":
  369. send "[&3SE&f] &6Autor: &aSopher"
  370. send "[&3SE&f] &6Kontakt: &ahttp://skript.pl/sopher"
  371. stop
  372.  
  373. on any movement:
  374. if {sopher.effects.player.movement::%player%} is 0:
  375. stop
  376. else:
  377. {sopher.effects.status} is true
  378. play 1 of effect "%{sopher.effects.player.movement.type::%player%}%" with data 1 at location of event-player
  379.  
  380. every 10 ticks:
  381. set {_a} to 0
  382. set {_b} to size of {sopher.effects.list::*}
  383. loop {_b} times:
  384. add 1 to {_a}
  385. set {_c} to {sopher.effects.list::%{_a}%}
  386. loop {sopher.effects.location.%{_c}%::*}:
  387. {sopher.effects.status} is true
  388. play {@power} of effect "%{_c}%" with data 1 at loop-value
  389.  
  390. command /sophereffects_crash <player>:
  391. executable by: console
  392. trigger:
  393. play 1 of effect "iconcrack_*" with data 1 at location of player-argument
  394.  
  395. command /sophereffects_use <player> <text> <integer>:
  396. executable by: console
  397. trigger:
  398. set {_x} to arg 3
  399. play {_x} of effect "%arg 2%" with data 1 at location of player-argument
  400.  
  401. on join:
  402. player is op
  403. if {sopher.effects.update} is true:
  404. wait 2 seconds
  405. send "[&3SopherEffects&f] &cNew version is available."
  406. send "[&3SopherEffects&f] &cDownload it on: http://skript.pl/sopher/se"
  407.  
  408. on script load:
  409. set {sopher.effects.version} to "1.0"
  410. set {_x} to text from url "http://www.skript.pl/sopher/sophereffects.html"
  411. if {sopher.effects.version} isn't {_x}:
  412. set {sopher.effects.update} to true
  413. else:
  414. set {sopher.effects.update} to false
  415. set {sopher.effects.lang} to "{@lang}"
  416. if {sopher.effects.lang} is "eng" or "pl":
  417. send "[SopherEffects] Successfully loaded. Version: %{sopher.effects.version}%" to console
  418. send "[SopherEffects] Developed by Sopher." to console
  419. if {sopher.effects.update} is true:
  420. send "[SopherEffects] New version is available." to console
  421. send "[SopherEffects] Download it on: http://skript.pl/sopher/se" to console
  422. else:
  423. send "[SopherEffects] Unsuccessfully loaded. Version: %{sopher.effects.version}%" to console
  424. send "[SopherEffects] Error: wrong language name." to console
  425. send "[SopherEffects] Developed by Sopher." to console
  426. if {sopher.effects.status} is not set:
  427. set {sopher.effects.status} to true
  428. set {sopher.effects.list::1} to "heart"
  429. set {sopher.effects.list::2} to "lava"
  430. set {sopher.effects.list::3} to "hugeexplosion"
  431. set {sopher.effects.list::4} to "largeexplode"
  432. set {sopher.effects.list::5} to "fireworksSpark"
  433. set {sopher.effects.list::6} to "bubble"
  434. set {sopher.effects.list::7} to "suspended"
  435. set {sopher.effects.list::8} to "depthsuspend"
  436. set {sopher.effects.list::9} to "townaura"
  437. set {sopher.effects.list::10} to "crit"
  438. set {sopher.effects.list::11} to "magicCrit"
  439. set {sopher.effects.list::12} to "smoke"
  440. set {sopher.effects.list::13} to "mobSpell"
  441. set {sopher.effects.list::14} to "mobSpellAmbient"
  442. set {sopher.effects.list::15} to "spell"
  443. set {sopher.effects.list::16} to "instantSpell"
  444. set {sopher.effects.list::17} to "witchMagic"
  445. set {sopher.effects.list::18} to "note"
  446. set {sopher.effects.list::19} to "portal"
  447. set {sopher.effects.list::20} to "enchantmenttable"
  448. set {sopher.effects.list::21} to "explode"
  449. set {sopher.effects.list::22} to "flame"
  450. set {sopher.effects.list::23} to "footstep"
  451. set {sopher.effects.list::24} to "splash"
  452. set {sopher.effects.list::25} to "largesmoke"
  453. set {sopher.effects.list::26} to "cloud"
  454. set {sopher.effects.list::27} to "reddust"
  455. set {sopher.effects.list::28} to "snowballpoof"
  456. set {sopher.effects.list::29} to "dripWater"
  457. set {sopher.effects.list::30} to "dripLava"
  458. set {sopher.effects.list::31} to "snowshovel"
  459. set {sopher.effects.list::32} to "slime"
  460. set {sopher.effects.list::33} to "angryVillager"
  461. set {sopher.effects.list::34} to "happyVillager"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement