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.
12 lines
352 B
12 lines
352 B
/// check_cheating()
|
|
if (global.ingame) {
|
|
if (global.spacejump != 0) c_id = 1;
|
|
if (global.screwattack != 0) c_id = 1;
|
|
if (global.speedbooster != 0) c_id = 1;
|
|
if (global.pbeam != 0) c_id = 1;
|
|
if (global.sbeam != 0) c_id = 1;
|
|
if (global.smissiles != 0) c_id = 1;
|
|
if (global.pbombs != 0) c_id = 1;
|
|
}
|
|
if (c_id != 0) game_end();
|