You've already forked AM2R-Community-Updates
mirror of
https://github.com/izzy2lost/AM2R-Community-Updates.git
synced 2026-03-10 11:23:35 -07:00
12 lines
352 B
Plaintext
12 lines
352 B
Plaintext
/// 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();
|