Hey people, I'm at the last stage of my mod and i need one more thing.
I need a script that will make a dialog node disappear once Bao-Dur has added to the list of available party members.
Thanks in advance.
Master Z, just use that same script from the other thread (
http://www.lucasforums.com/showthread.php?t=179688) as a conditional but put a check in the "Not" checkbox in DLGEditor.
Ohhh, thanks Tk i really am losing my mind these past few days.
I seem to be having a problem with the script though when compiling i get this error:
Compiling: c_chk_baodur.nss
c_chk_baodur.nss(2): Error: Undeclared identifier "IsAvailableNPC"
c_chk_baodur.nss(3): Error: Not all paths return a value
Compilation aborted with errors
Total Execution time = 78 ms
Any clues?
:o A typo in nwscript.nss!!!
// 696. IsAvailableNPC
// This returns whether a NPC is in the list of available party members
int IsAvailableCreature( int nNPC );
It says IsAvailableNPC but it is declared as IsAvailableCreature!
try this:int StartingConditional() {
return IsAvailableCreature(NPC_BAO_DUR);
}
Lol, it seems there are a few of those, thanks TK, ill just test out the mod now :D