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.
24 lines
675 B
Plaintext
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;
|
|
|
|
}
|