PoA_PRC8/_module/nss/priestgoldcheck2.nss

20 lines
488 B
Plaintext
Raw Permalink Normal View History

2022-10-07 14:20:31 -04:00
//::///////////////////////////////////////////////
//:: FileName beetlejuice
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 8/13/2002 12:14:41 PM
//:://////////////////////////////////////////////
#include "nw_i0_tool"
int StartingConditional()
{
object oPC = GetPCSpeaker();
int oGold = GetGold(oPC);
int oHD = GetHitDice(oPC);
int oCost = oHD * 200;
return oGold >= oCost;
}