Recent content by AlicanC

  1. AlicanC

    Trying to disable unit orders in a region - Trigger doesn't work

    Yes I solved that problem. Now heroes can't use abilities, but some abilites make heroes lose mana and shows casting animation. (Bladestorm, Divine Shield, ...) Edit: This is the trigger: function Trig_Hero_Select_Orders_Conditions takes nothing returns boolean if...
  2. AlicanC

    Trying to disable unit orders in a region - Trigger doesn't work

    Thanks for your help. -- I am using enumerators in C++ and "foreach" loops in PHP. I feel like I am doing something wrong when I use a seperate function. Also I don't want to use globals to pass information. Edit: It doesn't work. Other triggers work fine, but WC3 disappears after 6-7 seconds...
  3. AlicanC

    Trying to disable unit orders in a region - Trigger doesn't work

    I have a triger called "Hero Select Orders". It's a part of my double-click-hero-selection system. It has to disable all orders issued to that unit. (I remove 'Aatk' and 'Amov', but they still can use abilities.) I made this trigger, but when I enable this all triggers gets disabled somehow...
  4. AlicanC

    [GUI/JASS] Looping all abilites of a hero

    All of those functions need "abilcode". I don't want to hardcode all abilcodes.
  5. AlicanC

    [GUI/JASS] Looping all abilites of a hero

    I think this is imposible.
  6. AlicanC

    Getting "Undeclared variable" for declared functions

    Thanks. I was trying to replace "code" with "function" when declaring the function :/
  7. AlicanC

    Getting "Undeclared variable" for declared functions

    I am trying to code a set of functions to make adding commands like "-<commandname> <parameter>" easier. Here is the functions I use: //Conditions function CONDITION_NONE takes nothing returns boolean return true endfunction function CONDITION_HOSTONLY takes nothing returns boolean...
  8. AlicanC

    [GUI/JASS] Looping all abilites of a hero

    ??? What about the abilities?
  9. AlicanC

    [GUI/JASS] Looping all abilites of a hero

    I've made a double-click-hero-selection-system. When a player selects a hero, it becomes his/her hero, so everybody can select a hero once to see its abilites. (Preview) All heroes are in the same region and I want to pick them, make all of their abilities level "1" and disable the "+" button...
  10. AlicanC

    Can't change map pathing

    I am trying to modify here (In yellow): Edit: Here is another screenshot:
  11. AlicanC

    Can't change map pathing

    I am modifying an existing map, but I have a problem. When I turn "View -> Pathing - Ground" on I see grey places that I can't put any units in WE and can't pass in W3: How can I modify that gray place to free up some space for my modification?
  12. AlicanC

    Where can I find the original unprotected ETS?

    I am searching for the original unprotected Enfo's Team Survival. I've found one and made lot's of changes, but today I realised that the map I've found was edited and teams, leaderboard, etc. were broken. It would be really great if someone can give me the original unprotected ETS. Thanks in...
  13. AlicanC

    Item System is not working

    I will hardcode it by checking the Item-Type. Edit: It works now; but I have to add every Ring I make to this trigger: Rings Events Unit - A unit Acquires an item Conditions Or - Any (Conditions) are true Conditions (Item-type of (Item being...
  14. AlicanC

    Item System is not working

    I have never had a problem with empty elses. Actually they are not empty. They have "Do Nothing".
Top