Skip to content

Commit

Permalink
2.5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
annakins committed Aug 2, 2024
1 parent 7a4f686 commit de60bf1
Show file tree
Hide file tree
Showing 411 changed files with 1,095 additions and 183 deletions.
Binary file modified Katana.esp
Binary file not shown.
Binary file modified Scripts/AK69CQPlayerScript.pex
Binary file not shown.
Binary file modified Scripts/AK69EasterEggPlayerScript.pex
Binary file not shown.
Binary file added Scripts/AK69LockpickMGEFScript.pex
Binary file not shown.
Binary file modified Scripts/AK69RavensLamentPlayerScript.pex
Binary file not shown.
Binary file modified Scripts/AK69_QF_AK69CarrotQuest_05E02209.pex
Binary file not shown.
Binary file modified Scripts/AK69_QF_AK69SerenataQuest_058BB421.pex
Binary file not shown.
Binary file added Scripts/AK69_SF_AK69NOLockpickScene_0544A0B4.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__0544A0AC.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__0544A0BB.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__0544A0C0.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__054542E0.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__054542E1.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__054635E9.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__054635EA.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__054635EB.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__054686EC.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__054686ED.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__054686EE.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__054686EF.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__054686F0.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__054686F5.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__054686F6.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__054686F7.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__054686F8.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__054686F9.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__054686FA.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__054686FB.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__054686FC.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__054686FD.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__054686FE.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__054686FF.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__05468700.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__05468701.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__05468702.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__05468703.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__05468704.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__05468705.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__05468706.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__0546870D.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__0546870E.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__0546870F.pex
Binary file not shown.
Binary file added Scripts/AK69_TIF__05468710.pex
Binary file not shown.
8 changes: 8 additions & 0 deletions Scripts/Source/AK69CQPlayerScript.psc
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,19 @@ Scriptname AK69CQPlayerScript extends ReferenceAlias
Location Property WhiterunBanneredMareLocation Auto
int Property BanneredMareTime Auto
GlobalVariable Property AK69MegaraRecruitedVar Auto
GlobalVariable Property AK69CappyCarrotTimeVar Auto
GlobalVariable Property GameDaysPassed Auto

Event OnLocationChange(Location akOldLoc, Location akNewLoc)
if (GetOwningQuest().GetStage() == 40) && (akNewLoc == WhiterunBanneredMareLocation) && BanneredMareTime == 0 && AK69MegaraRecruitedVar.GetValue() == 1
GetOwningQuest().SetObjectiveCompleted(40)
GetOwningQuest().SetObjectiveDisplayed(41)
BanneredMareTime = 1
endif
if (GetOwningQuest().GetStage() == 50 && akNewLoc != akOldLoc)
If GameDaysPassed.GetValue() >= AK69CappyCarrotTimeVar.GetValue() && (AK69MegaraRecruitedVar.GetValue() == 1)
GetOwningQuest().SetObjectiveCompleted(50)
GetOwningQuest().SetObjectiveDisplayed(51)
Endif
endif
EndEvent
6 changes: 6 additions & 0 deletions Scripts/Source/AK69EasterEggPlayerScript.psc
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ ObjectReference Property AK69NutBoysSceneTrigger Auto
int Property SolitudeTime Auto
int Property RiftenTime Auto
int Property RiverwoodTime Auto
int Property InnTime Auto

Event OnLocationChange(Location akOldLoc, Location akNewLoc)

Expand All @@ -49,6 +50,11 @@ if (GetOwningQuest().GetStage() == 30) && (akNewLoc != Riften) && RiverwoodTime
RiverwoodTime == 1
endif

if (GetOwningQuest().GetStage() == 60) && (akNewLoc != akOldLoc) && InnTime == 0
Chadryn.MoveTo(AK69ChadrynSleepingGiantInnMarker)
InnTime == 1
endif

if (AK69NutTalkNowVar.GetValue() == 1 && akNewLoc != BanneredMare)
If GameDaysPassed.GetValue() >= AK69NutBoysGoodbyeTimeVar.GetValue()
Azatar.Disable()
Expand Down
33 changes: 33 additions & 0 deletions Scripts/Source/AK69LockpickMGEFScript.psc
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
Scriptname AK69LockpickMGEFScript extends activemagiceffect

