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?