Advertisement
Guest User

Untitled

a guest
Jan 20th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. //=================================================================================
  2. // Type "/list" while in vanish with an item in your hand to teleport around.
  3. // You can pause the teleportation sequence by putting the item aside.
  4.  
  5. // If you want to exclude players from your tour list them as shown in the example.
  6. // Example: &tabu="Player1 Player2 Player3 Player4"
  7. &tabu="LexyDev stefm90 malaboo Kademlia"
  8.  
  9. // Enter the time you want to wait between teleports in seconds.
  10. // Example: #rest=5
  11. #rest=5
  12.  
  13. // This Macro was written by 22855.
  14. // Modify at own risk.
  15. //=================================================================================
  16.  
  17. ifmatches(%CHAT%,"^§3You have joined vanished. To appear: /vanish§r$")
  18. set(vanish)
  19. log("§fVanish§7h§8h§0h...")
  20. endif
  21. ifmatches(%CHAT%,"^§3You have vanished. Poof.§r$")
  22. set(vanish)
  23. log("§fVanish§7h§8h§0h...")
  24. endif
  25. ifmatches(%CHAT%,"^§3You have become visible.§r$")
  26. unset(vanish)
  27. log("§0.§8.§7.§fBack to normal.")
  28. endif
  29. if(vanish)
  30. ifmatches(%CHAT%,"^§6Players§r: §r(.+)§r$")
  31. getslotitem(%INVSLOT%,&item)
  32. if(&item!="air")
  33. match(%CHAT%,"^§6Players§r: §r(.+)§r$",{&list})
  34. split("§r§f, ",%&list%,&list[])
  35. &check=" %&tabu% "
  36. #i=0
  37. do
  38. if(%&list[%#i%]%!=%PLAYER%)
  39. ifcontains("%&check%"," %&list[%#i%]% ")
  40. else
  41. do
  42. getslotitem(%INVSLOT%,&item)
  43. if(!vanish)
  44. &list[]=""
  45. log("§cYou became visible! The tour ended.")
  46. break
  47. endif
  48. until(&item!="air")
  49. log("/tp %&list[%#i%]%")
  50. wait("%#rest%")
  51. endif
  52. endif
  53. inc(#i)
  54. while("%&list[%#i%]%")
  55. endif
  56. log("§3Your secret journey has come to an end!")
  57. endif
  58. endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement