You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
718 B
21 lines
718 B
var str, findIDSamus, findIDSAX, str2, currentRoom;
|
|
draw_self()
|
|
if instance_exists(oServer)
|
|
{
|
|
str = ""
|
|
findIDSamus = ds_list_find_index(oServer.samusList, ID)
|
|
if (findIDSamus >= 0)
|
|
str = "Normal:"
|
|
findIDSAX = ds_list_find_index(oServer.saxList, ID)
|
|
if (findIDSAX >= 0)
|
|
str = "SA-X:"
|
|
draw_text((x + 70), y, str)
|
|
str2 = ""
|
|
currentRoom = ds_map_find_value(global.readyMap, ID)
|
|
if ((!is_undefined(currentRoom)) && currentRoom != 0 && currentRoom != 1 && currentRoom != 4 && currentRoom != 5 && currentRoom != 6 && currentRoom != 13 && currentRoom != 14 && currentRoom != 15)
|
|
str2 = "Ready"
|
|
else
|
|
str2 = "Not ready"
|
|
draw_text((x + 140), y, str2)
|
|
}
|