View Single Post
  #2  
Old 01-12-2009, 11:35 PM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
In the GANI, add (edit with Notepad):

PHP Code:
SCRIPT
//#CLIENTSIDE
if (created || playerenters) {
  
setshape 1WIDTH_OF_IMAGEHEIGHT_OF_IMAGE;
}
SCRIPTEND 
Or if you don't need it to work offline,

PHP Code:
SCRIPT
//#CLIENTSIDE
function onCreated() {
  
setshape(1WIDTH_OF_IMAGEHEIGHT_OF_IMAGE);
}
function 
onPlayerEnters() {
  
onCreated();
}
SCRIPTEND 
__________________
Reply With Quote