gmc-jam-3/objects/obj_advance/KeyPress_90.gml

23 lines
327 B
Plaintext
Raw Permalink Normal View History

if menupos == 0
{
if tickers == 0
tickers = 1
}
if menupos == 1
{
global.difficulty += 1
if global.difficulty == 5
{
global.difficulty = 1
}
}
if menupos == 2
{
instance_create_depth(0,0, -5, object27);
}
if menupos == 3
{
game_end();
}