RoT2_PRC8/_module/nss/bill_open_door.nss
Jaysyn904 499aba4eb3 Initial upload
Initial upload
2023-09-25 18:13:22 -04:00

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();
}