View Single Post
  #5  
Old 04-19-2006, 02:50 AM
jake13jake jake13jake is offline
Former Classic Staff
jake13jake's Avatar
Join Date: Dec 2002
Location: Northwest Vermont
Posts: 1,452
jake13jake will become famous soon enough
Try making the ladders NPCs, and then having the system detect the NPCs.

ex.
ladder
PHP Code:
function onCreated() {
  
setshape(1,16*width,16*height);
  
this.isLadder true;
}

-----
system NPC function for testing ladders
function testLadder() {
  
temp.tnpcs findareanpcs(x,y,w,h);
  for (
i=0i<temp.tnpcs.size(); i++)
    if (
temp.tnpcs[i].isladder)
      return 
true;
  return 
false;

Reply With Quote