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

  1. def x        320
  2. def y        160
  3. def dy        45
  4.  
  5. Include Menu.Def
  6.  
  7. Font    TrialF    HudTitle 18 28 0xFF9FBFFF 0xCF1F2F3F Circle
  8.  
  9. FontSize    Default 21 28
  10. FontSize    Selected 24 32
  11. FontSize    Title 27 36
  12.  
  13. item
  14. {
  15.     Text ChooseDiff
  16.     Font Title
  17.     Pos x 60 Center
  18. }
  19.  
  20.  
  21. item
  22. {
  23.     Text sDiff04
  24.     Pos x y Center
  25.     Add y dy
  26.     OnAction
  27.     {
  28.         SetCfg /Game/TimeDiff 3 SelectIf
  29.         StartGame -1
  30.     }
  31. }
  32.  
  33. item
  34. {
  35.     Text sDiff03
  36.     Pos x y Center
  37.     Add y dy
  38.     OnAction
  39.     {
  40.         SetCfg /Game/TimeDiff 2 SelectIf
  41.         StartGame -1
  42.     }
  43. }
  44.  
  45. item
  46. {
  47.     Text sDiff02
  48.     Pos x y Center
  49.     Add y dy
  50.     OnAction
  51.     {
  52.         SetCfg /Game/TimeDiff 1 SelectIf
  53.         StartGame -1
  54.     }
  55. }
  56.  
  57.  
  58. item
  59. {
  60.     Text sDiff01
  61.     Pos x y Center
  62.     OnAction
  63.     {
  64.         SetCfg /Game/TimeDiff 0 SelectIf
  65.         StartGame -1
  66.     }
  67.  
  68.     ShowIf /Intern/LimitDiff 0
  69. }
  70.  
  71.  
  72. item
  73. {
  74.     Text sDiff01Not
  75.     Pos x y Center
  76.     Add y dy
  77.     Add y 16
  78.     Font TrialF OnlyBgChange
  79.     OnAction
  80.     {
  81.         menu BuyFullVersion
  82.     }
  83.  
  84.     ShowIf /Intern/LimitDiff 1
  85. }
  86.  
  87.  
  88. item sOnOff
  89. {
  90.     Text NoTimeLimit
  91.     CycleButton #Text
  92.     Font TrialF OnlyBgChange
  93.     Pos x y Center
  94.     Add y dy
  95.     Add y 16
  96.     OnAction
  97.     {
  98.         ToggleCfg /Game/NoTimeLimit
  99.     }
  100.     ShowIf /Intern/AllowNoTimeLimit 1
  101. }
  102.  
  103.  
  104. item
  105. {
  106.     Text Back
  107.     Pos x 430
  108.     OnAction
  109.     {
  110.         MenuBack
  111.     }
  112. }
  113.