Quest property AK69KatanaLockpickQuest auto
ReferenceAlias property UnlockMe auto
Scene Property AK69LockpickScene auto
Scene Property AK69NOLockpickScene auto
Actor property Katana auto

ObjectReference targetobj1

Event OnEffectStart(Actor aktarget, Actor akcaster)
AK69KatanaLockpickQuest.start()
CheckAround()
Katana.EvaluatePackage()
;Debug.Notification ("Lockpick effect started")
EndEvent

Function CheckAround()
UnlockMe.getReference()
targetobj1 = UnlockMe.getReference()
If Katana.GetDistance(UnlockMe.getReference()) <= 700
AK69LockpickScene.Start()
Else
AK69NOLockpickScene.Start()
endif
;Debug.Notification ("Lockpick check + scene")
EndFunction

Event OnEffectFinish(Actor target, Actor caster)
AK69KatanaLockpickQuest.stop()
;Debug.Notification ("Lockpick effect end")
EndEvent

3 changes: 2 additions & 1 deletion Scripts/Source/AK69RavensLamentPlayerScript.psc
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Keyword property LocTypeCity auto
Keyword property LocTypeTown auto
Keyword property LocTypeClearable auto
Keyword property LocTypeDungeon auto
Keyword property LocTypeBanditCamp auto
Location Property RiftenBeeandBarbLocation auto
Location Property IvarsteadVilemyrInnLocation auto

Expand All @@ -42,7 +43,7 @@ Event OnLocationChange(Location akOldLoc, Location akNewLoc)
AK69TheRavensLamentVoiceScene2.Start()
endif
endif
if ((akNewLoc.HasKeyword(LocTypeClearable) || akNewLoc.HasKeyword(LocTypeDungeon)) && GetOwningQuest().GetStage() == 20 && !Game.GetPlayer().IsOnMount())
if ((akNewLoc.HasKeyword(LocTypeClearable) || akNewLoc.HasKeyword(LocTypeDungeon) || akNewLoc.HasKeyword(LocTypeBanditCamp)) && GetOwningQuest().GetStage() == 20 && !Game.GetPlayer().IsOnMount())
if (AK69KatanaRecruited.GetValue() ==1) && (AK69KatanaRelax.GetValue() ==0) && (AK69MegaraRecruited.GetValue() ==1) && (AK69MegaraRelax.GetValue() ==0)
AK69RiverVoiceMarker.GetReference().MoveTo(Game.GetPlayer())
Utility.Wait(0.1)
Expand Down
94 changes: 47 additions & 47 deletions Scripts/Source/AK69_QF_AK69CarrotQuest_05E02209.psc
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,14 @@
;NEXT FRAGMENT INDEX 15
Scriptname AK69_QF_AK69CarrotQuest_05E02209 Extends Quest Hidden

;BEGIN ALIAS PROPERTY Wilmuth
;ALIAS PROPERTY TYPE ReferenceAlias
ReferenceAlias Property Alias_Wilmuth Auto
;END ALIAS PROPERTY

;BEGIN ALIAS PROPERTY Chillfurrow
;BEGIN ALIAS PROPERTY Player
;ALIAS PROPERTY TYPE ReferenceAlias
ReferenceAlias Property Alias_Chillfurrow Auto
ReferenceAlias Property Alias_Player Auto
;END ALIAS PROPERTY

;BEGIN ALIAS PROPERTY Megara
;BEGIN ALIAS PROPERTY Wilmuth
;ALIAS PROPERTY TYPE ReferenceAlias
ReferenceAlias Property Alias_Megara Auto
ReferenceAlias Property Alias_Wilmuth Auto
;END ALIAS PROPERTY

;BEGIN ALIAS PROPERTY Carrot
Expand All @@ -27,16 +22,30 @@ ReferenceAlias Property Alias_Carrot Auto
ReferenceAlias Property Alias_Bannered_Mare Auto
;END ALIAS PROPERTY

;BEGIN ALIAS PROPERTY Player
;BEGIN ALIAS PROPERTY Megara
;ALIAS PROPERTY TYPE ReferenceAlias
ReferenceAlias Property Alias_Player Auto
ReferenceAlias Property Alias_Megara Auto
;END ALIAS PROPERTY

