Initial commit
Initial commit. Updated release archive.
This commit is contained in:
18
_module/nss/qst_c_mq.nss
Normal file
18
_module/nss/qst_c_mq.nss
Normal file
@@ -0,0 +1,18 @@
|
||||
int StartingConditional()
|
||||
{
|
||||
int iResult;
|
||||
int iQType;
|
||||
int iNPC;
|
||||
int iMQ;
|
||||
|
||||
iResult = FALSE;
|
||||
|
||||
iQType = GetLocalInt(OBJECT_SELF,"QuestType");
|
||||
iNPC = GetLocalInt(OBJECT_SELF,"QuestNPCNumber");
|
||||
iMQ = GetLocalInt(GetModule(),"MainQuest");
|
||||
|
||||
if (iQType == 1 && iMQ+1 < iNPC)
|
||||
iResult=TRUE;
|
||||
|
||||
return iResult;
|
||||
}
|
||||
Reference in New Issue
Block a user