I tried to put it in a gani, but it still only shows if you're in the same level..
Perhaps it's just me?
If anyone could, log on Aetherforge. The gmap should be 2x3. At the very bottom, you won't see the ladder, but you can still climb it. If you jump up the platforms to your right and go over to the ladder, you'll be able to see it since you entered the same level.
PHP Code:
if (created) {
hideimgs(0,100);
for (a = 0; a <= params[0] + 1; a++) {
if (a == 0) {
showimg(a,"tom_ladder3.png",x,y);
}
else if (a == params[0]+1) {
showimg(a,"tom_ladders2.png",x,y+(45/16)+(34/16)*(a-1));
}
else {
showimg(a,"tom_ladder.png",x,y+(45/16)+(34/16)*(a-1));
}
findimg(a).layer = 0;
}
}