Help pls multiple problems

TheLegend

New Member
Reaction score
10
SOLVED


I started making a heavy map and i started with a simple intro cinematic
here is the init trigger
Trigger:
  • Map INIT
    • Events
      • Map initialization
    • Conditions
    • Actions
      • Trigger - Run Regions <gen> (ignoring conditions)
      • Trigger - Run Set creeps <gen> (ignoring conditions)
      • Trigger - Run Players <gen> (ignoring conditions)
      • Trigger - Run INTRO <gen> (ignoring conditions)

the Players
Trigger:
  • Players
    • Events
    • Conditions
    • Actions
      • Do Multiple ActionsFor each (Integer A) from 1 to 12, do (Actions)
        • Loop - Actions
          • Do Multiple ActionsFor each (Integer B) from 1 to 12, do (Actions)
            • Loop - Actions
              • Player - Make (Player((Integer A))) treat (Player((Integer B))) as an Ally with shared vision
      • Player Group - Pick every player in (All players controlled by a User player) and do (Actions)
        • Loop - Actions
          • Multiple FunctionsIf (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • ((Picked player) slot status) Equal to (==) Is playing
            • Then - Actions
              • Set temppoint = ((Picked player) start location)
              • Unit - Create 1 Human Builder for (Picked player) at temppoint facing Default building facing (270.0) degrees
              • Custom script: call RemoveLocation(udg_temppoint)
              • Selection - Select (Last created unit group) for (Picked player)
            • Else - Actions
              • Unit Group - Pick every unit in (Units owned by (Picked player)) and do (Actions)
                • Loop - Actions
                  • Unit - Remove (Picked unit) from the game
      • Player - Make Neutral Passive treat Neutral Hostile as an Enemy with shared vision

and finaly the one thats (i think) causing the trouble
Trigger:
  • INTRO
    • Events
    • Conditions
    • Actions
      • Custom script: local location l
      • Set temppoint = (Position of Shimmering Portal 0000 <gen>)
      • Destructible - Kill Shimmering Portal 0000 <gen>
      • Animation - Change Shimmering Portal 0000 <gen>'s animation speed to 500.00% of its original speed
      • Cinematic - Turn cinematic mode On for (All players)
      • Cinematic - Turn on letterbox mode (hide interface) for (All players): fade out over 2.00 seconds
      • Cinematic - Disable user control for (All players)
      • Cinematic - Clear the screen of text messages for (All players)
      • Cinematic - Turn subtitle display override On
      • Player Group - Pick every player in (All players) and do (Actions)
        • Loop - Actions
          • Camera - Lock camera target for (Picked player) to Ironcliff 0032 <gen>, offset by (0.00, 0.00) using The unit's rotation
      • Animation - Change Shimmering Portal 0000 <gen>'s animation speed to 100.00% of its original speed
        • Do Multiple ActionsFor each (Integer A) from 1 to 18, do (Actions)
          • Loop - Actions
            • Custom script: set l = Location(GetLocationX(udg_temppoint) + 400*Cos(bj_forLoopAIndex*20*bj_DEGTORAD),GetLocationY(udg_temppoint) + 400*Sin(bj_forLoopAIndex*20*bj_DEGTORAD))
            • Unit - Create 1 Footman for Neutral Passive at (l) facing Default building facing (270.0) degrees
            • Unit - Make (Last created unit) face temppoint over 0.00 seconds
      • Unit - Order Ironcliff 0032 <gen> to Move To temppoint
      • Wait until ((Is Ironcliff 0032 <gen> near temppoint and within a range of 200.00) Equal to (==) True), checking every 0.10 seconds
      • Player Group - Pick every player in (All players) and do (Actions)
        • Loop - Actions
          • Camera - Apply Cam1 <gen> for (Picked player) over 0.00 seconds
      • Cinematic - Send transmission to (All players) from Ironcliff 0032 <gen> named Ironcliff: Play No sound and display Get ready men, toda.... Modify duration: Add 15.00 seconds and Wait
      • Cinematic - Send transmission to (All players) from Ironcliff 0032 <gen> named Ironcliff: Play No sound and display Three years ago a s.... Modify duration: Add 15.00 seconds and Wait
      • Cinematic - Send transmission to (All players) from Ironcliff 0032 <gen> named Ironcliff: Play No sound and display Today is the day he.... Modify duration: Add 15.00 seconds and Wait
      • Wait 5.00 seconds
      • Player Group - Pick every player in (All players) and do (Actions)
        • Loop - Actions
          • Camera - Shake the camera for (Picked player) with magnitude 9.00
      • Wait 1.00 seconds
      • Destructible - Resurrect Shimmering Portal 0000 <gen> with (Max life of Shimmering Portal 0000 <gen>) life and Show birth animation
      • Wait 8.00 seconds
      • Player Group - Pick every player in (All players) and do (Actions)
        • Loop - Actions
          • Camera - Stop swaying/shaking the camera for (Picked player)
      • Wait 1.00 seconds
      • Unit - Create 15 Rebel for Neutral Hostile at temppoint facing Default building facing (270.0) degrees
      • Set unitgroup = (Units in (Playable map area) matching (((Owner of (Picked unit)) controller) Equal to (==) Computer))
      • Custom script: call RemoveLocation(udg_temppoint)
      • Unit Group - Pick every unit in unitgroup and do (Actions)
        • Loop - Actions
          • Unit - Order (Picked unit) to Attack-Move To temppoint
      • Custom script: call RemoveLocation(l)

and the remove to clear the units created
Trigger:
  • REMOVE
    • Events
      • Unit - A unit Dies
    • Conditions
      • (Number of living Rebel units owned by Neutral Hostile) Less than (<) 5
    • Actions
      • Unit Group - Pick every unit in unitgroup and do (Actions)
        • Loop - Actions
          • Unit - Remove (Picked unit) from the game
      • Custom script: call RemoveLocation(udg_temppoint)
      • Player Group - Pick every player in (All players) and do (Actions)
        • Loop - Actions
          • Camera - Reset camera for (Picked player) to standard game-view over 0.00 seconds
      • Cinematic - Turn subtitle display override Off
      • Cinematic - Clear the screen of text messages for (All players)
      • Cinematic - Enable user control for (All players)
      • Cinematic - Turn off letterbox mode (show interface) for (All players): fade in over 0.00 seconds
      • Cinematic - Turn cinematic mode Off for (All players)

ok here is the point
1: The cinematic mode is f*** up, there is no profile of the unit in that small box and the outline is missing
2: When the fight starts, after some kill the game exits wit wc3 crashing

pls help, im making maps for a long time now and things as this never happened before
 

Amn

Member
Reaction score
18
hi.

i recommend a small wait before this trigger
Trigger - Run INTRO <gen> (ignoring conditions)
to make sure the other triggers got enough time to set the variables before using.

then about your Ironcliff 0032 unit, maybe it doesnt have a portrait animation to show so on your cinematic its transmission stays black

and finally, i dont think this triggers are crashing the game, but just to make sure, go disable your cinematic triggers for a while and then test the game, try to crash it again
 

TheLegend

New Member
Reaction score
10
the ironcliff is a prebade blizzard unit, that is he is the small dwarf with the hammer... muradin,was it, another thing the destructible i kill, when the cinematic starts, no mater how big the wait is it will still be animating with the cinematic start... oh and the cinematic trigger is one responsible i checked that (when i delete the fight scene its ok)

EDIT:
the game wont exit now, i fixed that, i just deleted the line
Trigger:
  • Unit Group - Pick every unit in unitgroup and do (Actions)
    • Loop - Actions
    • Unit - Order (Picked unit) to Attack-Move To temppoint

but the cinematic mask and the hero portrait are still missing
 

Amn

Member
Reaction score
18
what's letterbox mode? remove that line and test, u're already using cinematic mode, that may cause your problem.
for the shimmering portal death try using a unit with its model, works much better. maybe destructables cant get their animation time increased.
 

TheLegend

New Member
Reaction score
10
the letterbox aint the problem, this type of cinematic im using for a long time and it never ever bugged until now, any ideas how to fix it cause its a bit stupid without the talking picture of my hero.

EDIT:
It was some stupid virus attacking newgen and changing the constants, my god, what wont they come up with.... it changed the border models into *******black.mdl so it was black
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • Ghan Ghan:
    Still lurking
    +3
  • The Helper The Helper:
    I am great and it is fantastic to see you my friend!
    +1
  • The Helper The Helper:
    If you are new to the site please check out the Recipe and Food Forum https://www.thehelper.net/forums/recipes-and-food.220/
  • Monovertex Monovertex:
    How come you're so into recipes lately? Never saw this much interest in this topic in the old days of TH.net
  • Monovertex Monovertex:
    Hmm, how do I change my signature?
  • tom_mai78101 tom_mai78101:
    Signatures can be edit in your account profile. As for the old stuffs, I'm thinking it's because Blizzard is now under Microsoft, and because of Microsoft Xbox going the way it is, it's dreadful.
  • The Helper The Helper:
    I am not big on the recipes I am just promoting them - I use the site as a practice place promoting stuff
    +2
  • Monovertex Monovertex:
    @tom_mai78101 I must be blind. If I go on my profile I don't see any area to edit the signature; If I go to account details (settings) I don't see any signature area either.
  • The Helper The Helper:
    You can get there if you click the bell icon (alerts) and choose preferences from the bottom, signature will be in the menu on the left there https://www.thehelper.net/account/preferences
  • The Helper The Helper:
    I think I need to split the Sci/Tech news forum into 2 one for Science and one for Tech but I am hating all the moving of posts I would have to do
  • The Helper The Helper:
    What is up Old Mountain Shadow?
  • The Helper The Helper:
    Happy Thursday!
    +1
  • Varine Varine:
    Crazy how much 3d printing has come in the last few years. Sad that it's not as easily modifiable though
  • Varine Varine:
    I bought an Ender 3 during the pandemic and tinkered with it all the time. Just bought a Sovol, not as easy. I'm trying to make it use a different nozzle because I have a fuck ton of Volcanos, and they use what is basically a modified volcano that is just a smidge longer, and almost every part on this thing needs to be redone to make it work
  • Varine Varine:
    Luckily I have a 3d printer for that, I guess. But it's ridiculous. The regular volcanos are 21mm, these Sovol versions are about 23.5mm
  • Varine Varine:
    So, 2.5mm longer. But the thing that measures the bed is about 1.5mm above the nozzle, so if I swap it with a volcano then I'm 1mm behind it. So cool, new bracket to swap that, but THEN the fan shroud to direct air at the part is ALSO going to be .5mm to low, and so I need to redo that, but by doing that it is a little bit off where it should be blowing and it's throwing it at the heating block instead of the part, and fuck man
  • Varine Varine:
    I didn't realize they designed this entire thing to NOT be modded. I would have just got a fucking Bambu if I knew that, the whole point was I could fuck with this. And no one else makes shit for Sovol so I have to go through them, and they have... interesting pricing models. So I have a new extruder altogether that I'm taking apart and going to just design a whole new one to use my nozzles. Dumb design.
  • Varine Varine:
    Can't just buy a new heatblock, you need to get a whole hotend - so block, heater cartridge, thermistor, heatbreak, and nozzle. And they put this fucking paste in there so I can't take the thermistor or cartridge out with any ease, that's 30 dollars. Or you can get the whole extrudor with the direct driver AND that heatblock for like 50, but you still can't get any of it to come apart
  • Varine Varine:
    Partsbuilt has individual parts I found but they're expensive. I think I can get bits swapped around and make this work with generic shit though
  • Ghan Ghan:
    Heard Houston got hit pretty bad by storms last night. Hope all is well with TH.
  • The Helper The Helper:
    Power back on finally - all is good here no damage
    +2
  • V-SNES V-SNES:
    Happy Friday!
    +1
  • The Helper The Helper:
    New recipe is another summer dessert Berry and Peach Cheesecake - https://www.thehelper.net/threads/recipe-berry-and-peach-cheesecake.194169/

      The Helper Discord

      Members online

      No members online now.

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top