Shargast_PRC8/_module/Chapter 2/nss/death_at_rcvry.nss
Jaysyn904 66a0a3e043 Initial commit
Initial commit.
2024-08-03 14:13:18 -04:00

34 lines
967 B
Plaintext

//::///////////////////////////////////////////////
//:: Death healer action taken
//:: death_at_rcvry
//:://////////////////////////////////////////////
/*
*/
//:://////////////////////////////////////////////
//:: Created By: Dauvis
//:: Created On: 6/27/03
//::
//:: This method sets the custom token for the conversation
//:: when the player asks for recover.
//:://////////////////////////////////////////////
#include "death_include"
void main()
{
object oPlayer = GetPCSpeaker();
// get the gold cost
int iGold = GetCampaignInt(dhDeathGetDatabaseName(oPlayer), "iExpBuyBackCost", oPlayer);
SetCustomToken(1000, IntToString(iGold));
// get the recoverable exp
int iExp = GetCampaignInt(dhDeathGetDatabaseName(oPlayer), "iRecoverableExp", oPlayer);
SetCustomToken(1001, IntToString(iExp));
// remove the death flag for good measure
SetCampaignInt(dhDeathGetDatabaseName(oPlayer), "iDeathFlag", FALSE, oPlayer);
}