View Single Post
  #3  
Old 11-11-2006, 09:15 PM
Novo Novo is offline
[TServerDeveloper]
Join Date: Jun 2006
Posts: 448
Novo will become famous soon enough
Quote:
Originally Posted by Stefan View Post
Eventually it doesn't work because the gui-control is not really connected to the player, it should not be hard to copy the player-attributes manually though like

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]; 
I know, however... If the attributes changes, the GuiShowImgCtrl doesn't change with it... That's the more complicated part.
Reply With Quote