Battledale_PRC8/_module/nss/jw_chck_clcnotch.nss

24 lines
675 B
Plaintext
Raw Permalink Normal View History

//::///////////////////////////////////////////////
//:: FileName jw_chck_clcnotch
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 17/08/2002 17:13:21
//:://////////////////////////////////////////////
int StartingConditional()
{
object oPC=GetPCSpeaker();
if (GetClassByPosition(1,oPC)==CLASS_TYPE_CLERIC||GetClassByPosition(2,oPC)==CLASS_TYPE_CLERIC||GetClassByPosition(3,oPC)==CLASS_TYPE_CLERIC)
{
if (GetDeity(oPC)!="chauntea"&&GetDeity(oPC)!="Chauntea")
{
return TRUE;
}
}
return FALSE;
}