Search results

  1. ThePlague

    Searing arrows problem

    Yes you do and I jsut noticed why its not working that part of the code should actually be: call TriggerAddCondition(PartTwo, Condition(function Conditions_Two)) call TriggerAddAction( PartTwo, function Actions_Two )
  2. ThePlague

    Can i delete auto-cast from spell?

    No but im pretty sure most spells have a non-autocast version. Look through neutral hostile and you can find copies of alot of spells.
  3. ThePlague

    Disabling Auto-Attack

    Use a trigger to revive.
  4. ThePlague

    Incinerate based spell.

    Its ranged only for w/e reason. Instead of cleave you could give a short range and trigger a small aoe damage. Or add bouncing attack or artillery line attack
  5. ThePlague

    Damage block

    But how would you nullify the damage so that even if the unit had only 1 hp it would be ok?
  6. ThePlague

    Spell Request [Difficulty: Hard]: Magnet Tower

    besides my minor (not really) oversights would it actually run worse? was easiest way i could think of to avoid using any global variables. Triggeractions do not get destroyed with DestroyTrigger(...), which means that they leak. Note that I my code, I only add a condition and then use that...
  7. ThePlague

    Searing arrows problem

    The first trigger you had works for manual casting. My Jass trigger checks if a unit in a certain unit group attacks something and then gives it mana when the target is actually hit. The 2 basic triggers put a unit inside of that unit group when autocast is turned on (and remove it when its...
  8. ThePlague

    Spell Request [Difficulty: Hard]: Magnet Tower

    Might just be because of all ur header info but mine seems simpler to me (or maybe cuz i know exactly what i did). its no that bad just because its normal Jass :( at least im not using the default conditions when u convert to custom text! (if not condition then return false else return...
  9. ThePlague

    Spell Request [Difficulty: Hard]: Magnet Tower

    wow so long 0o I cant follow everything its doing so many different functions. Two quick questions 1. Hows my trigger? :D any general things i should do differently? 2. What exactly are the handlevars doing in your trig? and dont they have a downside? I never understood those systems and it...
  10. ThePlague

    Bash ability is bugged?

    wow nice looking map. I have no idea why the game would do that with bash and miss. Although I remember bash has a true/false category called "never miss" any chacne u enabled it for some levels? As an alternate solution you could always trigger the stun from bash.
  11. ThePlague

    Searing arrows problem

    Autocast-ON E Unit - A unit Is issued an order with no target C (Issued order) Equal to (Order(flamingarrows)) A Unit Group - Add (Triggering unit) to UnitGroupVariable Autocast-OFF E Unit - A unit Is issued an order with no target C (Issued order) Equal to (Order(unflamingarrows)) A Unit...
  12. ThePlague

    Searing arrows problem

    It will take 4 triggers in total. 1 of the triggers is the one you have at start 1 is this one in case of autocast function Trig_Untitled_Trigger_004_Conditions takes nothing returns boolean return IsUnitInGroup(GetAttacker(), udg_UnitGroupVariable) endfunction function...
  13. ThePlague

    Searing arrows problem

    T.T i cant right now. If you havent got it by then il post it later.
  14. ThePlague

    Need simple ability idea for ogre magi hero

    What about something where they split? You could base it off mirror image to look cool ^^ then trigger so images become 2 seperate units one with new poweful spells and one with high offensive stats. Make it lasts 60 secs or something. Sorta like pandarens storm earth fire
  15. ThePlague

    Damage block

    In DotA Lanaya has a spell taht nullifies damage from aset number of hits, and Iv seen similar things in a few other places. How is this done? If the unit has 1 hp it should die before any healing trigger nullfies damage. SO anyone know how this effect is triggered?
  16. ThePlague

    Making 1 Armor give 1% Damage Reduction

    Maybe instead of using armor you can use the skill mountain giants have? (i forget the name) It reduces damageby a set number, there might be a way to set that to be a %
  17. ThePlague

    Making 1 Armor give 1% Damage Reduction

    First off I dont think its logarithmic. Logarithms have no limit and therefore u could go over 100% reduction. Im pretty sure its some sort of function with a hyperbolic curve with a limit at 100% but anyways... only way to do what you want would be to trigger it so that you get extra armor...
  18. ThePlague

    A building within range?

    Use begins constructing not finishes constructing that way no time will be wasted. Then also just trigger resource return.
  19. ThePlague

    Searing arrows problem

    When the spell is on autocast and the unit attacks it doesnt count as using an ability. So if you want it to still work you would need to make a trigger to detect when the unit attacks and if searing arrows is on. To detect if searing arrows is on or off use a seperate trigger checking for...
  20. ThePlague

    Spell Request [Difficulty: Hard]: Magnet Tower

    Hey so does this work for you?
Top