Thread: Class question
View Single Post
  #7  
Old 11-08-2006, 11:47 PM
KuJi KuJi is offline
Banned
Join Date: Apr 2004
Location: Staten Island, New York
Posts: 2,202
KuJi will become famous soon enough
Send a message via ICQ to KuJi Send a message via AIM to KuJi Send a message via MSN to KuJi Send a message via Yahoo to KuJi
Example:

Local NPC:
PHP Code:
function onCreated()
{
  
join("door");

Class NPC:
PHP Code:
function onCreated()
{
  
setimg("door.png");
  
setshape(13248);
}

function 
onPlayerTouchsMe()
{
  
hide();
  
sleep(3);
  
show();

^ Should work fine ^
Reply With Quote