Search results

  1. N

    Issue point order by ID

    Change udg_Temp_point_2 to udg_Temp_Loc_2. Looks like you're using a different variable than where you copied that code from.
  2. N

    Random Hero Help

    Did you uncheck the 'fixed random seed' option? If not, the same random numbers will be generated every time.
  3. N

    .

    You can just make it a default ability if you change it back into a unit ability after setting the level requirement. If you want a dummy to use a hero ability, you can add the ability with triggers and the dummy will be able to cast it without being a hero unit.
  4. N

    .

    Or make it a hero ability, set the required level > 1, then change it back to a unit ability. It will still be considered an ultimate.
  5. N

    Deal more dmg when hit a unit 3 times

    I thought so too, but I just tested it. Doesn't work. You would have to make a new buff for each attack count, or keep track yourself in a variable.
  6. N

    Techinal Diffuculty with items

    It's probably because your active ability isn't first in the ability list.
  7. N

    Make unit unmoveable - but still able to turn

    Use ensnare? Doesn't that still allow a unit to turn?
  8. N

    Dota Animal Courier Skill

    You should be able to do it. If you can't get summon bear to work, you can use any of the item summoning abilities and change the duration to 0 to make it permanent.
  9. N

    Degrees' Speed

    To try explaining it the opposite way, wc3 movespeed is equal to distance traveled in 1 second. So if you want to spin around a point at 1050 movespeed, and you are adjusting position every 0.3 seconds, you want to move 1050*0.3=31.5 distance each time. Then you can find the angular adjustment...
  10. N

    Orders Stop Help?

    Roar, Battle Roar, Howl of Terror, Fan of Knives. Those 4 all work the same way as far as animation/order interruption goes.
  11. N

    Hashtable Leak

    Yes, you still have to destroy groups, locations, etc. Clearing the hashtable values only removes the references stored in the hashtable.
  12. N

    Does this leak?

    It doesn't matter. Either is as good as the other.
  13. N

    Remove "/0" on Food: 0/0

    I think you do it by setting the max food level to 0.
  14. N

    Set movement speed by triggers, how does this stack with bonuses?

    You can set the fade time to -1 (hold shift+enter) to remove invisibility. It still has other side effects though (Like being able to walk through other units).
  15. N

    Slide Skill with an AoE Knockback

    I'm thinking the problem is your ifs in the 3rd trigger. You start with 2 and subtract .03 each iteration. That's not going to ever end up as 0.00. if you just move your Unit Group - Remove (Picked unit) from hammertargetz_Copy_3_Copy up into the else of the previous if block it might work.
  16. N

    Metamorphosis

    I think the best way to do it is to make both sets of abilities (Metamorphosed hero and regular hero) unit abilities. You make all the hero abilities hidden dummy abilities (can be based on channel for example) then you set the level of your unit abilities whenever the metamorphosis ability is...
  17. N

    Warcraft 3 Newgen WE and Normal WE Crashing on custom content deletion

    I think I ran into this when I imported my unit data from an older map. I never did find a solution though.
  18. N

    Some Questions "???"

    Here's a good tutorial on setting up the experience constants: http://world-editor-tutorials.thehelper.net/cat_usersubmit.php?view=68382 The gold a creep gives is set in the object editor (Stats - Gold Bounty Awarded). You have to set it for each unit type individually. You also have to enable...
  19. N

    Target units in a cone or line clarification.

    Unfortunately, there's no built-in way. You have 2 options: 1) split up the area you want to target into a bunch of circles 2) use a big circle that covers your entire target area and then ignore any units not in your cone/line. The good news is you finally get to use something from your...
Top