20 lines
488 B
Plaintext
20 lines
488 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: 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 * 150;
|
|
|
|
return oGold >= oCost;
|
|
}
|
|
|