23 lines
400 B
Plaintext
23 lines
400 B
Plaintext
|
/* Script generated by
|
||
|
Lilac Soul's NWN Script Generator, v. 1.5
|
||
|
|
||
|
For download info, please visit:
|
||
|
http://www.lilacsoul.revility.com */
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
if (GetDeity(oPC) == "Hecate") return TRUE;
|
||
|
|
||
|
if (GetDeity(oPC) == "Hermes") return TRUE;
|
||
|
|
||
|
if (GetDeity(oPC) == "Mithras") return TRUE;
|
||
|
|
||
|
if (GetDeity(oPC) == "Asherah") return TRUE;
|
||
|
|
||
|
|
||
|
return FALSE;
|
||
|
}
|
||
|
|