ID:162985
 
Code:


Problem description:

everytime I try to play my game everything is just black, my map doesn't show up, my little blue guy doesn't sholw up after the Gender selection, The text saying "Welcome to Rexen" won't appear, nor will any text, and "together we Ride" won't play
The Code part in the post template is there for a reason.
In response to Kaiochao2536
mob
Login()
icon = 'Person.dmi'
switch (input("Gender") in list("Male", "Female"))
if("Male")
icon_state = "Male"
if("Female")
icon_state = "Female"
usr << "Welcome to Rexen!!"
usr << "Together We Ride.mp3"
..()

turf
Grass
icon = 'Grass.dmi'

its not much, I just wanted to test whether my gender code would work and the map would show up : / however the map is gone and the text part is white
In response to PheonixReborn
In Login(), you're only calling ..() if the player is female. The ..() calls the built-in Login() which does some setup on client.eye, the mob's location, etc. Without that setup you won't see the map.

Lummox JR
In response to PheonixReborn
mob
Login()
icon = 'person.dmi'
switch (input("Gender") in list("Male", "Female"))
if("Male")
icon_state = "male"
if("Female")
icon_state = "female"
usr << "Welcome to Rexen!!"
usr << 'Together We Ride.mp3'
..()