Search results

  1. ZiggyMcjoney

    Ability Questions: Changing Targeting Types?

    Sure does, and the armour multiplier field is indeed set to 1. Confusing isn't it? :P
  2. ZiggyMcjoney

    Ability Questions: Changing Targeting Types?

    Hi guys, I've got a couple of questions to ask. 1. How would I make a spell such as Defense Matrix be able to target allies? At the moment it just works on the caster. 2. I've made a couple of items for different units to use. My weapons work perfectly, however my armour is causing me...
  3. ZiggyMcjoney

    You're most entertaining mistake?

    Back in WC3 I was working on my first jump ability. I went into multiplayer on the map with some friends, got to level 6 where the ability was available, ran into combat, cast jump, and my character soars into the sky at a snail's pace, gently lifting itself up into the air at a rate of about...
  4. ZiggyMcjoney

    Data Editor Wiki/Guide/Summary?

    Hey guys, I've just recently started having a look at the SC2 editor after playing quite a bit of ladder and a tiny bit of campaign over the last week. The new data editor, as many of us have noted, is awfully frightening. Back in WC3, we had an object editor 'guide' which pretty much...
  5. ZiggyMcjoney

    Help with Map Triggers

    In the Integer A loop in the "Revive Hero Timer" trigger, remove the items from ItemDummy after you give them to the newly created hero. If you don't do this you'll have a full inventory ItemDummy being given up to six more items...which will cause them to appear on the ground somewhere...
  6. ZiggyMcjoney

    +x skill points at level=x? and form question

    Should be an Integer comparison.
  7. ZiggyMcjoney

    +x skill points at level=x? and form question

    Events A unit gains a level Conditions Level of (Triggering unit) Equal to <the level you want> Actions Hero - Modify unspent skill points of hero: Add <number of points> That's pretty much it.
  8. ZiggyMcjoney

    Write this triggers in jass please

    Just select the trigger and then go Edit > Convert Custom Text. Be careful though as this cannot be undone. If you want a copy of the GUI trigger, copy the trigger first and use the new copy as the JASS version.
  9. ZiggyMcjoney

    Quick Question

    Are you sure it is the cause of the arrays, and not just something in the trigger using the array? Might wanna post your triggers.
  10. ZiggyMcjoney

    Show ally heroes without controlling them?

    You could also use a multiboard to display all player health values in the top right corner of the screen. That's how I usually do that sort of thing.
  11. ZiggyMcjoney

    Frost Aura in Item [HELP] ??

    Yes, it will work if you change the targets allowed to enemy. Dummy unit having cold attack is overcomplicating things by miles :P
  12. ZiggyMcjoney

    Frost Aura in Item [HELP] ??

    Get Endurance Aura, and in the field for attack speed, simply Shift + Double-click it, and set the value to -0.10. The important part is the Shift + Double-click, which will break the limits on the WE and allow you to go into negative values.
  13. ZiggyMcjoney

    Give item won't work.

    Reread, I edited the post before with the solution.
  14. ZiggyMcjoney

    Give item won't work.

    Does the Soldier unit have an inventory? EDIT: Woops, no. I found the obvious solution. You've created an infinite loop. The unit picks up Sniper, then he is given Sniper again So the trigger fires off again... and again... and again... And so your game crashes rather than submitting to...
  15. ZiggyMcjoney

    how do i make this mui?

    Set DyingUnit[Player number of (Owner of (Triggering unit))] = (Triggering unit) If you do this, and another hero owned by the same player dies, the variable will be overwritten. What's more is thati n your example you've used "Triggering player", which is not an integer and therefor...
  16. ZiggyMcjoney

    how do i make this mui?

    That isn't MUI, it is MPI. If the OP wants players to have more than one hero at a time, this will not work.
  17. ZiggyMcjoney

    The Spell Book Item Which I Edited Messed Up

    If all you've done is change it from an Item ability to a Hero ability, you need to add an icon for learning the spell, and also a tooltip for both learning and using the spell. You want the fields: Art - Icon - Research Text - Tooltip - Learn Text - Tooltip - Learn Extended Text -...
  18. ZiggyMcjoney

    Different abilities based on the same ability

    You can't have more than one of the same base ability on a hero. There isn't any way around it. use "Channel" as your base ability and changed the Base Order ID if you want to get the targeting image of Flame Strike. Or, if you want more than one FLame Strike ability on the hero, create the...
  19. ZiggyMcjoney

    Bug or Problem?

    Rather than using the conditions you're using, I'd use: "(Picked player) slot status Not equal to Is playing" That's the one I always use, and it always works, so yeah :P Also, just use "Remove (Picked unit)" rather than giving it an expiration timer of 0.01 seconds.
  20. ZiggyMcjoney

    set exp needed for each lvl, how?

    Here's a tutorial on the subject, explaining it in a fair amount of depth. http://world-editor-tutorials.thehelper.net/cat_usersubmit.php?view=68382 You probably won't need ALL that information, but the stuff you need is also there. Check it out!
Top