ID:142499
 
Hi guys. I'm that guy trying to teach Byond to a high school class. Fun times.

Anyways, I'm getting this problem, and so is a student. Our maps don't want to show up. It just shows a black screen in place of the map. Another student isn't having this problem, and I didn't have it earlier.

Suggestions?
Can't really say much, Hope mabey someday I get a class that i get to work with byond. Mabey try changing the "z" thats the floor the map is on. It should be right under the add, fill, select with arrows... Can you even place things or is just not working at all? Hope this helps.
In response to Nategrant
Oh I think I might have found a problem.... I first thought it might only be in dream maker you cant see the map, if its in dream seeker, or whatever runs the game then go through your coding and make sure you...

1. Don't have a return in your Login() proc it will make your screen black.

2. Make sure you have a ..() after each login()

3.Make sure you are being teleported to somewhere, were it's maped...

Also if you need any hosting for so they can have a little fun playing each other's games if they cant already I can host a couple.
In response to Nategrant
Login()
icon = 'player.dmi'
loc = locate (/turf/start)
..()

There it is. Wheres the problem?

Erased that and put

turf/landing_pad
name = "landing pad"
mob/Login()
if(loc) //reconnecting
usr << "Welcome back, [name]."
else
usr << "Welcome, [name]!"
loc = locate(/turf/landing_pad)

It works now.