PRC8/trunk/psionics/psi_ac_conv_sm_b.nss
Jaysyn904 1662218bb4 Initial upload.
Adding base PRC 4.19a files to repository.
2022-10-07 13:51:24 -04:00

13 lines
324 B
Plaintext

// Determines whether there are enough empty slots left to show Menu B
#include "psi_inc_ac_const"
#include "psi_inc_ac_convo"
int StartingConditional()
{
object oPC = GetPCSpeaker();
return (GetMaxSlotsForLevel(GetLocalInt(oPC, ASTRAL_CONSTRUCT_LEVEL + EDIT), oPC) - GetTotalNumberOfSlotsUsed(oPC)) >= MENU_B_COST;
}