Code: Select all
script 2 (void) {
Print (s: "if you would like to skip this map press (ALTATTACK)");
delay(60);
GetPlayerInput(-1,INPUT_BUTTONS);
if (buttons == BT_ALTATTACK) {
Exit_Normal(0);
}
}
Moderator: GZDoom Developers
Code: Select all
script 2 (void) {
Print (s: "if you would like to skip this map press (ALTATTACK)");
delay(60);
GetPlayerInput(-1,INPUT_BUTTONS);
if (buttons == BT_ALTATTACK) {
Exit_Normal(0);
}
}
Code: Select all
int buttons = GetPlayerInput(-1, INPUT_BUTTONS);