Advertisement
Guest User

Untitled

a guest
Jan 24th, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.57 KB | None | 0 0
  1. # A list of commands to execute when a player joins
  2. join commands:
  3. # This is the command id, its only used internally
  4. # You can have as many commands as you want but make sure they are all different
  5. # Make sure they are all different
  6. Queue:
  7. # This is the actual command that will be executed
  8. # Commands are executed in console by default, unless you use a prefix
  9. # Do not add an extra "/"
  10. # Prefixes:
  11. # - [PLAYER]: run the command as the player
  12. # - [OP]: run the command as the player, but with OP permissions
  13. # - [PBUNGEE]: run the command as the player, but through BungeeCord
  14. # - [CBUNGEE]: run the command as the BungeeCord console
  15. command: "[PBUNGEE]server main"
  16.  
  17. # This is the amount of time the plugin will wait before actually sending the command
  18. # This delay is in ticks, 20 ticks = 1 second
  19. delay: 5
  20.  
  21. # This is the permission required to run the command
  22. # Set it to "" for no permission
  23. permission: ""
  24.  
  25. # Set this to true to make the command only work the first time a player joins
  26. first join only: false
  27.  
  28. # exampleCommand2:
  29. # command: "[PLAYER]suicide"
  30. # delay: 0
  31. # permission: "i.hate.you"
  32. # first join only: false
  33.  
  34. # A list of commands to execute when a player enters a world
  35. world commands:
  36. # This is the command id, its only used internally
  37. # Make sure they are all different
  38. exampleWorldCommand1:
  39. # This is the actual command that will be executed
  40. # Commands are executed in console by default, unless you use a prefix
  41. # Do not add an extra "/"
  42. # Prefixes:
  43. # - [PLAYER]: run the command as the player
  44. # - [OP]: run the command as the player, but with OP permissions
  45. # - [PBUNGEE]: run the command as the player, but through BungeeCord
  46. # - [CBUNGEE]: run the command as the BungeeCord console
  47. command: ""
  48.  
  49. # This is the amount of time the plugin will wait before actually sending the command
  50. # This delay is in ticks, 20 ticks = 1 second
  51. delay: 20
  52.  
  53. # This is the permission required to run the command
  54. # Set it to "" for no permission
  55. permission: ""
  56.  
  57. # Set this to true to make the command only work the first time a player goes into the world
  58. first join only: true
  59.  
  60. # This is the list of worlds that will cause the command to run
  61. # To enable all worlds, add "*" to the list
  62. worlds:
  63.  
  64. # exampleWorldCommand2:
  65. # command: "[PLAYER]suicide"
  66. # delay: 0
  67. # permission: "i.hate.you"
  68. # first join only: false
  69. # worlds:
  70. # - "*"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement