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.
AM2R-TimeTrials/scripts/mod_wat_scr.gml

23 lines
477 B

/*
switch (argument2)
{
case 'ETanks':
if (argument0 > 20) { return 20; }
if (argument0 < 0) { return 0; }
break;
case 'Missiles':
if (argument0 > 149) { return 149; }
if (argument0 < 0) { return 0; }
break;
case 'SuperMissiles':
case 'PowerBombs':
if (argument0 > 24) { return 24; }
if (argument0 < 0) { return 0; }
break;
}
//global.difficulty
//if (global.mod_cheating == 1) { return abs(argument0); }
return argument0;