Advertisement
Guest User

Untitled

a guest
Apr 19th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. "Toggle"
  2. {
  3. "sm_afk_enable" // ConVar
  4. {
  5. "type" "convar" // type "convar", "command" or "plugin"
  6. "action" "0" // On type "convar" - convar value while eventday
  7. }
  8. "kill" // Command
  9. {
  10. "type" "command"
  11. "action" "block" // action on type "command" - "block" or "execute"
  12. }
  13. "sm_store" // Command
  14. {
  15. "type" "command"
  16. "action" "block" // block command while eventday
  17. }
  18. "sm_play @all weapons/party_horn_01.wav" // Command
  19. {
  20. "type" "command"
  21. "action" "execute" // execute server command on eventday start
  22. }
  23. "jailed_reasons.smx" // Plugin
  24. {
  25. "type" "plugin" // Only use type "plugin" when "convar" and "command" won't work.
  26. "action" "unload" // action on type "plugin" - "load" or "unload"
  27. }
  28. "disableradar.smx" // Plugin
  29. {
  30. "type" "plugin"
  31. "action" "load" // Load on eventday start, unload on eventday end
  32. }
  33. "sprays.smx" // Plugin
  34. {
  35. "type" "plugin"
  36. "action" "unload" // Unload on eventday start, load on eventday end
  37. }
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement