WoR_PRC8/_module/nss/s_isnotmonkfight.nss

18 lines
538 B
Plaintext
Raw Permalink Normal View History

2025-04-03 11:49:34 -04:00
//::///////////////////////////////////////////////
//:: FileName s_isnotbardorcle
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 3/5/2005 6:29:47 PM
//:://////////////////////////////////////////////
int StartingConditional()
{
// Restrict based on the player's class
int class = GetClassByPosition(1, GetPCSpeaker());
if(class != CLASS_TYPE_MONK && class != CLASS_TYPE_FIGHTER)
return TRUE;
return FALSE;
}