When you do your tile get you need to specify which layer.
Here's a sub out of the "XIIxOveR's Super Stuff" script:
sub TileStuff
set %x #charposx
set %y #charposy
tile init
tile cnt %x %y
for %tcnt 1 #tilecnt
{
tile get %x %y %tcnt
display Tile Information: , %x , x , %y , x , #tilez , #spc , Layer: , %tcnt , #spc , Type: , #Tiletype , #spc , Name: , #tilename , #spc , Kind: , #ltargetkind
}
}
return
One of the things you have to keep in mind about tiles is that they come in layers, that is the reason for MW's and my use of "tile cnt" and the for statements with #tilecnt. This will cycle through each layer of the tile and give the information for all of the layers, not just one.
Hope this helps m8.
X