2021-06-28 18:45:03 -07:00
|
|
|
if menupos == 0
|
|
|
|
{
|
|
|
|
if tickers == 0
|
|
|
|
tickers = 1
|
|
|
|
}
|
|
|
|
if menupos == 1
|
|
|
|
{
|
|
|
|
global.difficulty += 1
|
|
|
|
if global.difficulty == 5
|
|
|
|
{
|
|
|
|
global.difficulty = 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if menupos == 2
|
|
|
|
{
|
2021-06-28 21:31:54 -07:00
|
|
|
instance_create_depth(0,0, -5, object27);
|
2021-06-28 18:45:03 -07:00
|
|
|
}
|
|
|
|
if menupos == 3
|
|
|
|
{
|
|
|
|
game_end();
|
|
|
|
}
|
2021-06-28 21:31:54 -07:00
|
|
|
|