13 lines
174 B
Plaintext
Raw Normal View History

2023-09-25 20:24:01 -04:00
#include "nw_i0_tool"
int StartingConditional()
{
object oPC = GetPCSpeaker();
int oGold = GetGold(oPC);
int oMin = 1000 * (GetHitDice(oPC));
return oGold <= oMin;
}