Battledale_PRC8/_module/nss/jw_chck_clcnotch.nss
Jaysyn904 7b9e44ebbb Initial upload
Initial upload.  PRC8 has been added.  Module compiles, PRC's default AI & treasure scripts have been integrated.  Started work on top hak for SLA / Ability / Scripting modifications.
2024-03-11 23:44:08 -04:00

24 lines
675 B
Plaintext

//::///////////////////////////////////////////////
//:: 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;
}