How to make venomancers skill Venomous Gale

bhemoth

New Member
Reaction score
0
Can anyone tell me how to make venomancers skill venomous gale... cause i cant find it in here anywhere???
 

Igor_Z

You can change this now in User CP.
Reaction score
61
M8, im at school now... I will help you if u like. But 4 hours later if u can wait that long. Just 1 question? Is the venomous gale venomancer's first ability? Cuz i forgot the name of it. If so, i will show u how to make it later
 

Vylatin

New Member
Reaction score
32
Yes it is. The Venomancer shoots out this "Shadow Strike projectile", poisoning all units in its way. It is pretty new, I think Icefrog changed it in the last version - 6.59. Before it was only Shadow Strike.
 

Igor_Z

You can change this now in User CP.
Reaction score
61
Hey, back from school.. Sorry for keeping u waiting. Now the spell. If u follow my steps 1 by 1 it would be a sinch to make the spell. First of all, let me clear something for you.. This spell only poisons the units in the targeted area not everything in its way. But i think this is what it does... Now listen:

Step 1: Create 2 dummes, first 1 with abilities: Locust, Invulnerable(neutral) with no model
Second: with abilities: Locust, Invulnerable(neutral) but make him to have the model of the shadow strike missle

Step 2: Make a Blizzard spell with everything set to 0.. Casting time set to 0.1... Add this spell to your hero
Make a Shadow strike spell for your dummy to cast. Just make it, don't add it to the dummy. Make it with no model or effects if u don't want...

Step 3: Do some variables: Venom_Units with variable-Unit with array 5, Venom_Points with variable-point with array 5 and Venom_Group with variable-Unit Group with no array

Step 4: Do these triggers:

Trigger 1:
Code:
    Events
        Unit - A unit Starts the effect of an ability
    Conditions
        (Ability being cast) Equal to Venomous Gale(Hero Use) - Based on blizzard
    Actions
        Set Venom_Units[1] = (Triggering unit)
        Set Venom_Points[1] = (Position of Venom_Units[1])
        Set Venom_Points[2] = (Target point of ability being cast)
        Unit - Create 1 Venom Moving Dummy for (Owner of Venom_Units[1]) at Venom_Points[1] facing Default building facing degrees
        Set Venom_Units[2] = (Last created unit)
        Trigger - Turn on Venom Move <gen>

