Advertisement
Guest User

Untitled

a guest
May 26th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. spawn:
  2.  
  3. # Aliases : the command can be used with /spawn or /gotospawn
  4. aliases:
  5. - spawn
  6.  
  7. # Arguments : here we don't need argument so we only add one pattern with empty args
  8. arguments:
  9.  
  10. 1:
  11. # Pattern : we don't need arguments, so it's empty
  12. pattern: ''
  13. # Description : arguments description ; what is that command going to do if you enter those arguments
  14. description: go to the spawn
  15. # Permission : the players will need to have the permission to use the command with those arguments
  16. permission: myserver.permission.spawn
  17. # Cooldown : we don't want the player to spam this command
  18. cooldown: 5
  19. # Perform : actions that will be performed when the player uses the command with those arguments
  20. perform:
  21. 1:
  22. type: execute commands for
  23. data:
  24. - warp spawn
  25. 2:
  26. type: send message
  27. data:
  28. - player
  29. - '&aTeleportando para o Lobby!'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement