Search results

  1. annihilator127

    New to WC3 editor. [Creating a wall].

    The areas shaded purple simply indicate areas on the map that land units cannot travel over.
  2. annihilator127

    Creep Spawning System

    In the dialog that allows you to choose a trigger function, there is a list of categories near the top left corner. This list of categories includes an option to search for function names containing text that you enter. Use that next time you can't find something.
  3. annihilator127

    Why do you have -500 rep?

    Why do you have -500 rep?
  4. annihilator127

    In need of help with world editor WC3

    Try putting a 'Show Message' action in your second trigger, just before the status message, to verify that it is being executed. If you get the message, you're probably not being added to the group HeroPlayerGroup_Quests. If you don't, the trigger is probably not being enabled. Also, I...
  5. annihilator127

    The Happy Holidays thread

    I have been using GUI triggers in my maps but I'm relatively new to JASS. So I have found a way to include GetLocalPlayer() queries in a GUI trigger without turning the whole thing into JASS. It's simple: GetLocalPlayer query in a GUI trigger Actions Custom script: if (...
  6. annihilator127

    How to play a sound for certain player?

    This is what I have in my map: To play an 'error' sound for only Owner of Triggering Unit: Custom script: if ( GetLocalPlayer() == GetOwningPlayer(GetTriggerUnit()) ) then Sound - Play Error <gen> Custom script: endif I have tested this and it does not desync the...
  7. annihilator127

    Killing Units in an area

    For the event, use the generic unit event 'A unit dies'. For the condition, check that the dying unit is a Hero. This is under Boolean Comparison > Unit Classification Check. For the action, use a 'Pick every unit in a unit group' loop. This is in the 'Unit Group' category. It will pick every...
  8. annihilator127

    Crime Occupy!

    One of these pictures is larger than my screen, and is making the home page scroll horizontally.
  9. annihilator127

    Reviving creeps (dota style?)

    As I understand it, what you're doing is actually making some modifications to Warcraft's normal rules. I don't think that's lame at all. There is a possible issue though: at level 10 your Hero will have maxxed out all of their abilities, so if you want to go beyond there, you should create...
  10. annihilator127

    I need help organising 2 teams with 10 players

    Enabling 'Fixed Player Settings' in Scenario > Force Properties should do this. Many non-melee maps do this including DotA.
  11. annihilator127

    Mana Icon

    (Picked unit) is only valid in a 'Pick every unit in unit group' loop. But the rest of it should work fine. I don't know what will happen if you have anything else dependent on food though.
  12. annihilator127

    World Unlicensed World of Warcraft theme park opens in China

    It's unlikely that we all have heard of World of Warcraft.
  13. annihilator127

    Crash

    I notice you're referring to the triggering unit after removing it. Consider changing your trigger to this: Kenny Lee ... Actions ... Set TempPoint = Position of (Triggering unit) Unit - Create 1 Kenshi` for (Owner of (Triggering unit)) at...
  14. annihilator127

    Y Doesn't this heal or damage the targeted unit?

    This is just my opinion, but I believe abbreviating things is OK in online chat (because you need to type quickly) as long as the other person can understand you but posting in forums is more formal and deserves proper spelling, especially because a lot of newbs post here. Someone once replied...
  15. annihilator127

    Random is not random

    If you're using a temp variable you can have a 'Text Message' to see if it's actually coming up 7 every time. You should really have different names for the units, even if you just put something in Editor Suffix so that it doesn't appear in game. (Use Fixed Random Seed makes no sense to me. It...
  16. annihilator127

    Report Use Internet Explorer? You're Probably Dumb, Study Says -UPDATE (fake story)

    Not to mention that it's faster, as advertised. I'm writing this on Google Chrome right now :) IE beats Chrome in only two areas as far as I'm concerned: Its InPrivate Filtering helps get rid of ads (but also makes some sites not work) The Home of the Minecraft Painterly Pack has been known...
  17. annihilator127

    Unit visibility problem

    1. Increasing the sight radius won't fix this problem; it will only allow the unit in question to see farther out. 2. 800 centimetres (that's what I call the units used to measure length in Warcraft III) is not too big to fit on their screen. I am not aware of any way this can be done. I tried...
  18. annihilator127

    Damage detection

    It seems 'Takes damage' is only available for 'Specific Unit Event'. To use it for all units on the map you will need to add the event when each unit is created: Unit Registration 1 Events Map initialisation Actions Unit Group - Pick every unit in (Units in Playable Map...
  19. annihilator127

    multiboard time help

    This tutorial shows you how to use countdown timers, but it also shows you how you can put the game time in a multiboard. It's not simple because 1) timers can't count up and 2) timers can't operate in a multiboard. So you have to do it with three variables, for the hours, minutes and seconds...
  20. annihilator127

    Elevator Blocking

    If you press 'P' in the World Editor you can see the ground pathing map. Areas coloured normally can be walked over. Areas coloured blue can be walked over but not normally built on. Areas coloured pink cannot be walked over. As you can see the elevator does not usually block units from...
Top