Advertisement
Guest User

Untitled

a guest
Feb 24th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. Overrides
  2. {
  3. /**
  4. * By default, commands are registered with three pieces of information:
  5. * 1)Command Name (for example, "csdm_enable")
  6. * 2)Command Group Name (for example, "CSDM")
  7. * 3)Command Level (for example, "changemap")
  8. *
  9. * You can override the default flags assigned to individual commands or command groups in this way.
  10. * To override a group, use the "@" character before the name. Example:
  11. * Examples:
  12. * "@CSDM" "b" // Override the CSDM group to 'b' flag
  13. * "csdm_enable" "bgi" // Override the csdm_enable command to 'bgi' flags
  14. *
  15. * Note that for overrides, order is important. In the above example, csdm_enable overwrites
  16. * any setting that csdm_enable previously had.
  17. *
  18. * You can make a command completely public by using an empty flag string.
  19. */
  20. "sm_donor" "s"
  21. "sm_knife" "t"
  22. "!skins" "o"
  23. "/ws" "o"
  24. "!ws" "o"
  25. "!skin" "o"
  26. "/skin" "o"
  27. "buyammo1" "o"
  28. "!warn" "b"
  29. "/warn" "b"
  30. "sm_warn" "b"
  31. "!model" "o"
  32. "/model" "o"
  33. "sm_model" "o"
  34.  
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement