• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

Break Cinematic

Status
Not open for further replies.
Level 11
Joined
Jan 23, 2015
Messages
788
I've made all necessary actions to break a cinematic, and it breaks successfully, but shortly after the gameplay starts, the cinematic actions proceed (characters proceed with the dialog, camera changes).. I've turned off all triggers in the cinematic, even destroyed some, but still can't stop the actions that are already started.. Help!!
 

Wrda

Spell Reviewer
Level 26
Joined
Nov 18, 2012
Messages
1,891
You must put the boolean this way:

  • Cinematic
    • Events
    • Conditions
    • Actions
      • Camera - Apply (Cam5_Tommy) for Player 1 (Red) over 0.00 seconds
      • Wait 2.00 seconds
      • If (Skipped Equal to True) then do (Skip remaining actions) else do (Do nothing)
      • Unit - Order (Tommy) to Move To (Center of (Playable map area))
      • Wait 2.00 seconds
      • If (Skipped Equal to True) then do (Skip remaining actions) else do (Do nothing)
      • Cinematic - Send transmission to (All players) from Paul_R named Paul: Play No sound and display Hey! How are you ma.... Modify duration: Set to 2.00 seconds and Don't wait
      • Wait 2.00 seconds
      • If (Skipped Equal to True) then do (Skip remaining actions) else do (Do nothing)
      • Cinematic - Send transmission to (All players) from Tommy named Tommy: Play No sound and display Yo dude, I'm fine a.... Modify duration: Set to 3.00 seconds and Don't wait
      • Wait 2.00 seconds
      • If (Skipped Equal to True) then do (Skip remaining actions) else do (Do nothing)
      • Cinematic - Send transmission to (All players) from Paul_R named Paul: Play No sound and display Nothing really.... Modify duration: Set to 4.00 seconds and Don't wait
      • Wait 4.00 seconds
      • If (Skipped Equal to True) then do (Skip remaining actions) else do (Do nothing)
      • Unit - Create 1 Royal Guard for Player 1 (Red) at (Center of (King_P)) facing Default building facing degrees
      • Wait 4.00 seconds
 
Level 16
Joined
Mar 27, 2011
Messages
1,349
Yes. Add a "If Skipped equal to True, then do Skip remaining actions after each and ever wait action you have the the cinematic like shown above.

Whenever you want to "break" the cinematic you use this action:

  • Set Skipped = True
Then your trigger will soon stop.
 
Status
Not open for further replies.
Top