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

22 lines
629 B
Plaintext

/////////////////////////////////////////////
// Vampire Experience
//////////////////////////////////////////////
void fnGiveVampXP(object oPC,int nAmount)
{
int nXP=GetLocalInt(oPC,"nVampireXP");
string sMsg="Your vampire class made "+IntToString(nAmount)+" experience bringing your total to ";
nXP=nXP+nAmount;
sMsg=sMsg+IntToString(nXP)+" and your level is ";
SetLocalInt(oPC,"nVampireXP",nXP);
nXP=1+(nXP/5000);
if (nXP>4) sMsg=sMsg+"5 [Maximum Vampire Level].";
else { sMsg=sMsg+IntToString(nXP)+".";}
SendMessageToPC(oPC,sMsg);
}
int fnGetVampXP(object oPC)
{
return GetLocalInt(oPC,"nVampireXP");
}