Recent content by carbonduck

  1. C

    wont work

    The bug in question was a JASS work-around that converted a handle into an integer. The purpose of exploiting the bug was to get the ID values associated with certain handles. Blizzard didn't have a problem with that. Again, unfortunately, someone eventually (read: recently) found out a way to...
  2. C

    wont work

    Stop being so ignorant. All of those maps that stopped working were exploiting a bug in JASS in order to do some things. Unfortunately, that same bug could be used in quite a malicious manner, so Blizzard fixed it. End of story.
  3. C

    Can't add units to unit group

    The GroupClear() function worked beautifully; I never knew that existed. Thanks a lot! :) Rep-plussed.
  4. C

    Can't add units to unit group

    I am modifying a spell from one of the spellpacks (Simple Spell Pack) called Ion Canon. Originally, the spell would deal variable damage since each dummy unit in the beam can inflict aoe damage but I am just modifying it so that the beam only hits each unit once. I'm doing this by tracking...
  5. C

    Command Aura-based Icon Position

    Just did some testing. I tested it on a different hero and the issue was still there, so it's not hero-specific. It's definitely the ability. The ability is neither in a spellbook, nor is it a turn-off/turn-on ability. I've gone through the ability data dozens of times and I'm still stumped. :(...
  6. C

    Command Aura-based Icon Position

    I have an ability based off Command Aura (ID: ACac) and the "Art - Button Position" isn't working. The research icon position is fine but once I learned it, it's supposed to show up in the bottom left spot (X: 0, Y: 2) but it appears in the third bottom spot (X: 2, Y: 2). I have other abilities...
  7. C

    JASS NewGen Pack 1.5d

    I am in a similar position to Blade619. I've always used vanilla World Editor without any addons but now I'm looking to at least try out this NewGen that everyone keeps talking about. If I download the links from the first post, will they all be the latest versions? If not, is there a thread...
  8. C

    Flag Wars [Beta]

    Flag Wars [Beta] Last Version: v0.92 - 02/19/10 View the changelog Website: http://flagwars.2x.nu Forums: http://flagwars.2x.nu/forums Overview Flag Wars is a unique twist on the classic Capture-the-Flag genre. With a synergistic combination of player classes, flag return, capture points and...
  9. C

    Ability ToolTip[help]

    And somehow the editor will know exactly how you want it formatted... I want that feature. T_T
  10. C

    Stun doesn't interrupt channeling

    The cooldown idea was so obvious, I don't know how I didn't think of it earlier! Thanks a lot, Weeps. +rep! :thup:
  11. C

    Stun doesn't interrupt channeling

    Oh, ok. I see what you're saying. Do you have a potential remedy for that? While the unit is channeling, I want every stun in the game to disrupt the channeling and force the unit to stop. Do I have to trigger this? Perhaps there is an easier way besides triggering every ability that has a stun.
  12. C

    Stun doesn't interrupt channeling

    I'm not sure what you mean. Can you elaborate? I'm not re-casting the ability after being stunned. If I channel, get stunned, and do nothing, it continues channeling.
  13. C

    Stun doesn't interrupt channeling

    "Data - Disable Other Abilities" is already set to False. Any other ideas? :(
  14. C

    Stun doesn't interrupt channeling

    I have an ability based off Channel such that the caster channels for a certain duration of time and if he successfully channels the whole duration, an event occurs. Now, here's my dilemma. When a hero is channeling this ability, whenever he is hit by a stun, he doesn't stop channeling... he...
  15. C

    What is Hashtables?

    A hash table is a data structure where the "index" is calculated based on a hash function of the incoming data. You can think of it as a line of buckets from 1 to N where N is the size of your hash table. For every data you want to enter, you run it through a hash function to get a value and...
Top