PRC8/nwn/nwnprc/trunk/scripts/dynconv_rep5_w.nss
Jaysyn904 d87fe14826 Further file organization
Further file organization
2023-08-23 22:11:00 -04:00

25 lines
576 B
Plaintext

//:://////////////////////////////////////////////
//:: Dynamic Conversation
//:: dynconv_rep5_w
//:://////////////////////////////////////////////
/** @file
Checks that there is a valid option for
conversation choice 5.
@author Primogenitor
*/
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
#include "inc_dynconv"
int StartingConditional()
{
object oPC = GetPCSpeaker();
if(GetLocalString(oPC, GetTokenIDString(DYNCONV_TOKEN_REPLY_5)) == "")
return FALSE;
else
return TRUE;
}