Trigger 2(isn't initially on):

Code:
Events
        Time - Every 0.03 seconds of game time
    Conditions
    Actions
        Set Venom_Points[3] = (Position of Venom_Units[2])
        Set Venom_Points[4] = (Venom_Points[3] offset by 35.00 towards (Angle from Venom_Points[3] to Venom_Points[2]) degrees)
        Unit - Move Venom_Units[2] instantly to Venom_Points[4]
        Unit - Turn collision for Venom_Units[2] Off
        If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            If - Conditions
                (Integer((Distance between Venom_Points[3] and Venom_Points[2]))) Less than or equal to 50
            Then - Actions
                Unit - Remove Venom_Units[2] from the game
                Set Venom_Group = (Units within 375.00 of Venom_Points[2] matching ((((Matching unit) is A structure) Equal to False) and ((((Matching unit) is Magic Immune) Equal to False) and (((Matching unit) belongs to an enemy of (Owner of Venom_Units[1])) Equal to True))))
                Unit Group - Pick every unit in Venom_Group and do (Actions)
                    Loop - Actions
                        Set Venom_Units[3] = (Picked unit)
                        Unit - Create 1 Venom Dummy for (Owner of Venom_Units[1]) at Venom_Points[2] facing Default building facing degrees
                        Set Venom_Units[4] = (Last created unit)
                        Unit - Add Shadow Strike(Dummy Use) to Venom_Units[4]
                        Unit - Set level of Shadow Strike(Dummy Use) for Venom_Units[4] to (Level of Venomous Gale (Hero Use) for Venom_Units[1])
                        Unit - Order Venom_Units[4] to Night Elf Warden - Shadow Strike Venom_Units[3]
                        Unit - Add a 1.20 second Generic expiration timer to Venom_Units[4]
                Custom script:   call RemoveLocation(udg_Venom_Points[1])
                Custom script:   call RemoveLocation(udg_Venom_Points[2])
                Custom script:   call RemoveLocation(udg_Venom_Points[3])
                Custom script:   call RemoveLocation(udg_Venom_Points[4])
                Custom script:   call DestroyGroup(udg_Venom_Group)
                Trigger - Turn off (This trigger)
            Else - Actions

The Venom Moving dummy is the missle that travels to the targeted point. It is like the Shadow Strike missle as i explained what to do in the steps. The other dummy is unseeable so don't wry about him
If u have any questions or ploblems inform me... Or if u want it another way, let some 1 else build up a trigger for you
 

wraithseeker

Tired.
Reaction score
122
Trigger:
  • Set Venom_Group = (Units within 375.00 of Venom_Points[2] matching ((((Matching unit) is A structure) Equal to False) and ((((Matching unit) is Magic Immune) Equal to False) and (((Matching unit) belongs to an enemy of (Owner of Venom_Units[1])) Equal to True))))

to

Trigger:
  • Set Venom_Group = (Units within 200.00 of Venom_Points[2] matching ((((Matching unit) is A structure) Equal to False) and ((((Matching unit) is Magic Immune) Equal to False) and (((Matching unit) belongs to an enemy of (Owner of Venom_Units[1])) Equal to True))))


be better?

Also, used wc3 tags for him to be able to read the code easily, nice one to help him out.


Trigger:
  • Events
    • Unit - A unit Starts the effect of an ability
    • Conditions
      • (Ability being cast) Equal to Venomous Gale(Hero Use) - Based on blizzard
    • Actions
      • Set Venom_Units[1] = (Triggering unit)
      • Set Venom_Points[1] = (Position of Venom_Units[1])
      • Set Venom_Points[2] = (Target point of ability being cast)
      • Unit - Create 1 Venom Moving Dummy for (Owner of Venom_Units[1]) at Venom_Points[1] facing Default building facing degrees
      • Set Venom_Units[2] = (Last created unit)
      • Trigger - Turn on Venom Move &lt;gen&gt;


Trigger:
  • Events
    • Time - Every 0.03 seconds of game time
    • Conditions
    • Actions
      • Set Venom_Points[3] = (Position of Venom_Units[2])
      • Set Venom_Points[4] = (Venom_Points[3] offset by 35.00 towards (Angle from Venom_Points[3] to Venom_Points[2]) degrees)
      • Unit - Move Venom_Units[2] instantly to Venom_Points[4]
      • Unit - Turn collision for Venom_Units[2] Off
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Integer((Distance between Venom_Points[3] and Venom_Points[2]))) Less than or equal to 50
        • Then - Actions
          • Unit - Remove Venom_Units[2] from the game
          • Set Venom_Group = (Units within 375.00 of Venom_Points[2] matching ((((Matching unit) is A structure) Equal to False) and ((((Matching unit) is Magic Immune) Equal to False) and (((Matching unit) belongs to an enemy of (Owner of Venom_Units[1])) Equal to True))))
          • Unit Group - Pick every unit in Venom_Group and do (Actions)
            • Loop - Actions
              • Set Venom_Units[3] = (Picked unit)
              • Unit - Create 1 Venom Dummy for (Owner of Venom_Units[1]) at Venom_Points[2] facing Default building facing degrees
              • Set Venom_Units[4] = (Last created unit)
              • Unit - Add Shadow Strike(Dummy Use) to Venom_Units[4]
              • Unit - Set level of Shadow Strike(Dummy Use) for Venom_Units[4] to (Level of Venomous Gale (Hero Use) for Venom_Units[1])
              • Unit - Order Venom_Units[4] to Night Elf Warden - Shadow Strike Venom_Units[3]
              • Unit - Add a 1.20 second Generic expiration timer to Venom_Units[4]
          • Custom script: call RemoveLocation(udg_Venom_Points[1])
          • Custom script: call RemoveLocation(udg_Venom_Points[2])
          • Custom script: call RemoveLocation(udg_Venom_Points[3])
          • Custom script: call RemoveLocation(udg_Venom_Points[4])
          • Custom script: call DestroyGroup(udg_Venom_Group)
          • Trigger - Turn off (This trigger)
        • Else - Actions
 

mapguy

New Member
Reaction score
46
I mean, isn't 375 radius a little too big?

375 is A LOT!

change to 150 but increases the damage. also set the initial damage to be based on how far the project moved until reaching a target.

IT MAKES THE ABILITY MUCH MORE SKILLED TO BE USED!
 

MagnaGuard

Active Member
Reaction score
49
the scales in the top right corner of post
by the exclimation sign and post number
above the join date, location, number of possts
 

DK's Pride

New Member
Reaction score
7
First of all, let me clear something for you.. This spell only poisons the units in the targeted area not everything in its way.

I am 100% sure that it picks every unit in its way ;)

Edit: POST NUMBER 100!!!!!!!!
 

Sonic

New Member
Reaction score
10
my

me want this skill too but i didnt understand you with triggers because one of them is too long that i cant do it... like this!!
Set Venom_Group = (Units within 375.00 of Venom_Points[2] matching ((((Matching unit) is A structure) Equal to False) and ((((Matching unit) is Magic Immune) Equal to False) and (((Matching unit) belongs to an enemy of (Owner of Venom_Units[1])) Equal to True))))
Can someone help me because i creating a map with powerful skills and i need this very much !!!!!THANKS!!!
 

Tom_Kazansky

--- wraith it ! ---
Reaction score
157
@Sonic, here is a demo map that I made, for some reasons, I can't upload it until now :(, take a look :)
--
 

Attachments

  • [Spell] Venomous Gale.w3x
    47.9 KB · Views: 357
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