ID:140507
 
Code:
turf/New
density = 1
Click()
switch(input("What gender are you?", "Gender") in list ("Male","Female","Cancel"))
if("Male")
switch(input("Are you sure your male?", "Gender") in list ("Yes","Cancel"))
if("Yes")
usr.client.view=6
usr.cansave=1
usr.pokemon=1
usr.sex="Male"
usr.name="[usr.key]"
switch(input("Wich Pokemon do you wish to be?", "Pokemon") in list ("Turtwig","Chimchar","Piplup","Eevee","Gligar","Gible","Skorupi","Shellos","Cancel"))
if("Turtwig")
usr.icon='Pokemon.dmi'
usr.icon_state="Turtwig"
usr.Clan="Grass"
usr<<"You chose Turtwig!"
usr.pokemonname="Turtwig"

I just pulled that part out of the code. I have the rest of the choices and gender choice coded in.

Problem description:
Ok, so only in this login case, the Click() proc won't work. I was trying other codes with using Click() and they worked perfectly fine. When I click this nothing will happen. It worked before the BYOND update but it doesn't now. I've read another post with the same problem but I still kinda need help on finding out how to fix this.
The turf is being obscured by something else, or the turf has nothing to click on, or the turf does not actually exist as you've replaced it with another turf. To fix this, set the mouse_opacity to whatever is covering this turf to 0, set the mouse_opacity to this turf to 2, and make sure you actually have this turf on the map at all.

You could also try searching the forum as this question has been asked a million times as there are a million people copying each other's terrible practices and lack of understanding leading to this same problem a million times.
In response to Garthor
Well, now all of the sudden, when I add in the turf/New it looks like the login image and deleted the bottom. Before it wasn't happening and what do I do since now there is only 1 turf?
In response to Rayquaza1903
There has always been one turf. It was a mind-numbingly stupid idea to ever make it seem like there could be more than one turf. What was always happening is that, if the previous turf could be seen through the new turf, the previous turf's icon was added to the new turf's underlays.

That's it.

To do this now, you have to hold control when placing the new turf.
In response to Garthor
Err. When I do that, it deletes the turf under and doesn't appear there. I am using Control with clicking it.
In response to Garthor
Nvm, I tried this a little differently since it was 1 turf and i got it so thanks.
In response to Rayquaza1903
I had a similar problem, did you add in any layers to anything?