Initial Commit

Initial Commit [v1.32PRC8]
This commit is contained in:
Jaysyn904
2025-04-03 13:38:45 -04:00
parent 1213977d8c
commit b464d8da05
6922 changed files with 6176025 additions and 2 deletions

23
_module/nss/qst_false.nss Normal file
View File

@@ -0,0 +1,23 @@
int StartingConditional()
{
int iResult;
SetCustomToken(120,"What do you need?");
SetCustomToken(101,GetLocalString(GetPCSpeaker(),"Token101"));
SetCustomToken(102,GetLocalString(GetPCSpeaker(),"Token102"));
SetCustomToken(103,GetLocalString(GetPCSpeaker(),"Token103"));
SetCustomToken(104,GetLocalString(GetPCSpeaker(),"Token104"));
SetCustomToken(105,GetLocalString(GetPCSpeaker(),"Token105"));
SetCustomToken(106,GetLocalString(GetPCSpeaker(),"Token106"));
SetCustomToken(107,GetLocalString(GetPCSpeaker(),"Token107"));
SetCustomToken(108,GetLocalString(GetPCSpeaker(),"Token108"));
SetCustomToken(110,GetLocalString(GetPCSpeaker(),"Token110"));
if (GetLocalString(GetPCSpeaker(),"Token120") == "")
SetCustomToken(120,"What do you need?");
else
SetCustomToken(120,GetLocalString(GetPCSpeaker(),"Token120"));
iResult = FALSE;
return iResult;
}