View Single Post
  #8  
Old 05-07-2011, 11:33 PM
joligario's Avatar
joligario
Developer
 
Join Date: Mar 2003
Posts: 1,498
Default

There are 4 options for $client->MovePC(): (note, this is case sensitive)

Option 1: (5 arguments, using zone short name, not instanced)
$client->MovePC("zonename", x, y, z, h);

Option 2: (5 arguments, using zone id, not instanced)
$client->MovePC(zoneID, x, y, z, h);

Option 3: (4 arguments, using no zone info, not instanced)
$client->MovePC(x, y, z, h);

Option 4: (6 arguments, using zone id, instanced)
$client->MovePC(zoneID, instanceID, x, y, z, h);
Reply With Quote