View Single Post
  #4  
Old 09-03-2010, 11:31 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
Quote:
Originally Posted by Cubical View Post
PHP Code:
player.attr[1] = "hatimg.png"
edit:
PHP Code:
//#CLIENTSIDE
function onCreated(){
  
player.attr[1] = "hatimg.png";

Should be

PHP Code:
function onCreated() {
  
this.attr[1] = "hatimg.png";

Note 'this.' and not 'player.'
__________________
Reply With Quote