Escape Help

BloodReaver

New Member
Reaction score
2
Hey I wanted to know first how to make a key specific for a certain gate. Second I would like to know how to add cool affects like in Island Defence the fire titan has flames all over him, the water has water at his hands etc. Thanks
 

darkRae

Ueki Fan (Ueki is watching you)
Reaction score
173
Make different keys for each gate, then use a lot of IF conditionals to check the type of key to open the gate.

You can use Special Effects made via triggers, or Sphere, or Orbs (item) with no bonus damage or effects, just the visual effect. You know Orbs (Orb of Slow, Lightning, Corruption, Venom, Frost) They give visual effects to the weapon, now change to something else.
 

darkRae

Ueki Fan (Ueki is watching you)
Reaction score
173
BloodReaver said:
the doodad thingys stay instead of go where the hero moves.
Reply With Quote

Huh? I thought you're talking about gates and keys...
 

BloodReaver

New Member
Reaction score
2
And if somone can help me with sliding. I have been to "The Helpers" forum about it and when I finished it you needed to cast a spell to slide. Does anyone know how to slide like in "Slide Ninja Slide?"

Huh? I thought you're talking about gates and keys...

Oh! Thats just the gate. I thought your second paragraph was about the image thing. Ty btw.
 

darkRae

Ueki Fan (Ueki is watching you)
Reaction score
173
To Slide when on a specific tile:
- Create a Periodical trigger (trigger with Periodic event, that's what I call it) make it <0.10 second, up to you
- Pick all units in Playable Map Area
- Check if he's alive and standing on a specific tile
- Move him to a point, offset by X with angle (The Facing Angle of Picked Unit) from his own position
- Remove leaks

EDIT:
I was talking about the gates, and the effects (not images, images are 2D) And btw, you're double-posting. Better edit it before someone finds out :p
 

Kill3rbeast

New Member
Reaction score
0
Hi, Blood Reaver

To your first question: You should decrase the hero inventory to one slot, don't think in a escape is more needed (That makes it easier). Then make it like this:

Code:
OpenGate
    Events
        Unit - A unit enters InfrontofDoor <gen>
    Conditions
    Actions
        Set EnteringUnit = (Entering unit)
        If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            If - Conditions
                (Item carried by EnteringUnit in slot 1) Equal to Blut-Schlüssel 0001 <gen>
            Then - Actions
                Destructible - Open Dämonentor (Horizontal) 0000 <gen>
                Item - Remove Blut-Schlüssel 0001 <gen>
            Else - Actions
                Game - Display to (All players) the text: You first need the key..

And effects make like this:

Code:
Special Effect - Create a special effect attached to the "AttachmentPoint" of Blutmagier 0000 <gen> using Abilities\Spells\Other\TalkToMe\TalkToMe.mdl

Attachment points are:
overhead
head
chest
origin
hand
foot
weapon

Greetings Kill3rbeast
 

darkRae

Ueki Fan (Ueki is watching you)
Reaction score
173
@ Kill3rbeast
However, making Special Effects via trigger has its flaws. The effect will not be carried over to Illusions (like Mirror Image) unless you make the effects again for the Illusions, which is a hassle. Better use Sphere or Item Orb ability. But Sphere also has weakness, that the effect will 'die' when the unit attacks or begins casting a spell. 'Die', it means, like if you use Demolisher's Burning Oil missile as the effect, it will 'explode' when the unit attacks, and will be recreated soon after.
 

Kill3rbeast

New Member
Reaction score
0
@darkrae
He want to make a escape map... I don't think he want to create illusions of heros o_O

What ever heres the sliding trigger i used for all my escape maps (4) with special effects and custom script to avoid leak. For this example it have 1 slide ground but you can create more and there's also a death trigger:

Code:
Slide
    Events
        Time - Every 0.02 seconds of game time
    Conditions
    Actions
        Set PlayerGroup2 = (All players controlled by a User player)
        Player Group - Pick every player in PlayerGroup2 and do (Actions)
            Loop - Actions
                Set temp_group2 = (Units owned by (Picked player))
                Unit Group - Pick every unit in temp_group2 and do (Actions)
                    Loop - Actions
                        Set temp_point = (Position of (Picked unit))
                        If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                            If - Conditions
                                (Terrain type at temp_point) Equal to Northrend - Ice
                                ((Picked unit) is alive) Equal to True
                            Then - Actions
                                Unit - Move (Picked unit) instantly to (temp_point offset by 7.70 towards (Facing of (Picked unit)) degrees)
                                Set HeroSlideEffect[1] = (Position of (Picked unit))
                                Special Effect - Create a special effect at HeroSlideEffect[1] using Abilities\Weapons\ZigguratMissile\ZigguratMissile.mdl
                                Special Effect - Destroy (Last created special effect)
                                Custom script: call RemoveLocation (udg_HeroSlideEffect[1])
                                Custom script: call RemoveLocation(udg_temp_point)
                                Custom script: call DestroyGroup(udg_temp_group2)
                                Custom script: call DestroyForce(udg_PlayerGroup2)
                            Else - Actions
                                If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                                    If - Conditions
                                        (Terrain type at temp_point) Equal to Outland - Abyss
                                        ((Picked unit) is alive) Equal to True
                                    Then - Actions
                                        Unit - Kill (Picked unit)
                                        Special Effect - Create a special effect at HeroDie using Objects\Spawnmodels\Human\HumanLargeDeathExplode\HumanLargeDeathExplode.mdl
                                        Special Effect - Destroy (Last created special effect)
                                        Custom script: call RemoveLocation (udg_HeroDie)
                                        Custom script: call RemoveLocation(udg_temp_point)
                                        Custom script: call DestroyGroup(udg_temp_group2)
                                        Custom script: call DestroyForce(udg_PlayerGroup2)
                                    Else - Actions
                                        Custom script: call RemoveLocation(udg_temp_point)
                                        Custom script: call DestroyGroup(udg_temp_group2)
                                        Custom script: call DestroyForce(udg_PlayerGroup2)

Hope this helps ;)
 

