
08-12-2002, 11:21 PM
|
|
Banned
|
Join Date: Aug 2001
Location: Illinois
Posts: 3,498
|
|
Re: setshape2
Quote:
Originally posted by Rogpog
If you completely change the npc characteristics using setshape2 to nonblocking, it becomes unclickable and pretty hard to change or delete. 
NPC Code:
if (created) setshape2 3,3,{0,0,0,0,0,0,0,0,0};
It also seems like type 20 still doesn't have a throw-through attribute (blocks player, but allowing npcs and projectiles through).
NPC Code:
if (created) setshape2 3,3,{20,20,20,20,20,20,20,20,20};
|
it's because for 0, it litterly becomes unblocking, you can move through it but, you CANT click on it
and 20 means you can throw something THROUGH the tiles, it doesn't mean you can walk through them, so if it allows projectiles and NPCs that you have picked up and thrown, then it IS working |
Last edited by Python523; 08-12-2002 at 11:45 PM..
|
|
|