您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

spectatormenu.txt 952B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. // Command Menu definition
  2. //
  3. // Basic Format:
  4. // "<Bound Key>" "<Button Text>" "<Command sent to server>"
  5. //
  6. //
  7. //
  8. //
  9. // Buttons can also open up submenus, as follows:
  10. // {
  11. // "Some More Options",
  12. // {
  13. // ...
  14. // }
  15. // }
  16. //
  17. //
  18. // Buttons preceded with "CUSTOM" are handled in special ways. They can only be moved
  19. // around or deleted.
  20. //
  21. //
  22. // Limitations:
  23. // Maximum of 50 menus.
  24. // Maximum of 100 buttons per menu.
  25. //--------------------------------------------------------
  26. // Everything below here is editable
  27. "5" "Close" "spec_menu 0"
  28. "4" "Help" "spec_help"
  29. "3" "Settings"
  30. {
  31. TOGGLE "4" "Chat Messages" "hud_saytext"
  32. TOGGLE "3" "Show Status" "spec_drawstatus"
  33. TOGGLE "2" "View Cone" "spec_drawcone"
  34. TOGGLE "1" "Player Names" "spec_drawnames"
  35. }
  36. TOGGLE "2" "Auto Director" "spec_autodirector"
  37. "1" "Show Scores" "togglescores"
  38. // Here are the rest of the buttons and submenus
  39. // You can change these safely if you want.