Kill3rbeast

New Member
Reaction score
0
Hm, i still made 4 escape maps and i never had a problem with creating a effect at a hero but whatever :rolleyes::rolleyes::rolleyes:
 

Kill3rbeast

New Member
Reaction score
0
No Problem BloodReaver,

if you have a problem at making a escape map you can surly ask me :shades: This is my special. And please add "Locust" to enemy units like patrouls to make them unclickable if you dont still have this. This makes escapes a lot more compfortable to play and funnier, too. There are also people who dont play escapes that dont have unlickable units in there like me ^^

Good Luck & Have Fun with making your map.

Greetings
Kill3rbeast
 

BloodReaver

New Member
Reaction score
2
Hmm wait, I am confused. PlayerGroup2 is a player group? And when you choose (picked player), (picked unit) do I actually have to choose a unit or player for them?

Oh my god, I give up, ty anyway.
 

darkRae

Ueki Fan (Ueki is watching you)
Reaction score
173
O_O No don't!!
You shouldn't give up, don't you wanna finish your map??
Picking units mean the units are pick so effects can be done to them in a loop, instead of giving effects one by one.
If you pick a unit for player, maybe you mean 'select' the unit for them.
Just keep asking questions. I'll answer and make sure you're satisfied with your question (unless I can't answer the question, that is)
 

darkRae

Ueki Fan (Ueki is watching you)
Reaction score
173
If I give you the triggers right away, you won't learn anything.
You have to make it yourself, but we'll help you.
See the other poster's triggers, and see if you learn something about 'Sliding'.
Sliding means moving the unit every little second to a point in front of it.
 

darkRae

Ueki Fan (Ueki is watching you)
Reaction score
173
(agh) Now that's a short reply.
I meant, read Kill3rbeast's trigger in the previous page, and study it, so you'll know how to make one on your own.
 

BloodReaver

New Member
Reaction score
2
I did and I understand it. If I make one of my own it dosn't work so then I tried copping it. GUESS WHAT? It didn't work either :(
 

darkRae

Ueki Fan (Ueki is watching you)
Reaction score
173
Would you mind posting your current trigger?
So we can look at it and solve your problem.
 

BloodReaver

New Member
Reaction score
2
How do I coppy paste it so I don't have to write it all out?

Off-Topic:
Do you like follow me around and answer my questions all the time? I run into you a lot :p
 
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

      Staff online

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top