My Map & Jass

BlackDeath09

New Member
Reaction score
9
Here is a map of mine in a nutshell, please explain to me what have i used thats gui and jass, i understand the custom scripts but im not 100% on all my crap ive put into it.

Advanced:Custom Loading Screen(Not jass i know) Custom Spells, Custom Units, Advanced Triggers.

The triggers im not to sure about because they are extremely complex in form but most of them are just triggers you scroll down to find not written.
 

Rainther

I guess I should write something of value here...
Reaction score
61
Well, shortly said all you've used is GUI, except the Custom Scripts, which are Jass coding.

I can't say I'm fully understanding what you want help with.
 

BlackDeath09

New Member
Reaction score
9
didnt really understand what i did with jass scripting, i read all the tutorials but im not understanding it fully.
 

Rainther

I guess I should write something of value here...
Reaction score
61
After checking once more I noted you don't even have Custom Scripts in the map. So the amount of Jass you've used is pretty much none.
 

BlackDeath09

New Member
Reaction score
9
well can you find places where it is necessary to use jass for the point of the game or places where jass would make it more fun or balanced of a game.
 

Rainther

I guess I should write something of value here...
Reaction score
61
I kinda do everything in Jass. What I can see in your map is all the time you could've saved with doing Jass instead of Gui. You have for instance about 8 triggers, all doing the same thing but different event for each player. This can be easily fixed in Jass... However I think your map is well done in GUI and wrong the looks of things I haven't found many triggers that are repeatable, removing the problem with leaks.
 

BlackDeath09

New Member
Reaction score
9
Look at this map. you see im trying to use gui again to do the "Siege Tower" triggers but i cant get it to work this time. could you tell me what to do or do it on the map and resave it as FIXED and give it back to me by using jass functions. its just getting to complicated to fix using gui.
View attachment 31890
 

Rainther

I guess I should write something of value here...
Reaction score
61
I think you should get your hands on JassNewGen before you decide to use Jass, most people are using it and if you get a fixed map made through JassNewGen then you can't save yours without it.

But why can't you use it again? Problems with Regions/Rects?
 

BlackDeath09

New Member
Reaction score
9
i copy the triggers exactly, ill use the exact same elevators and exact same names, but i dont see how i mark where the ladder is suppose to go, dont i have to specify a certain distance or spot away from the wall. could you try and fix it using just gui for now, the tirggers on the map above arent what they are suppose to be, dunno ive just spent so much time on triggers im getting kind of sick of it.
 

Rainther

I guess I should write something of value here...
Reaction score
61
The Minas Tirith map have 3 regions (or correctly claimed rects) for each loading spot.
It can be explained as:
[Load Unit Region] [Place Siege] [Wall] [Transport Spot] in this order

The Siege unit is to be placed in the [Place Siege] and it gets paused there. When that's completed units can be teleported by entering [Load Unit Region] and they'll be transferred to [Transport Spot], which is behind the wall.

So your maps needs regions for where they will be teleported to that should be placed on the wall.

Just to be pesty... You could do this in Jass with not too much effort and then it can be used on every place on the wall. :)
 

BlackDeath09

New Member
Reaction score
9
can you show me what a screenshot of what the trigger should look like for 1 siege tower to be locked in place become invulnerable and become to trigger for teleporting units to the wall, and then what happens when it dies to reload the trigger to be used again, thanks.
 

Rainther

I guess I should write something of value here...
Reaction score
61
You just said you want the tower to be invurnerable AND have a trigger have a trigger to IF it dies? :p Anyway: Here's something I think should work:

Link of your attached map
 

BlackDeath09

New Member
Reaction score
9
sorry that is written for windows only i can only read it as text.
this is what i was thinking and correct me where i am wrong

-go to region editor mark the spots where i want the siege tower to attach.
-go to region editor and mark the spots where i want them to be teleported on the wall(right next to where the tower is).
-go to triggers and make triggers to somehow lock tower in place make it invulnerable and make it the trigger of the teleporter.
-go to triggers and oooo i see i said if it dies but its invulnerable hahhaha my bad.
then thats all i have to do, dont have to use elevators or anything, am i missing anything
 

Rainther

I guess I should write something of value here...
Reaction score
61
If this helps anything:
Trigger:
  • Ladder1 lock
    • Events
      • Unit - A unit enters Ladder 1b <gen>
    • Conditions
      • (Unit-type of (Triggering unit)) Equal to Light Siege Ladder
    • Actions
      • Unit - Move (Triggering unit) instantly to (Center of ladder 1 spot <gen>), facing 90.00 degrees
      • Unit - Pause (Triggering unit)
      • Destructible - Pick every destructible in wall blocker 1 a <gen> and do (Destructible - Remove (Picked destructible))
      • Destructible - Pick every destructible in wall blocker 1 b <gen> and do (Destructible - Remove (Picked destructible))
      • Trigger - Turn off (This trigger)
      • Trigger - Turn on Ladder1 tp <gen>

Trigger:
  • Ladder1 tp
    • Events
      • Unit - A unit enters Ladder 1b <gen>
    • Conditions
      • (Unit-type of (Triggering unit)) Not equal to Light Siege Ladder
    • Actions
      • Unit - Move (Entering unit) instantly to (Center of load 1 spot <gen>)
This one is initially off
Trigger:
  • Ladder1 dies
    • Events
      • Unit - A unit Dies
    • Conditions
      • (Unit-type of (Triggering unit)) Equal to Light Siege Ladder
      • (Ladder 1b <gen> contains (Triggering unit)) Equal to True
    • Actions
      • Destructible - Create a Pathing Blocker (Ground) at (Center of wall blocker 1 a <gen>) facing (Random angle) with scale 1.00 and variation 0
      • Destructible - Create a Pathing Blocker (Ground) at (Center of wall blocker 1 b <gen>) facing (Random angle) with scale 1.00 and variation 0
      • Trigger - Turn on Ladder1 lock <gen>
      • Trigger - Turn off Ladder1 tp <gen>
 

BlackDeath09

New Member
Reaction score
9
except leave out the ladder 1 dies because its invulnerable right, or should i keep it anyways, cause in the first one it should be
Unit move into triggering spot becomes invulnerable as part of the action
 

Rainther

I guess I should write something of value here...
Reaction score
61
Feel free to edit. Were unsure if you wanted the tower to be killable or not. :)
 

BlackDeath09

New Member
Reaction score
9
i think unkillable bit more realistic cause the only thing that could kill them in movies was 1 unit and thats not worth the xtra time. having said that i guess ill just leave that last trigger out and add 1 that makes it invulnerable
also im not sure what the 1 a and 1 b stuff is so i am just copying it as is and seeing if it works
Edit: I just checked the region palate and ladder triggers there a mess right now so im just gunna delete everything and start over. but the question i have is, its 2 regions per siege tower trigger correct? 1 to show where the units tele 1 to show were the ladder is locked into place? right or do i have to add a third to show where the units tele from(just add that 1 on top of the ladder lock 1)?
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • Ghan Ghan:
    Howdy
  • 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 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