19 lines
387 B
Plaintext
19 lines
387 B
Plaintext
#include "x4_inc_functions"
|
|
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
|
|
if (GetIsDM(oPC) == TRUE) return TRUE;
|
|
|
|
string sAuth = DBAccountSpecificVariable(oPC, "Auth");
|
|
|
|
object oModule = GetModule();
|
|
string sDB = GetLocalString(oModule, "DB");
|
|
|
|
// Check a variable.
|
|
if ( GetCampaignInt(sDB, sAuth) != 0 )
|
|
return TRUE;
|
|
|
|
return FALSE;
|
|
}
|