View Single Post
  #1  
Old 10-24-2005, 08:41 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
dynamic setshapes

1. you setshape
2. you can't change the shape, unless
3. you set it a width or height to 0, in which case
4. you can't set it back.

NPC Code:

//#CLIENTSIDE
function onCreated() {
setshape 1,32,32;
}
function onPlayerTouchsMe() {
setshape 1,0,64;
}
function onPlayerChats() {
setshape 1,64,64;
}

Reply With Quote