During update, add quest potion perks (2.0.12 hotfix 1)
This commit is contained in:
parent
d4c94e1877
commit
b0e6578aba
Binary file not shown.
@ -1,7 +1,7 @@
|
|||||||
Scriptname _00E_PlayerSetUpScript extends ObjectReference
|
Scriptname _00E_PlayerSetUpScript extends ObjectReference
|
||||||
{Initializes all the necessary Quests, maintains the player, contains various OnPlayerLoadGame() failsafes. This script is important for proper updating, do not overwrite it.}
|
{Initializes all the necessary Quests, maintains the player, contains various OnPlayerLoadGame() failsafes. This script is important for proper updating, do not overwrite it.}
|
||||||
|
|
||||||
Float Property CURRENT_PATCH_VERSION = 2.12 AutoReadOnly
|
Float Property CURRENT_PATCH_VERSION = 2.121 AutoReadOnly
|
||||||
|
|
||||||
|
|
||||||
;=====================================================================================
|
;=====================================================================================
|
||||||
@ -170,6 +170,17 @@ Function Update_212()
|
|||||||
PlayerREF.AddPerk(Game.GetFormFromFile(0x14CF9, "Enderal - Forgotten Stories.esm") as Perk) ; _00E_SE_2_0_12_UpgradePerk
|
PlayerREF.AddPerk(Game.GetFormFromFile(0x14CF9, "Enderal - Forgotten Stories.esm") as Perk) ; _00E_SE_2_0_12_UpgradePerk
|
||||||
EndFunction
|
EndFunction
|
||||||
|
|
||||||
|
Function Update_212_hotfix1()
|
||||||
|
Quest rNQ05 = Game.GetFormFromFile(0x1C82F, "Enderal - Forgotten Stories.esm") as Quest
|
||||||
|
if rNQ05.GetCurrentStageID() >= 30 && rNQ05.GetCurrentStageID() < 40
|
||||||
|
PlayerREF.AddPerk(Game.GetFormFromFile(0x14CF6, "Enderal - Forgotten Stories.esm") as Perk) ; _00E_FS_NQ05_CraftPotionPerk
|
||||||
|
endif
|
||||||
|
Quest rNQ07 = Game.GetFormFromFile(0x1CA09, "Enderal - Forgotten Stories.esm") as Quest
|
||||||
|
if rNQ07.GetCurrentStageID() == 115
|
||||||
|
PlayerREF.AddPerk(Game.GetFormFromFile(0x14CF7, "Enderal - Forgotten Stories.esm") as Perk) ; _00E_FS_NQ07_CraftPotionPerk
|
||||||
|
endif
|
||||||
|
EndFunction
|
||||||
|
|
||||||
|
|
||||||
;=====================================================================================
|
;=====================================================================================
|
||||||
; ALL UPDATES
|
; ALL UPDATES
|
||||||
@ -267,6 +278,9 @@ Function Maintenance()
|
|||||||
If fPatchVersion < 2.12
|
If fPatchVersion < 2.12
|
||||||
Update_212()
|
Update_212()
|
||||||
EndIf
|
EndIf
|
||||||
|
If fPatchVersion < 2.121
|
||||||
|
Update_212_hotfix1()
|
||||||
|
EndIf
|
||||||
fPatchVersion = CURRENT_PATCH_VERSION
|
fPatchVersion = CURRENT_PATCH_VERSION
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user