PARTY_NODE_X

CWolf

First time out of the vault
I am trying to get Miria to be able to be dropped and told to wait.

In doing so I was browsing through Vic's script for ideas on how to get this done when I saw a few references to 'call PARTY_NODE_X'.

I looked through the script and found no node called X or PARTY_NODE_X. What does this do?
 
From the script:

Code:
#define PARTY_NODE_X                      Node110

....

procedure Node110 begin
   if (party_healed_bad) then begin
      Reply(random(2700, 2701) + Lenny_In_Party);
   end else if (party_is_waiting) then begin
      Reply_Rand(2800, 2808 + Sulik_In_Party);
   end else begin
      Reply_Rand(2600, 2605);
   end
   vic_party_member_options;
end
 
Back
Top