18 lines
211 B
Plaintext
18 lines
211 B
Plaintext
|
if global.ldmode = 0
|
||
|
{
|
||
|
exit;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
lives -= 1
|
||
|
if lives < 0
|
||
|
{
|
||
|
keyboard_key_press(vk_escape)
|
||
|
}
|
||
|
with (other)
|
||
|
{
|
||
|
instance_destroy()
|
||
|
}
|
||
|
}
|
||
|
|