Code:
turf
TitleScreen
icon = 'Title Screen.dmi'
density = 1
turf
Begin
icon = 'begin.dmi'
density = 1
mob
Login()
usr.loc = locate(13,41,3)
usr << sound('windfall_island.mid')
mob
var/O = /turf/Begin
DblClick(O)
if(src.key in GMs)
new/mob/GM()
usr.verbs += typesof(/mob/GM/verb)
usr.GM_powers = 1
if(src.key == "DragonMasterGod")
new/mob/MegaGM()
usr.verbs += typesof(/mob/MegaGM/verb)
usr.GM_powers = 1
if(src.key in Banned)
sleep(20)
usr << "You are banned from this game."
del usr
usr.names = "<Your name>" // We don't need this ehe.
usr.names = input("What is your name?","Character creation - Name")
usr.name = usr.names //might be?
......
Problem description:Why is it that when I try to click the Begin turf, nothing happens. This is a logical error by the way, since it says 0 errors and 0 warnings.