You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
413 B
14 lines
413 B
if (active) {
|
|
if (global.maxmissiles == oControl.mod_Mstartingcount) {
|
|
event_inherited();
|
|
} else {
|
|
itemtype = 1;
|
|
popup_text(get_text("Notifications", "MissileTank"));
|
|
event_inherited();
|
|
}
|
|
if (global.difficulty < 2) global.maxmissiles += 5;
|
|
if (global.difficulty == 2) global.maxmissiles += 2;
|
|
global.missiles = global.maxmissiles;
|
|
global.mtanks += 1;
|
|
}
|