home *** CD-ROM | disk | FTP | other *** search
/ Micromanía 90 / CDMM_90_1.ISO / MODs / dod_v20.exe / %MAINDIR% / dod / commandmenu.txt < prev    next >
Encoding:
Text File  |  2002-02-06  |  7.9 KB  |  266 lines

  1. // Command Menu definition
  2. // 
  3. // Basic Format:
  4. //        "<Bound Key>" "<Button Text>" "<Command sent to server>"
  5. //
  6. // Or you can check for a specific class:
  7. //        <Class> "<BoundKey>" "<Button Text>" "<Command sent to server>"
  8. // Where <Class> is one of: SCOUT, SNIPER, SOLDIER, DEMOMAN, MEDIC, HWGUY, PYRO, SPY, ENGINEER
  9. // 
  10. // Or you can check for a specific map:
  11. //        MAP <MapName> "<BoundKey>" "<Button Text>" "<Command sent to server>"
  12. // Where <MapName> is the name of the map, without the ".bsp".
  13. //
  14. // Or you can check for a specific team:
  15. //        TEAM1 "<BoundKey>" "<Button Text>" "<Command sent to server>"
  16. //        TEAM2 "<BoundKey>" "<Button Text>" "<Command sent to server>"
  17. // TEAM3, TEAM4 work as well
  18. //
  19. // Buttons can also open up submenus, as follows:
  20. // {
  21. //     "Some More Options",
  22. //    {
  23. //        ...
  24. //    }
  25. // }
  26. //
  27. // Class can be any of the following:
  28. //        SCOUT, SNIPER, SOLDER, DEMOMAN, MEDIC, HWGUY, PYRO, SPY, ENGINEER
  29. //    Buttons prepended with a class name will only be seen if the player
  30. //    is that class. 
  31. //
  32. // Buttons preceded with "CUSTOM" are handled in special ways. They can only be moved
  33. // around or deleted.
  34. //
  35. //
  36. // Limitations:
  37. //        Maximum of 40 menus.
  38. //        Maximum of 100 buttons per menu.
  39.  
  40. //--------------------------------------------------------
  41. // Everything below here is editable
  42.  
  43. "1" "HELP"
  44. {
  45.     CUSTOM        "1" "SERVER INFO"        "!SERVERINFO"
  46.     CUSTOM        "2" "CLASS DESCRIPTION"        "!CLASSDESC"
  47.     CUSTOM        "3" "MAP DESCRIPTION"        "!MAPBRIEFING"
  48. }
  49.  
  50. "2" "CHANGE CLASS"    "changeclass"
  51. "3" "CHANGE TEAM"    "changeteam"
  52.  
  53. // Custom maps section
  54.  
  55.     MAP dod_caen "4" "MAP DOD_CAEN"
  56.     {
  57.         "1" "'Capture those flags'"        "say_team Capture those flags"
  58.         "2" "'Bomb their tanks'"        "say_team Bomb their tanks"
  59.         "3" "'I'm going to capture..."
  60.         {
  61.             "1" "the Allies Spawn'"            "say_team I'm going to capture the Allies Spawn!"
  62.             "2" "the Allies Plaza'"            "say_team I'm going to capture the Allies Plaza!"
  63.             "3" "the Allies Courtyard'"        "say_team I'm going to capture the Allies Courtyard!"
  64.             "4" "the Axis Courtyard'"        "say_team I'm going to capture the Axis Courtyard!"
  65.             "5" "the Axis Plaza'"            "say_team I'm going to capture the Axis Plaza!"    
  66.             "5" "the Axis Spawn'"            "say_team I'm going to capture the Axis Spawn!"    
  67.         }
  68.         "4" "'Need defense at..."
  69.         {
  70.             "1" "the Allies Spawn'"            "say_team We need defense at the Allies Spawn!"
  71.             "2" "the Allies Plaza'"            "say_team We need defense at the Allies Plaza!"
  72.             "3" "the Allies Courtyard'"        "say_team We need defense at the Allies Courtyard!"
  73.             "4" "the Axis Courtyard'"        "say_team We need defense at the Axis Courtyard!"
  74.             "5" "the Axis Plaza'"            "say_team We need defense at the Axis Plaza!"    
  75.             "5" "the Axis Spawn'"            "say_team We need defense at the Axis Spawn!"    
  76.         }
  77.     }
  78. MAP dod_radar "4" "MAP DOD_RADAR"
  79.     {
  80.         "1" "'Capture those flags'"        "say_team Capture those flags"
  81.         "2" "'Fire the artillery'"        "say_team Fire the artillery NOW!"
  82.         "3" "'Turn off the bunker lights'"    "say_team Turn off the bunker lights NOW!"
  83.         "4" "'Turn on the bunker lights'"    "say_team Turn on the bunker lights!"
  84.         "5" "'WARNING:Sniper in the barn'"    "say_team WARNING: Theres a sniper in the barn!"
  85.         "6" "'I'm going to capture..."
  86.         {
  87.             "1" "the Allied stronghold'"        "say_team I'm going to capture The Allied Stronghold!"
  88.             "2" "the barn'"                "say_team I'm going to capture The Barn!"
  89.             "3" "the radar'"            "say_team I'm going to capture The Radar!"
  90.             "4" "the war room'"            "say_team I'm going to capture The War Room!"
  91.             "5" "the beach bunker'"            "say_team I'm going to capture The Beach Bunker!"            
  92.         }
  93.         "7" "'Need defense at..."
  94.         {
  95.             "1" "the Allied stronghold'"        "say_team We need defense at The Allied Stronghold!"
  96.             "2" "the barn'"                "say_team We need defense at The Barn!"
  97.             "3" "the radar'"            "say_team We need defense at The Radar!"
  98.             "4" "the war room'"            "say_team We need defense at The War Room!"
  99.             "5" "the beach bunker'"            "say_team We need defense at The Beach Bunker!"        
  100.         }
  101.     }
  102.  
  103.     MAP dod_omaha "4" "MAP DOD_OMAHA"
  104.     {
  105.         "1" "this map needs custom sayings!"    "say This map needs custom sayings!"
  106.     }
  107.  
  108.     MAP dod_northville "4" "MAP DOD_NORTHVILLE"
  109.     {
  110.         "1" "this map needs custom sayings!"    "say This map needs custom sayings!"
  111.     }
  112.  
  113.     MAP dod_valley "4" "MAP DOD_VALLEY"
  114.     {
  115.         "1" "this map needs custom sayings!"    "say This map needs custom sayings!"
  116.     }
  117.  
  118.     MAP dod_bliss "4" "MAP DOD_BLISS"
  119.     {
  120.         "1" "this map needs custom sayings!"    "say This map needs custom sayings!"
  121.     }
  122.  
  123.     MAP dod_dam "4" "MAP DOD_DAM"
  124.     {
  125.         "1" "this map needs custom sayings!"    "say This map needs custom sayings!"
  126.     }
  127.  
  128.     MAP dod_oslo "4" "MAP DOD_OSLO"
  129.     {
  130.         "1" "this map needs custom sayings!"    "say This map needs custom sayings!"
  131.     }
  132.  
  133.     MAP dod_seg1 "4" "MAP DOD_SEG2"
  134.     {
  135.         "1" "this map needs custom sayings!"    "say This map needs custom sayings!"
  136.     }
  137.  
  138.     MAP dod_seg3 "4" "MAP DOD_SEG3"
  139.     {
  140.         "1" "this map needs custom sayings!"    "say This map needs custom sayings!"
  141.     }
  142.  
  143.     MAP dod_tstation "4" "MAP DOD_TSTATION"
  144.     {
  145.         "1" "this map needs custom sayings!"    "say This map needs custom sayings!"
  146.     }
  147.  
  148.     MAP dod_wtcity "4" "MAP DOD_WTCITY"
  149.     {
  150.         "1" "this map needs custom sayings!"    "say This map needs custom sayings!"
  151.     }
  152.  
  153.     MAP dod_vn61 "4" "MAP DOD_VN61"
  154.     {
  155.         "1" "this map needs custom sayings!"    "say This map needs custom sayings!"
  156.     }
  157.  
  158.     //beta 2 maps
  159.  
  160.     MAP dod_avalanche "4" "MAP DOD_AVALANCHE"
  161.     {
  162.         "1" "this map needs custom sayings!"    "say This map needs custom sayings!"
  163.     }
  164.  
  165.     MAP dod_anzio "4" "MAP DOD_ANZIO"
  166.     {
  167.         "1" "this map needs custom sayings!"    "say This map needs custom sayings!"
  168.     }
  169.  
  170.     MAP dod_caen2 "4" "MAP DOD_CAEN2"
  171.     {
  172.         "1" "this map needs custom sayings!"    "say This map needs custom sayings!"
  173.     }
  174.  
  175.     MAP dod_dog1 "4" "MAP DOD_DOG1"
  176.     {
  177.         "1" "this map needs custom sayings!"    "say This map needs custom sayings!"
  178.     }
  179.  
  180.     MAP dod_heutau "4" "MAP DOD_HEUTAU"
  181.     {
  182.         "1" "this map needs custom sayings!"    "say This map needs custom sayings!"
  183.     }
  184.  
  185.     MAP dod_overlord "4" "MAP DOD_OVERLORD"
  186.     {
  187.         "1" "this map needs custom sayings!"    "say This map needs custom sayings!"
  188.     }
  189.  
  190.     MAP dod_ramelle "4" "MAP DOD_RAMELLE"
  191.     {
  192.         "1" "this map needs custom sayings!"    "say This map needs custom sayings!"
  193.     }
  194.  
  195.     MAP dod_thunder "4" "MAP DOD_THUNDER"
  196.     {
  197.         "1" "this map needs custom sayings!"    "say This map needs custom sayings!"
  198.     }
  199.  
  200.     MAP dod_schwetz "4" "MAP DOD_SCHWETZ"
  201.     {
  202.         "1" "this map needs custom sayings!"    "say This map needs custom sayings!"
  203.     }
  204.  
  205.     MAP dod_zafod "4" "MAP DOD_ZAFOD"
  206.     {
  207.         "1" "this map needs custom sayings!"    "say This map needs custom sayings!"
  208.     }
  209.  
  210.  
  211.  
  212.  
  213. "5" "VOICE MESSAGES 1"
  214. {
  215.     "1"     "'Move out'"        "voice_attack"
  216.     "2"    "'Fall Back'"        "voice_fallback"
  217.     "3"    "'Covering Fire'"    "voice_cover"
  218.     "4"     "'I need backup'"    "voice_backup"
  219.     "5"     "'Take the flank'"    "voice_flank"
  220.     "6"     "'Take cover'"        "voice_takecover"
  221.     "7"     "'Hold this position'"    "voice_hold"
  222. }
  223.  
  224. "6" "VOICE_MESSAGES 2"
  225. {
  226.     "1" "'Yes Sir!'"        "voice_yessir"
  227.     "2" "'Left!'"            "voice_left"
  228.     "3" "'Right!'"            "voice_right"
  229.     "4" "'I need ammo'"        "voice_needammo"
  230.     "5" "'Sniper!'"            "voice_sniper"
  231.     "6" "'Grenade!'"        "voice_grenade"
  232.     "7" "'Medic!'"            "voice_medic"
  233.     "8" "'Drop your guns!'"        "voice_dropguns"
  234. }
  235.  
  236. "7" "HAND SIGNALS 1"
  237. {
  238.     "1" "'Stick Together'"        "signal_sticktogether"
  239.     "2" "'Fall Back'"        "signal_fallback"
  240.     "3" "'No Sir'"            "signal_no"
  241.     "4" "'Yes Sir'"            "signal_yes"
  242.     "5" "'Sniper!'"            "signal_sniper"
  243.     "6" "'Need Backup'"        "signal_backup"
  244.     "7" "'Right'"            "signal_enemyright"
  245.     "8" "'Left'"            "signal_enemyleft"
  246.     "9" "'Grenade !'"        "signal_grenade"
  247. }
  248.  
  249. "8" "HAND SIGNALS 2"
  250. {
  251.     
  252.     "1" "'Flank Left'"        "signal_flankleft"
  253.     "2" "'Flank Right'"        "signal_flankright"
  254.     "3" "'Move Out'"        "signal_moveout"
  255.     "4" "'Area Clear'"        "signal_areaclear"
  256.     "5" "'Covering Fire'"        "signal_coveringfire"
  257.     "6" "'Take Cover'"        "signal_takecover"
  258.     "7" "'Hold Position'"        "signal_holdposition"
  259.     "8" "'Spread Out'"        "signal_spreadout"
  260.     "9" "'Enemy Spotted'"        "signal_enemyspotted"
  261. }
  262.  
  263. "9" "STOP BLEEDING"        "stopbleed"
  264.  
  265.  
  266.