4
Fork 0

Allow interruption of all videos

development
Eddoursul 4 months ago
parent 267c1bff72
commit 2ec5f7da38
  1. BIN
      scripts/_00e_fs_mq18c_functions.pex
  2. BIN
      scripts/_00e_mq17_functions.pex
  3. BIN
      scripts/_00e_mq18a_functions.pex
  4. BIN
      scripts/_00e_mq18b_functions.pex
  5. BIN
      scripts/_00e_mqp01_functions.pex
  6. BIN
      scripts/_00e_mqp02_playintrolauncherscript.pex
  7. BIN
      scripts/_00e_mqp03_functions.pex
  8. 2
      source/scripts/_00e_fs_mq18c_functions.psc
  9. 2
      source/scripts/_00e_mq17_functions.psc
  10. 2
      source/scripts/_00e_mq18a_functions.psc
  11. 2
      source/scripts/_00e_mq18b_functions.psc
  12. 2
      source/scripts/_00e_mqp01_functions.psc
  13. 27
      source/scripts/_00e_mqp02_playintrolauncherscript.psc
  14. 2
      source/scripts/_00e_mqp03_functions.psc

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

@ -187,7 +187,7 @@ Function ShowCredits()
Steam.UnlockAchievement("END_COMPLETE_MQ18C_01")
FadeToBlackHoldIMOD.Apply()
Utility.Wait(8)
Game.PlayBink("Enderal_Credits.bik")
Game.PlayBink("Enderal_Credits.bik", true)
FadeToBlackHoldIMOD.Remove()
Debug.ToggleMenus()
_00E_Game_PostCreditsMessage.Show()

@ -199,7 +199,7 @@ Function StartExplanationVideo01()
If _00E_VideoSkip.GetValueInt() == 0
FadeToBlackAndBackIMOD.apply()
Utility.Wait(3.2)
Game.PlayBink("MQ17BlackGuardian.bik")
Game.PlayBink("MQ17BlackGuardian.bik", true)
Wait(2)
EndIf
SetCurrentStageID(40)

@ -110,7 +110,7 @@ Function ShowCredits()
Steam.UnlockAchievement("END_COMPLETE_MQ18A_01")
FadeToBlackHoldIMOD.Apply()
Wait(8)
Game.PlayBink("Enderal_Credits.bik")
Game.PlayBink("Enderal_Credits.bik", true)
FadeToBlackHoldIMOD.Remove()
Debug.ToggleMenus()
_00E_Game_PostCreditsMessage.Show()

@ -31,7 +31,7 @@ Function FadeOut()
Debug.ToggleMenus()
Steam.UnlockAchievement("END_COMPLETE_MQ18B_01")
Debug.ToggleCollisions()
Game.PlayBink("Enderal_Credits.bik")
Game.PlayBink("Enderal_Credits.bik", true)
FadeToWhiteHoldIMOD.Remove()
Debug.ToggleMenus()
_00E_Game_PostCreditsMessage.Show()

@ -193,7 +193,7 @@ Function PlayIntroAndMovePlayerToShip()
Wait(7.8)
Steam.UnlockAchievement("END_COMPLETE_MQP01_01")
If _00E_VideoSkip.GetValueInt() == 0
Game.PlayBink("EnderalIntro.bik", true, true, true, true)
Game.PlayBink("EnderalIntro.bik", true)
EndIf
wait(0.2)

@ -1,27 +0,0 @@
Scriptname _00E_MQP02_PlayIntroLauncherScript extends ObjectReference
Sound Property _00E_MQP02_LandInSicht Auto
Quest Property MQ_P02_ANewLife Auto
ObjectReference Property SiriusMoveMarker Auto
ObjectReference Property Sirius Auto
ObjectReference Property PlayerMarker Auto
ObjectReference Property SitMarker Auto
Event OnInit()
Debug.Notification("Sound und Bink-Movie fehlen!")
_00E_MQP02_LandInSicht.Play(Game.GetPlayer())
Utility.Wait(3)
;Game.PlayBink("Intro-MovieFileNameHere")
FadeToBlackBackImod.Apply(); Delete once movie is implemented
Sirius.MoveTo(SiriusMoveMarker)
Game.ForceFirstPerson()
Game.GetPlayer().MoveTo(PlayerMarker)
;Game.GetPlayer().StartSneaking()
MQ_P02_ANewLife.SetCurrentStageID(20)
SitMarker.Disable()
EndEvent
ImageSpaceModifier Property FadeToBlackImod Auto
ImageSpaceModifier Property FadeToBlackBackImod Auto

@ -46,7 +46,7 @@ EndFunction
Function ShowVisionBinkMovie()
If _00E_VideoSkip.GetValueInt() == 0
Game.PlayBink("MQP03NearDeathExperience.bik")
Game.PlayBink("MQP03NearDeathExperience.bik", true)
EndIf
Wait(2)
FadeToBlackHoldIMOD.PopTo(_00E_MQP03_WakeUpIMOD)

Loading…
Cancel
Save