Initial Commit
Initial Commit [v1.32PRC8]
This commit is contained in:
25
_module/nss/qst_overall3_c.nss
Normal file
25
_module/nss/qst_overall3_c.nss
Normal file
@@ -0,0 +1,25 @@
|
||||
#include "rd_misc"
|
||||
#include "utl_i_sqluuid"
|
||||
|
||||
int StartingConditional()
|
||||
{
|
||||
int iQuest;
|
||||
int iOverallQuest;
|
||||
int iResult;
|
||||
int iNotAccepted;
|
||||
string sPrefix;
|
||||
object oPC;
|
||||
|
||||
oPC = GetPCSpeaker();
|
||||
iQuest = GetLocalInt(oPC,"Quest");
|
||||
iOverallQuest = SQLocalsUUID_GetInt(oPC,"OverallQuest");
|
||||
iNotAccepted = GetLocalInt(oPC,"Overall3NotAccepted");
|
||||
sPrefix = GetZone(OBJECT_SELF);
|
||||
|
||||
iResult = FALSE;
|
||||
|
||||
if (iQuest == 0 && iOverallQuest == 111 && iNotAccepted == 0 && sPrefix == "IP1")
|
||||
iResult = TRUE;
|
||||
|
||||
return iResult;
|
||||
}
|
Reference in New Issue
Block a user