Quote:
Originally Posted by Cubical
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.'