Advertisement
Guest User

Untitled

a guest
Mar 30th, 2020
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. on join:
  2. set {locked.%player%} to false
  3. command /lock [<player>]:
  4. trigger:
  5. set position of arg-1 to {location.%player%}
  6. send "&4&lYou have been locked by a staff member!" to arg-1
  7. send "&1You are required to take a picture of your F3 and send it to staff on discord to continue."
  8. send "&1To do this, press F3 on your keyboard, then F2. Look for the screenshot in your minecraft folder and send it to us on discord. You can also contact staff for assistance. Be warned that if you leave at this point of time, you will be banned."
  9. set {locked.%arg-1%} to true
  10. command /unlock [<player>]:
  11. trigger:
  12. send "&3You have passed the check! Thank you for co-operating with staff."
  13. teleport player to {location.%player%}
  14. set {locked.%player%} to false
  15. every 2 seconds:
  16. loop all players:
  17. if {locked.%loop-player%} is true:
  18. teleport player to {location.%loop-player%}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement