Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 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. exampleCommand1:
  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: "[OP]eco give {player} 2000"
  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: 20
  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: true
  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. Command1:
  39.  
  40. command: "bg join"
  41.  
  42. delay: 20
  43.  
  44. permission: ""
  45.  
  46. first join only: false
  47.  
  48. worlds:
  49. - "login"
  50.  
  51. Command2:
  52.  
  53. command: "class profess global"
  54.  
  55. delay: 40
  56.  
  57. permission: ""
  58.  
  59. first join only: false
  60.  
  61. worlds:
  62. - "login"
  63.  
  64. Command3:
  65.  
  66. command: "class reset confirm"
  67.  
  68. delay: 0
  69.  
  70. permission: ""
  71.  
  72. first join only: false
  73.  
  74. worlds:
  75. - "login"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement