12 lines
199 B
Plaintext
12 lines
199 B
Plaintext
|
// starting condition is met if player is less than 4th level.
|
||
|
#include "nw_i0_tool"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
int oGold = GetHitDice(oPC);
|
||
|
|
||
|
return oGold <= 3;
|
||
|
}
|
||
|
|