2025/12/14 Late Update

Moved Hidden Talent a from a masterfeat to a dynamic conversation.
Updated PRC8 version number.
This commit is contained in:
Jaysyn904
2025-12-14 22:31:30 -05:00
parent 3ebdc0ba62
commit 5f749871cd
12 changed files with 657 additions and 185 deletions

View File

@@ -60,7 +60,14 @@ void main()
ExecuteScript("prc_vassal_treas", oPC);
ExecuteScript("tob_evnt_recover", oPC);
ExecuteScript("moi_wchb_royal", oPC);
// Handle Hidden Talent
if(GetHasFeat(FEAT_HIDDEN_TALENT, oPC) && !GetPersistantLocalInt(oPC, "HiddenTalentChosen"))
{
// Trigger Hidden Talent power selection conversation
AssignCommand(oPC, ActionStartConversation(oPC, "hidden_talent_cv", TRUE, FALSE));
}
// Execute scripts hooked to this event for the player triggering it
ExecuteAllScriptsHookedToEvent(oPC, EVENT_ONPLAYERLEVELUP);
if(DEBUG) DoDebug("prc_levelup: Exiting");