generated from Jaysyn/ModuleTemplate
23 lines
712 B
Plaintext
23 lines
712 B
Plaintext
/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
|
Forsettii's Quest Builder System.
|
|
Version 1.0
|
|
Created for Layonara Online
|
|
Forsettii Forsettii@yahoo.com
|
|
April 7, 2004
|
|
Checks for Variable #7
|
|
Variables: Quest_Name - Same as Journal Entry
|
|
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= */
|
|
int StartingConditional()
|
|
{
|
|
|
|
string sName = GetLocalString(OBJECT_SELF, "quest_name");
|
|
object oPC = GetPCSpeaker();
|
|
|
|
// Inspect local variables
|
|
if(!(GetLocalInt(oPC, sName) == 7))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
|
|
}
|