I'm making a campaign, which consists of many linked maps (like in tft orc campaign). Everything else works correctly, but I can't load a saved game. Here's a trigger:
-
Transition
-
Events
-
Conditions
-
Actions
-
Set TempPath1 = ((SaveFolder + \) + Map1.w3z)
-
Set TempPath2 = ((SaveFolder + \) + (TransitionTarget + .w3z))
-
Wait 0.50 seconds
-
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
-
If - Conditions
-
(The TempPath2 saved-game exists) Equal to True
-
-
Then - Actions
-
Game - Save game as TempPath1 and load TempPath2 (Skip scores)
-
-
Else - Actions
-
Game - Save game as TempPath1 and change level to (TransitionTarget + .w3x) (Skip scores)
-
-
-
-