Skip to content

Commit 5808a82

Browse files
committed
Merge pull request #26 from bolbies/manual_zones
👍 Merging #26 since the edits look good.
2 parents 837c9a0 + 19c173c commit 5808a82

File tree

5 files changed

+733
-3
lines changed

5 files changed

+733
-3
lines changed

source/INIT.sqf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ hq_manually_placed = false;
4141
zones_manually_placed = false;
4242
zones_max_dist_from_hq = 7500;
4343
dynamic_weather_enable = true;
44+
maually_chosen = false;
4445

4546
if (isNil "enable_fast_travel") then { enable_fast_travel = true; };
4647
// chopper taxi (support) will fast travel (teleport) or not

source/dialog/startup/startup.hpp

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,16 +156,29 @@ class startup_dialog
156156
class start_button: RscButton
157157
{
158158
idc = 1600;
159-
text = "START"; //--- ToDo: Localize;
159+
text = "START-R"; //--- ToDo: Localize;
160160
x = 16 * GUI_GRID_W + GUI_GRID_X;
161161
y = 23 * GUI_GRID_H + GUI_GRID_Y;
162162
w = 8 * GUI_GRID_W;
163163
h = 1.5 * GUI_GRID_H;
164164
sizeEx = 0.05;
165165
colorBackground[] = {1, 0, 0,0.5};
166-
tooltip = "Generate the zones and the campaign"; //--- ToDo: Localize;
166+
tooltip = "Randomly generate the zones, then start the campaign"; //--- ToDo: Localize;
167167
action = "_nul = [] execvm ""dialog\startup\startup_start.sqf""";
168168
};
169+
class start_button2: RscButton
170+
{
171+
idc = 1601;
172+
text = "START-M"; //--- ToDo: Localize;
173+
x = 24.5 * GUI_GRID_W + GUI_GRID_X;
174+
y = 23 * GUI_GRID_H + GUI_GRID_Y;
175+
w = 8 * GUI_GRID_W;
176+
h = 1.5 * GUI_GRID_H;
177+
sizeEx = 0.05;
178+
colorBackground[] = {1, 0, 0,0.5};
179+
tooltip = "Manually generate the zones, then start the campaign"; //--- ToDo: Localize;
180+
action = "_nul = [] execvm ""dialog\startup\startup_start2.sqf""";
181+
};
169182
class weather_type_frame: RscFrame
170183
{
171184
idc = 1807;

0 commit comments

Comments
 (0)