ID:161589
 
1) I have 3 turfs on top of each other when u do a specific something to 1 of the turfs it del src but for some reason it deletes all 3 turfs how can this be fixed to where it doesnt delete the other 2 turfs

2)why when my person is walking west the 1 turf i have there cuts off half his legs but then in the picture where hes still or moving in any other direction it doesnt do that

3)how do you make a verb hidden to where if your thats character it gives u that verb cuz mine doesnt work
mob
var
char1 = 0
char2 = 0
turf
choosechar1
DblClick()
usr.char1 = 1
// this is where i add the verbs and i dont want those verbs to be visable unless char1 = 1
probably bad way of doing it, but it's an example:
1st question:
var/turf/deleteme/T

turf
deleteme
Entered()
del(T)

SadoSoldier wrote:
1) I have 3 turfs on top of each other [...]

That's because there can only be 1 turf on a tile. In the map editor, when you try to put another turf that doesn't have a full 32x32 icon on an existing turf, it combines their icons together, but there is still only one turf there.

2)why when my person is walking west the 1 turf i have there cuts off half his legs but then in the picture where hes still or moving in any other direction it doesnt do that

What? Can you try to describe it better?

3)how do you make a verb hidden to where if your thats character it gives u that verb cuz mine doesnt work

What? Can you express yourself better and use proper English, please? Though, you probably need to look up the 'verbs' list and use it.
SadoSoldier wrote:
1) I have 3 turfs on top of each other when u do a specific something to 1 of the turfs it del src but for some reason it deletes all 3 turfs how can this be fixed to where it doesnt delete the other 2 turfs

You cannot have 3 turfs on top of each other. When you place turfs on top of one another in the map editor, if the new turf has any transparencies through which you can see the old turf, the old turf's icon gets added to the new turf's underlays. The old turf is gone no matter what, however. Use objs instead.

2)why when my person is walking west the 1 turf i have there cuts off half his legs but then in the picture where hes still or moving in any other direction it doesnt do that

Possibly because you've screwed with the layer variable so horribly that it's bugged out. Or something else, your description is impossible to decipher.

3)how do you make a verb hidden to where if your thats character it gives u that verb cuz mine doesnt work
mob
var
char1 = 0
char2 = 0
turf
choosechar1
DblClick()
usr.char1 = 1
// this is where i add the verbs and i dont want those verbs to be visable unless char1 = 1

Remove the verbs from the verbs list of players who shouldn't have the verbs, and add them to the verbs list of players who should have the verbs. verb settings cannot be changed at runtime. Also: hidden doesn't mean unusable.