View Single Post
  #5  
Old 01-14-2009, 01:57 AM
johny023 johny023 is offline
Registered User
Join Date: Dec 2006
Posts: 36
johny023 is on a distinguished road
Quote:
Originally Posted by cbk1994 View Post
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 
i tried both of those, but neither of them worked, do i need to put them in a specific place in the notepad?
Reply With Quote