PoA_PRC8/_module/nss/ratcheck.nss

12 lines
199 B
Plaintext
Raw Normal View History

2022-10-07 14:20:31 -04:00
// 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;
}