ok well im making a basic rpg with pictures (Or atleast trying) and i need to get the person's name under the picture of him. Im not sure what code you need but here is a little bit of it.
Function typeini() player\x=500 player\y=100 player\hitpoints=10 End Function Function playermovement() If KeyDown(UPKEY) player\y=player\y-3 ElseIf KeyDown(DOWNKEY) player\y=player\y+3 ElseIf KeyDown(RIGHTKEY) player\x=player\x+3 ElseIf KeyDown(LEFTKEY) player\x=player\x-3 EndIf Text ,,"" + name$ + "" End Function Function leveltrans() If player\x=>1018 player\x=player\x-1017 ElseIf player\x=<6 player\x=player\x+1018 ElseIf player\y=>701 player\y=player\y-700 ElseIf player\y=<5 player\y=player\y+695 EndIf End Function