BYOND Version: 3.5 beta 5
Operating System:windows xp
Web Browser:internet explorer
Game/Hub(s): hub://
Detailed Problem Description:my map will not show up when i run the game
Code Snippet to Reproduce Problem:
Does the problem occur:every time
Every time? Or how often?
In other games?
On other computers?
In other user accounts?
ID:167544
![]() Feb 28 2006, 2:21 am (Edited on Feb 28 2006, 2:49 am)
|
|
mob/Login() |
Maybe you're missing an icon_state somewhere? I remember when I first started out, I missed one and I ended up on a black screen. If you're going by the tutorial for RPGs, zihals i think, then you're prolly missing the icon_state = gender at login. That's just what I remember from when I was a noob. That messed me up back then.
|
Ethan5078 wrote:
BYOND Version: 3.5 beta 5 > Does the problem occur:every time Maybe you didn't check the little box next to the map file? :P |
Mysame wrote:
> mob/Login() You don't need both ..() and src.loc=locate(1,1,1), as that is a bit redundant. One or the other will do. In mob/Login, all ..() does is to locate the mob on the map and set client.statobj to src. mob/Login() That is the default Login function. As you can see, if you are giving the mob a location manually, especially if you are doing it after you call ..(), you are only creating extra work that could be avoided. In that case, you can use the line client.statobj=src instead of ..() in your Login. |
Have you put anything in Login()? If you've changed Login(), but didn't add a ..() at the end, it will not place your mob on the map (and thus, you won't see it)