forked from Jaysyn/PRC8
Updated Release Archive
Updated Release Archive. Fixed Mage-killer prereqs. Removed old LETO & ConvoCC related files. Added organized spell scroll store. Fixed Gloura spellbook. Various TLK fixes. Reorganized Repo. Removed invalid user folders. Added DocGen back in.
This commit is contained in:
24
nwn/trunk/scripts/dynconv_rep3_w.nss
Normal file
24
nwn/trunk/scripts/dynconv_rep3_w.nss
Normal file
@@ -0,0 +1,24 @@
|
||||
//:://////////////////////////////////////////////
|
||||
//:: Dynamic Conversation
|
||||
//:: dynconv_rep3_w
|
||||
//:://////////////////////////////////////////////
|
||||
/** @file
|
||||
Checks that there is a valid option for
|
||||
conversation choice 3.
|
||||
|
||||
@author Primogenitor
|
||||
*/
|
||||
//:://////////////////////////////////////////////
|
||||
//:://////////////////////////////////////////////
|
||||
|
||||
#include "inc_dynconv"
|
||||
|
||||
|
||||
int StartingConditional()
|
||||
{
|
||||
object oPC = GetPCSpeaker();
|
||||
if(GetLocalString(oPC, GetTokenIDString(DYNCONV_TOKEN_REPLY_3)) == "")
|
||||
return FALSE;
|
||||
else
|
||||
return TRUE;
|
||||
}
|
||||
Reference in New Issue
Block a user