ID:176901
 
I'm making a game and everything works besides teguy will not show up it will be like a invisble guy walks around there all on a 10 frame animation in all directions for all 3 charcters. The screen askig who u want to be comes up. Here is my codng if u have any ideas on what to change or want to donate ur coding plz do!

mob
icon = 'icon.dmi'
var
HP = 100
str = 45
def = 30

mob
Login()
usr.icon_state = input("What character?") in list ("pacman","superman","bunny")
usr.Move(locate(1,1,1))
mob
Login()
usr.icon_state = input("What character?") in list ("pacman","superman","bunny")
usr.Move(locate(1,1,1))
in addition to mrhat99au's reply, you also need to finish the Login() proc with ..(), which means "finish what the computer has pre-programmed here." in this case finish loading the map and stuff like that.