13 lines
174 B
Plaintext
13 lines
174 B
Plaintext
|
|
#include "nw_i0_tool"
|
|
|
|
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
int oGold = GetGold(oPC);
|
|
int oMin = 1000 * (GetHitDice(oPC));
|
|
|
|
return oGold <= oMin;
|
|
}
|
|
|