ID:142524
 
Code:
//dont know what code to put, game was working fine a while ago, i suppose i can post my login stuff/click able login turfs though:
turf/Full
density = 1
layer = 999
icon = 'AirGearLogin.PNG'
turf/START
density = 1
layer = 999
Click()
var/charactername = input("","Name") as text|null
if(length(charactername) < 3)
alert("Sorry. You aren't allowed to have fewer than 3 letters!")
return
if(length(charactername) > 25)
alert("Sorry. You aren't allowed to have more than 25 letters!")
usr.name="[html_encode(charactername)]"
usr.loc = locate(94,94,20)
turf/Load
density = 1
layer = 999
Click()
usr.LoadPlayer()
turf/Quit
density = 1
layer = 999
Click()
del(usr)
turf/Delete
density = 1
layer=999
Click()
usr.DeleteChar()
mob
proc
DeleteChar()
if(fexists("players/[src.key].sav"))
var/sure=alert(src,"Are you sure you want to delete your character?","Confirmation","Yes","No")
if(sure=="Yes")
sleep(0)
fdel("players/[src.key].sav")
src << "<b><font color=red>Character Deleted."
else
src << "<b><font color=yellow>Canceled deleting '[src.key].sav'."
else
src << "<b><font color=red>You do not have a character saved on this server."

mob
proc
loginstuffffff()
src.ingame=1
if(src.talkedto)
spawn(1000)
src.talkedto=0
return
Login()
usr<<"<Font size = +2>Welcome to the game!!!</font>"
alert("BY CLICKING OK, YOU AGREE TO COMPLY WITH THE RULES SAID ON THIS WEB SIGHT - http://www.byond.com/games/RanEsu/AirGearUnlimitedAir")
usr<<"<FONT SIZE=+1<FONT COLOR=#0000ff>IF you can help the game or have any ideas PUT THEM ON THE FORUM/FONT></FONT>"
usr<<"<FONT SIZE=+1><FONT COLOR=#0000ff>Thankyou for your time, and enjoy the game!</font>"
usr<<"<FONT SIZE=+2<FONT COLOR=#0000ff>If you can Icon, or Code, contact RanEsu @ Aaronroper@rock.com or RanEsu@rock.com</FONT></FONT>"
usr<<"<FONT SIZE=+1><FONT COLOR=#0000ff>Thankyou for your time, and enjoy the game!</font>"
world<<"<FONT SIZE=+2><FONT COLOR=#ff0000>[src] logged in!</FONT></FONT>"
alert("MOtD : none atm...")
world<<"<FONT SIZE=+2><FONT COLOR=#ff0000>[src] logged in!</FONT></FONT>"
usr.team_rank = "Player"
usr.canattack = 1
usr.loc = locate(1,1,1)
..()


Problem description:
when i run my game, it brings me to a black screen... :(
any possible fixes?
mamby at th eplace wher did you set you cordinate is a object remove the object that is set on 1,1,1
No usr in procs.
In response to Subzero1
Did you place the login screen on the map?