View Single Post
  #6  
Old 01-29-2005, 04:52 PM
Malinko Malinko is offline
Unholy Nation
Join Date: Mar 2004
Location: Massachusetts, U.S.A.
Posts: 1,782
Malinko is on a distinguished road
Send a message via AIM to Malinko
Well if you do:
NPC Code:

//#CLIENTSIDE
if (created) {
setshape2 3,3,{
3,3,3,
3,3,3,
3,3,3;
}
}



Then you can select the NPC.

Though, if you do:
NPC Code:

//#CLIENTSIDE
if (created) {
setshape2 3,3,{
3,3,
3,3,
3,3;
}
}


Then you can't select the NPC, because you didn't really fill in the width and height.

Don't know if that makes sense on how I explained it, but try it, and you will see.
Reply With Quote