parent
fb76f4949f
commit
be25875e72
@ -1,2 +1,3 @@
|
||||
global.doomtime = 60
|
||||
image_speed = 0
|
||||
msg = undefined
|
||||
|
||||
@ -1 +1 @@
|
||||
global.doomtime = get_integer_async("Type in a doomsday time (in mins), -1 is disabled", 60)
|
||||
msg = get_integer_async("Type in a doomsday time (in mins), -1 is disabled", 60)
|
||||
|
||||
@ -0,0 +1,11 @@
|
||||
var ID, input;
|
||||
ID = ds_map_find_value(async_load, "id")
|
||||
if (ID == msg)
|
||||
{
|
||||
if ds_map_find_value(async_load, "status")
|
||||
{
|
||||
input = ds_map_find_value(async_load, "value")
|
||||
if is_real(input)
|
||||
global.doomtime = input
|
||||
}
|
||||
}
|
||||
Loading…
Reference in new issue