Initial Upload

Initial Upload
This commit is contained in:
Jaysyn904
2026-02-25 21:03:41 -05:00
parent f983a50783
commit 4da556c31a
481 changed files with 278622 additions and 271 deletions

View File

@@ -0,0 +1,24 @@
//:://////////////////////////////////////////////
//:: Dynamic Conversation
//:: dynconv_rep4_w
//:://////////////////////////////////////////////
/** @file
Checks that there is a valid option for
conversation choice 4.
@author Primogenitor
*/
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
#include "inc_dynconv"
int StartingConditional()
{
object oPC = GetPCSpeaker();
if(GetLocalString(oPC, GetTokenIDString(DYNCONV_TOKEN_REPLY_4)) == "")
return FALSE;
else
return TRUE;
}