home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2004 September / Gamestar_65_2004-09_dvd.iso / Dema / balloonrain_trial.exe / Data / Pak01.pak / menu / multiplayer.menu < prev    next >
Text File  |  2004-06-22  |  588b  |  60 lines

  1. def x        320
  2. def y        180
  3. def dy        60
  4.  
  5. Include Menu.Def
  6.  
  7. item
  8. {
  9.     Text Multiplayer
  10.     Font Title
  11.     Pos x 60 Center
  12. }
  13.  
  14.  
  15. item
  16. {
  17.     Text 2P
  18.     Pos x y Center
  19.     Add y dy
  20.     OnAction
  21.     {
  22.         SetCfg /Game/NbPlayers 2 SelectIf
  23.         menu LevelSurvivor
  24.     }
  25. }
  26.  
  27. item
  28. {
  29.     Text 3P
  30.     Pos x y Center
  31.     Add y dy
  32.     OnAction
  33.     {
  34.         SetCfg /Game/NbPlayers 3 SelectIf
  35.         menu LevelSurvivor
  36.     }
  37. }
  38.  
  39. item
  40. {
  41.     Text 4P
  42.     Pos x y Center
  43.     Add y dy
  44.     OnAction
  45.     {
  46.         SetCfg /Game/NbPlayers 4 SelectIf
  47.         menu LevelSurvivor
  48.     }
  49. }
  50.  
  51.  
  52. item
  53. {
  54.     Text Back
  55.     Pos x 430 Center
  56.     OnAction
  57.     {
  58.         MenuBack
  59.     }
  60. }