Advertisement
Guest User

Untitled

a guest
Jan 21st, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. #
  2. # Edit custom variables in game if possible
  3. # Some extra variables can be used, like [playerName] will insert senders name automatically
  4. # All global variables should work, you can find full list in locale file
  5. # You can add delay between commands by inserting line like
  6. # delay! 5
  7. # This will delay next commands by defines time in seconds
  8. # If command is shortened and you need to provide some changing variables like target player name you need to define what and where it should be placed
  9. # Example: /cmi heal Zrips
  10. # Can be shortened with custom alias to something like /h zrips by using alias command like
  11. # cmi heal $1
  12. # If you need to add more than one variable, use $1- format. Number represents variable place when used in alias command
  13. # Example: cmi tppos $1-
  14. # In case you want to print out help page if player enters wrong subcommand, use ? in alias
  15. # Example: ca ?
  16. # In this cae if player performs /ca wrongsub or /ca anotherwrong
  17. # Commands under this alias will get executed. Exelent way to show help page and correct usage if needed
  18.  
  19. CustomAlias:
  20. rules:
  21. Cmds:
  22. - cmi ctext rules
  23. resource:
  24. Cmds:
  25. - cmi warp resource
  26. discord:
  27. Cmds:
  28. - cmi ctext discord
  29. back:
  30. Cmds:
  31. - moneycost:10! cmi dback
  32. vote:
  33. Cmds:
  34. - vote gui
  35. buy:
  36. Cmds:
  37. - cmi ctext buy
  38. tpa $1:
  39. Cmds:
  40. - moneycost:1! cmi tpa $1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement