10 lines
265 B
Plaintext
10 lines
265 B
Plaintext
|
void main()
|
||
|
{
|
||
|
ActionPauseConversation();
|
||
|
ActionOpenDoor(GetObjectByTag("skeletondoor"));
|
||
|
object oExample_Object= GetWaypointByTag("WP_Bill");
|
||
|
ActionMoveToObject(oExample_Object);
|
||
|
ActionDoCommand(SetFacing(GetFacing(oExample_Object)));
|
||
|
ActionResumeConversation();
|
||
|
}
|