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.
This commit is contained in:
Jaysyn904
2026-05-01 14:58:32 -04:00
parent cbe3c42814
commit 5ea23cb0aa
19 changed files with 865 additions and 45 deletions

View File

@@ -1,4 +1,23 @@
#include "moi_inc_moifunc"
#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()
@@ -8,4 +27,4 @@ void main()
AssignCommand(oMeldshaper, ClearAllActions(TRUE));
SetLocalInt(oMeldshaper, "RapidMeldshaping", GetSpellId());
StartDynamicConversation("moi_inc_rpdcnv", oMeldshaper, DYNCONV_EXIT_NOT_ALLOWED, FALSE, TRUE, oMeldshaper);
}
} */