Advertisement
Guest User

Untitled

a guest
Jan 21st, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. on death of player in world "GG-1":
  2. set (gungamescore.%attacker%) to (gungamescore.%attacker%)+1
  3. if (gungamescore.%attacker%) is 1:
  4. EQ1(attacker)
  5. if (gungamescore.%attacker%) is 2:
  6. EQ2(attacker)
  7. if (gungamescore.%attacker%) is 3:
  8. EQ3(attacker)
  9. if (gungamescore.%attacker%) is 4:
  10. EQ4(attacker)
  11. if (gungamescore.%attacker%) is 5:
  12. EQ5(attacker)
  13.  
  14. function EQ1(p: players):
  15. clear inventory of {_p}
  16. set helmet of {_p} to leather helmet
  17. set chestplate of {_p} to leather chestplate
  18. set leggins of {_p} to leather leggins
  19. set boots of {_p} to leather boots
  20. set tool of {_p} to wooden axe
  21. function EQ2(p: players):
  22. clear inventory of {_p}
  23. set helmet of {_p} to iron helmet
  24. set chestplate of {_p} to leather chestplate
  25. set leggins of {_p} to leather leggins
  26. set boots of {_p} to iron boots
  27. set tool of {_p} to wooden sword
  28. function EQ3(p: players):
  29. clear inventory of {_p}
  30. set helmet of {_p} to iron helmet
  31. set chestplate of {_p} to iron chestplate
  32. set leggins of {_p} to iron leggins
  33. set boots of {_p} to iron boots
  34. set tool of {_p} to iron sword
  35. function EQ4(p: players):
  36. clear inventory of {_p}
  37. set helmet of {_p} to diamond helmet
  38. set chestplate of {_p} to iron chestplate
  39. set leggins of {_p} to iron leggins
  40. set boots of {_p} to diamond boots
  41. set tool of {_p} to Iron sword
  42. function EQ5(p: players):
  43. clear inventory of {_p}
  44. set helmet of {_p} to diamond helmet
  45. set chestplate of {_p} to diamond chestplate
  46. set leggins of {_p} to diamond leggins
  47. set boots of {_p} to diamond boots
  48. set tool of {_p} to iron sword
  49.  
  50. on teleport:
  51. if world will be "GG-1":
  52. clear player's inventory
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement