Files
PRC8/nwn/nwnprc/trunk/newspellbook/moi_inc_rapid.nss
Jaysyn904 5ea23cb0aa May Day Update
Fixed Expanded Incarnum Capacity II-V to require the previous feat as a prereq.
Fixed bonus feats granted by soulmelds to be removed when rebinding.
2026-05-01 14:58:32 -04:00

31 lines
1.0 KiB
Plaintext

#include "moi_inc_moifunc"
#include "inc_dynconv"
// Stage constant for Rapid Meldshaping
const int STAGE_SELECT_UNSHAPE_MELD = 3;
void main()
{
object oMeldshaper = OBJECT_SELF;
if (GetLocalInt(oMeldshaper, "PerfectMeldshaper")) return;
AssignCommand(oMeldshaper, ClearAllActions(TRUE));
SetLocalInt(oMeldshaper, "RapidMeldshaping", GetSpellId());
// Set the initial stage for unshape selection
SetStage(STAGE_SELECT_UNSHAPE_MELD, oMeldshaper);
StartDynamicConversation("moi_inc_rpdcnv", oMeldshaper, DYNCONV_EXIT_NOT_ALLOWED, FALSE, TRUE, oMeldshaper);
}
/* #include "moi_inc_moifunc"
#include "inc_dynconv"
void main()
{
object oMeldshaper = OBJECT_SELF;
if (GetLocalInt(oMeldshaper, "PerfectMeldshaper")) return;
AssignCommand(oMeldshaper, ClearAllActions(TRUE));
SetLocalInt(oMeldshaper, "RapidMeldshaping", GetSpellId());
StartDynamicConversation("moi_inc_rpdcnv", oMeldshaper, DYNCONV_EXIT_NOT_ALLOWED, FALSE, TRUE, oMeldshaper);
} */