HoS_PRC8/_mod/_module/nss/vamp_ck_cund.nss
Jaysyn904 04165202c0 Initial upload
Initial upload
2024-11-25 19:36:07 -05:00

14 lines
374 B
Plaintext

// vamp_ck_cund
#include "prc_inc_racial"
int StartingConditional()
{
object oPC=GetPCSpeaker();
int nXP=GetLocalInt(oPC,"nVampireXP");
int nLevel=1+(nXP/5000);
int nBlood=GetLocalInt(oPC,"nBloodPool");
object oTarget=GetLocalObject(oPC,"oTarget");
if (nBlood>39&&nLevel>1&&MyPRCGetRacialType(oTarget)==RACIAL_TYPE_UNDEAD) return TRUE;
return FALSE;
}