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

24 lines
624 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName convers_nymphrn
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 3/22/2003 7:19:18 AM
//:://////////////////////////////////////////////
#include "prc_inc_spells"
int StartingConditional()
{
// Restrict based on the player's class
int iPassed = 0;
if(GetLevelByClass(CLASS_TYPE_RANGER, GetPCSpeaker()) >= 1)
iPassed = 1;
if(GetLevelByClass(CLASS_TYPE_TOTEMIST, GetPCSpeaker()) >= 1)
iPassed = 1;
if(iPassed == 0)
return FALSE;
return TRUE;
}