ID:138954
 
Code:
Hello.dm:
mob
Login()
world<< "Hello, World!"

maze.dm:
turf
floor
icon = 'floor.dmi'
wall
icon = 'wall.dmi'
density = 1
mob
icon = 'player.dmi'


world.dm:

mob
verb
smile()
world << "[usr] grins."
giggle()
world << "[usr] giggles."
cry()
world << "[usr] cries \his heart out."

mob
verb
say(msg as text)
world << "[usr] says, [msg]"


Problem description:
I have gotten to the part of the tutorial where it has me make a map. I made the map, and it doesn't seem to be working.

Have 0 errors according to the compiler.

What could I be doing wrong?

What is the map not doing correctly?
In response to Boxcar
Boxcar wrote:
What is the map not doing correctly?

Sorry I forgot to add that, company came over.


The map is just showing as a blank black screen.
In response to Dothackking
You overrode Login(), which by default places you on the map. You can either call ..() at the end of your Login() process to do that default action, or you can set the location yourself (src.loc = locate(2,2,1))
In response to DarkCampainger
Oh...Duh. Thanks. I had problems switching between hello and world at first so that explains it