View Single Post
  #22  
Old 12-15-2005, 12:04 AM
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
Either you remove the attachoffset = line (it will use the current difference to the player position then), or you set attachoffset to a good value. So either this
PHP Code:
with (findimg(200)) {
  
playerx 1.5;
  
playery 1.5;
  
playerz;
  
attachtoowner true;

or this
PHP Code:
with (findimg(200)) {
  
attachtoowner true;
  
attachoffset = {1.5,1.5,0}; 

The second is the preferred method.
Reply With Quote