Stop a unit from casting a spell once it's clicked

M4573R

New Member
Reaction score
1
I want my unit to only be able to cast an ability if no enemies are near.

I tried this:
Code:
Turn On
    Events
        Unit - A unit Is issued an order with no target
    Conditions
        (Issued order) Equal to (Order(immolation))
    Actions
        Unit Group - Pick every unit in (Units within 500.00 of (Position of (Triggering unit)) matching (((Matching unit) belongs to an enemy of (Owner of (Triggering unit))) Equal to True)) and do (Actions)
            Loop - Actions
        If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            If - Conditions
                (Number of units in (Last created unit group)) Equal to 0
            Then - Actions
                Trigger - Add to Out of Mana <gen> the event (Unit - (Triggering unit)'s mana becomes Less than or equal to 10.00)
                Unit - Add Ghost to (Triggering unit)
            Else - Actions
                Unit - Order (Triggering unit) to Night Elf Demon Hunter - Deactivate Immolation

It doesn't work. The spell still turns on.
 

YourFace

<span style="color:#9C9C9C;"><strong>Runner Up - T
Reaction score
91
Numbers of units in last created unit group?
EDIt i dont think just because you're picking units in range is creating a unit group
 

M4573R

New Member
Reaction score
1
Edit: I'm pretty sure it works, because it doesn't give ghost to the unit. The order for turning the spell off doesn't work.
 

YourFace

<span style="color:#9C9C9C;"><strong>Runner Up - T
Reaction score
91
if the condition doesn't work, then I doubt the actions after it will,
 

M4573R

New Member
Reaction score
1
But isn't that the point of the condition? If it doesn't pass, then the 'Else' actions will take place.
??

That is kind of a dumb way of doing it. BUT this doesn't work either:

Code:
Turn On
    Events
        Unit - A unit Is issued an order with no target
    Conditions
        (Issued order) Equal to (Order(immolation))
    Actions
        If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            If - Conditions
                ((Units within 500.00 of (Position of (Triggering unit)) matching (((Matching unit) belongs to an enemy of (Owner of (Triggering unit))) Equal to True)) is empty) Equal to True
            Then - Actions
                Trigger - Add to Out of Mana <gen> the event (Unit - (Triggering unit)'s mana becomes Less than or equal to 10.00)
                Unit - Add Ghost to (Triggering unit)
            Else - Actions
                Unit - Order (Triggering unit) to Night Elf Demon Hunter - Deactivate Immolation
 

BarzahdX

Active Member
Reaction score
18
I don't understand the point of your condition--what is the goal of this trigger?
 

YourFace

<span style="color:#9C9C9C;"><strong>Runner Up - T
Reaction score
91
try the event
unit-starts the effect of an ability
and also create a unitgroup for the condition
 

M4573R

New Member
Reaction score
1
If the unit casts the spell immolation, and there are any enemies within 500 range of him, it will turn the spell off, otherwise continue normally.

Is there a better way to stop the spell before it even fully starts?


Edit: Changing the event to starting the effect of an ability doesn't work. The trigger doesn't even run for some reason.
 

AceHart

Your Friendly Neighborhood Admin
Reaction score
1,495
> (Number of units in (Last created unit group)) Equal to 0

There is no "last created unit group" in that trigger...

Adding the same event several times to a trigger is not a good idea either.
If the event actually happens, the trigger will run several times.

I also don't think you can instantly deactivate Immolation either.
There's that 0.5 seconds casting time... and the trigger runs faster than that.

"Starts the effect" is unlikely to work, unless you cast the ability by hand on a unit.
 

M4573R

New Member
Reaction score
1
Using triggers to stop a spell

Triggers can detect when a unit begins casting a spell, or starts the effect of a spell, or is issued a spell order. How would I use these, and other triggers to stop a unit from casting a spell.

A good way to describe it is with Tiny's toss from DotA. You cast it, and it chucks a random unit that is around you, but if the unit walks away at the right time, it would waste the cooldown and mana. But it was patched to prevent this. There should be a way to stop a unit from casting a spell right when he starts. I tried using the issue order - stop trigger, but it didn't work :(. Maybe I wasn't using it with the right event.
 

perkeyone

something clever
Reaction score
71
maybe you could try pausing and then unpausing the unit?
or some kind of "cancel last issued order" thing
 

vypur85

Hibernate
Reaction score
803
> Maybe I wasn't using it with the right event

Code:
Event
 [B]A unit begins casting an ability[/B]
Condition
 Ability being cast Equal to YourAbility
Actions
 If then else
   Whatever your condition to stop the ability is here
 Then - Actions
   Unit - Order (Triggering unit) to Stop
 Else - Actions

The above will stop unintended spell casting, depending on conditions, and retain mana and cooldown.
 

M4573R

New Member
Reaction score
1
Its doing what it did before. Its half working. The if check is running, but it won't stop the spell. I think it's because I based it off immolation, and since its an instant toggle, you can't stop it.

Code:
Turn On
    Events
        Unit - A unit Begins casting an ability
    Conditions
        (Ability being cast) Equal to Enshroud 
    Actions
        If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            If - Conditions
                ((Units within 500.00 of (Position of (Triggering unit)) matching (((Matching unit) belongs to an enemy of (Owner of (Triggering unit))) Equal to True)) is empty) Equal to True
            Then - Actions
                Trigger - Add to Out of Mana <gen> the event (Unit - (Triggering unit)'s mana becomes Less than or equal to 10.00)
                Unit - Add Ghost to (Triggering unit)
            Else - Actions
                Unit - Order (Casting unit) to Stop
 

vypur85

Hibernate
Reaction score
803
> I based it off immolation

Yeah. It's an instant spell. You can't cancel it using my way above. Try this instead:


Code:
Turn On
    Events
        [B]Unit - A unit is issued an order with no target[/B]
    Conditions
        [B](Issued order) Equal to Order(immolation)[/B]
    Actions
        If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            If - Conditions
                ((Units within 500.00 of (Position of (Triggering unit)) matching (((Matching unit) belongs to an enemy of (Owner of (Triggering unit))) Equal to True)) is empty) Equal to True
            Then - Actions
                [B]If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    If - Conditions
                        (Triggering unit) is in UNITGROUP Equal to False
                    Then - Actions
                        Trigger - Add to Out of Mana <gen> the event (Unit - (Triggering unit)'s mana becomes Less than or equal to 10.00))
                        Unit group - Add (Triggering unit) to UNITGROUP
                    Else - Actions[/B]
                Unit - Add Ghost to (Triggering unit)
            Else - Actions
                Wait 0.20 second game-time
                [B]Unit - Order ([I]Triggering unit[/I]) to Unimmolation[/B]

Try the above bolded stuff. But it won't prevent the cast. Just stops the cast after 0.20 seconds.
 
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

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top