Recent content by CrackUps

  1. C

    Max Doodad Health :(

    This will work, also you could just make its armor type divine or something really strong
  2. C

    Delete faster

    Dude thats what they're explaining how to do. If you create a NEW map and export all the object data from that NEW map then imported it into your map itll overwrite all the custom object data. Alternatively hit the reset button.
  3. C

    Spell Pudge Wars Meat Hook Revisited

    Works perfect now, well atleast that aspect :thup: Nice spell;)
  4. C

    Spell Pudge Wars Meat Hook Revisited

    If you've got the grapple setting set to true, then throw a hook and blink behind a building you can get stuck. Image attached to show you what I mean
  5. C

    Ugh - Leaderboard

    It may not be registering the dying unit as an enemy, it might think it's neutral or something stupid like that. Try temporarily removing that condition and see if it works properly then.
  6. C

    Creating New Spells in WinMPQ?

    Care to post the map? It'd be easier if I could have a look
  7. C

    Creating New Spells in WinMPQ?

    Have you based your spell off of the spell "Channel" by any chance? If so make sure the values for DataC1, DataC2... etc are all set to Visible or if you're editting the .SLK files then the value should be 1
  8. C

    Detection from what angle unit is hit/uncovering invisible units

    Use something like this: if ((RAbsBJ((GetUnitFacing(GetTriggerUnit()) - GetUnitFacing(GetAttacker()))) <= 105.00)) then call UnitDamageTarget(GetAttacker(), GetTriggerUnit(), ((0.25 * I2R(GetUnitAbilityLevel(GetAttacker(), 'A000'))) * I2R(GetHeroAgi(GetAttacker(), true))), true, false...
  9. C

    In Need of Hashtable Tutorial

    I really don't have much of a clue when it comes to vJass and structs. Are you just able to explain to me what the parentKey and childKey are?
  10. C

    In Need of Hashtable Tutorial

    Hey, With the recent patch to 1.23b I'm in need of a brief run down on how to use the new natives. Specifically I need to know how to use the Save and Load Handle functions. What are the parent and child key? And how would I use the new natives to store handles in a hashtable the same way you...
  11. C

    Compatibility with Patch 1.23b

    I replaced all my H2I calls with GetHandleId and it still doesn't seem to work. Any ideas on what to do?
  12. C

    Compatibility with Patch 1.23b

    How do you make maps that were previously running fine able to work on the latest patch?
  13. C

    Can not test map

    Howd you fix the problem? The same is happening to me.
  14. C

    How to take square roots in JASS

    You could always just raise the value to the power of 0.5 eg. 25 ^ 0.5 = 5
  15. C

    Attacking unit has "Ability" learnt - line

    Im assuming you're talking about a condition and you're coding in GUI, if so so then yes there is: (Level of Your Ability for (Attacking unit)) Greater than (>) 0 Add an Integer comparison then select "Unit - Level of Ability for Unit" then just set what ability your checking for. What...
Top