int StartingConditional()
{
object oPC = GetPCSpeaker();
int nGold = GetHitDice(oPC) * 500;

if (GetGold(oPC) >nGold) return FALSE;

return TRUE;
}