;BEGIN ALIAS PROPERTY Katana
;ALIAS PROPERTY TYPE ReferenceAlias
ReferenceAlias Property Alias_Katana Auto
;END ALIAS PROPERTY

;BEGIN ALIAS PROPERTY Chillfurrow
;ALIAS PROPERTY TYPE ReferenceAlias
ReferenceAlias Property Alias_Chillfurrow Auto
;END ALIAS PROPERTY

;BEGIN FRAGMENT Fragment_6
Function Fragment_6()
;BEGIN CODE
Alias_Megara.GetActorReference().EvaluatePackage()
SetObjectiveDisplayed(40)
;END CODE
EndFunction
;END FRAGMENT

;BEGIN FRAGMENT Fragment_2
Function Fragment_2()
;BEGIN CODE
Expand All @@ -47,6 +56,22 @@ SetObjectiveCompleted(10)
EndFunction
;END FRAGMENT

;BEGIN FRAGMENT Fragment_8
Function Fragment_8()
;BEGIN AUTOCAST TYPE AK69CarrotQuestScript
Quest __temp = self as Quest
AK69CarrotQuestScript kmyQuest = __temp as AK69CarrotQuestScript
;END AUTOCAST
;BEGIN CODE
Alias_Megara.GetActorReference().EvaluatePackage()
Game.GetPlayer().RemoveItem(CarrotREF)
setObjectiveCompleted(41)
setObjectiveDisplayed(50)
kmyQuest.CappyCarrotTimer()
;END CODE
EndFunction
;END FRAGMENT

;BEGIN FRAGMENT Fragment_12
Function Fragment_12()
;BEGIN AUTOCAST TYPE AK69CarrotQuestScript
Expand All @@ -63,6 +88,16 @@ kmyQuest.DeleteTheStuff()
EndFunction
;END FRAGMENT

;BEGIN FRAGMENT Fragment_4
Function Fragment_4()
;BEGIN CODE
Alias_Megara.GetActorReference().EvaluatePackage()
AK69CarrotQuestMegaraPickup.Start()
SetObjectiveCompleted(20)
;END CODE
EndFunction
;END FRAGMENT

;BEGIN FRAGMENT Fragment_10
Function Fragment_10()
;BEGIN AUTOCAST TYPE AK69CarrotQuestScript
Expand All @@ -75,7 +110,7 @@ kmyQuest.DeleteTheStuff()

Self.CompleteAllObjectives()
AK69CQCompleted.SetValue(1)
setObjectiveCompleted(50)
setObjectiveCompleted(51)
Self.Stop()
;END CODE
EndFunction
Expand All @@ -92,41 +127,6 @@ AK69SugarandSpiceQuest.Start()
EndFunction
;END FRAGMENT

;BEGIN FRAGMENT Fragment_6
Function Fragment_6()
;BEGIN CODE
Alias_Megara.GetActorReference().EvaluatePackage()
SetObjectiveDisplayed(40)
;END CODE
EndFunction
;END FRAGMENT

;BEGIN FRAGMENT Fragment_4
Function Fragment_4()
;BEGIN CODE
Alias_Megara.GetActorReference().EvaluatePackage()
AK69CarrotQuestMegaraPickup.Start()
SetObjectiveCompleted(20)
;END CODE
EndFunction
;END FRAGMENT

;BEGIN FRAGMENT Fragment_8
Function Fragment_8()
;BEGIN AUTOCAST TYPE AK69CarrotQuestScript
Quest __temp = self as Quest
AK69CarrotQuestScript kmyQuest = __temp as AK69CarrotQuestScript
;END AUTOCAST
;BEGIN CODE
Alias_Megara.GetActorReference().EvaluatePackage()
Game.GetPlayer().RemoveItem(CarrotREF)
setObjectiveCompleted(40)
setObjectiveDisplayed(50)
kmyQuest.CappyCarrotTimer()
;END CODE
EndFunction
;END FRAGMENT

;END FRAGMENT CODE - Do not edit anything between this and the begin comment

ObjectReference Property CarrotREF Auto
Expand Down
Loading

0 comments on commit de60bf1

Please sign in to comment.