Fixed Thrall of Grazzt not getting a marker feat

Fixed Thrall of Grazzt not getting a marker feat.  Fixed TLK error with Elemental Savant marker feat.  Added grey elf to Racial IP list for Elves.  Updated release archive.

All @Barmlot: Added Empty Vessel race.  Fixed Necropolitian name/tlk.  Fixed Incarnum Blade meldshaping.  Fixed Hybsil's Pass Without Trace.  Fixed Kalashtar's Skill Affinity: Persuade.  Fixed missing Marrutact Howl.  Added Immunity to Sleep to Mongrelfolk & removed Charm Animal.  (thanks @barmlot!)
This commit is contained in:
Jaysyn904
2024-10-22 10:09:54 -04:00
parent 50f3cd7c0a
commit 53149108fe
24 changed files with 25164 additions and 25042 deletions

View File

@@ -378,6 +378,13 @@ void main()
nStage = STAGE_SELECT_MELD; // We've got another class to go
else // We've finished everything
{
// And we're all done
if (GetLevelByClass(CLASS_TYPE_INCARNUM_BLADE, oMeldshaper))
{
DelayCommand(0.5, AssignCommand(oMeldshaper, ClearAllActions(TRUE)));
StartDynamicConversation("moi_iblade_bind", oMeldshaper, DYNCONV_EXIT_NOT_ALLOWED, FALSE, TRUE, oMeldshaper);
}
DeleteLocalInt(oMeldshaper, "FirstMeldDone");
DeleteLocalInt(oMeldshaper, "SecondMeldDone");
DeleteLocalInt(oMeldshaper, "ThirdMeldDone");

View File

@@ -69,7 +69,10 @@ void main()
}
else if(nEvent == EVENT_ONPLAYERREST_FINISHED)
{
AssignCommand(oMeldshaper, ClearAllActions(TRUE));
StartDynamicConversation("moi_iblade_bind", oMeldshaper, DYNCONV_EXIT_NOT_ALLOWED, FALSE, TRUE, oMeldshaper);
if(GetHighestMeldshaperLevel(oMeldshaper) == 0)
{
AssignCommand(oMeldshaper, ClearAllActions(TRUE));
StartDynamicConversation("moi_iblade_bind", oMeldshaper, DYNCONV_EXIT_NOT_ALLOWED, FALSE, TRUE, oMeldshaper);
}
}
}