View Single Post
  #8  
Old 12-01-2007, 01:29 PM
Admins Admins is offline
Graal Administration
Join Date: Jan 2000
Location: Admins
Posts: 11,693
Admins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud of
It's working fine, it's copying the look of the object where it is attached to, and it's enabled by default. It wont work in GUI, you have to copy the attributes of the player you want to display.

PHP Code:
playerlook false;
actor.head player.head;
actor.body player.body;
for (
i=1i<=30i++)
  
actor.attr[i] = player.attr[i];
for (
i=0i<5i++)
  
actor.colors[i] = player.colors[i]; 
Reply With Quote