Amon_PRC8/_module/nss/xp_deposit_all.nss

20 lines
402 B
Plaintext
Raw Permalink Normal View History

2025-04-03 19:00:46 -04:00
#include "xp_inc"
void main()
{
object oPC = GetPCSpeaker();
if (GetHitDice(oPC) >= lvl)
{
string sCDKey = GetPCPublicCDKey( oPC);
int XP = GetCampaignInt( "XP", sCDKey) + (GetXP( oPC) /fraction);
SetCampaignInt( "XP", sCDKey, XP);
string sXP = IntToString((GetXP( oPC) /fraction));
SpeakString ("You have deposited " + sXP + " XP");
SetXP (oPC, 1);
}
else
{
SpeakString(sNO);
}
}