WoR_PRC8/_module/nss/s_isnotcleric.nss
Jaysyn904 b5e28e52f4 Initial commit
Initial commit [1.18]
2025-04-03 11:49:34 -04:00

18 lines
502 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName s_iscleric
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 2/28/2005 2:03:00 PM
//:://////////////////////////////////////////////
int StartingConditional()
{
// Restrict based on the player's class
int iPassed = 0;
if(GetClassByPosition(1, GetPCSpeaker()) != CLASS_TYPE_CLERIC)
return TRUE;
return FALSE;
}