• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

[JASS] Help with this function

Status
Not open for further replies.
Level 11
Joined
Dec 31, 2007
Messages
780
JASS:
        if AUTO_COMBINE then
            loop
                call TriggerRegisterPlayerUnitEvent(TRIGGER, Player(index), EVENT_PLAYER_UNIT_PICKUP_ITEM, Filter(function SafeFilt))
                if not NEED_PICK_UP then
                    call TriggerRegisterPlayerUnitEvent(TRIGGER, Player(index), EVENT_PLAYER_UNIT_ISSUED_TARGET_ORDER, Filter(function SafeFilt))
                endif
                set index = index + 1
                exitwhen index == bj_MAX_PLAYER_SLOTS
            endloop
            call TriggerAddCondition(TRIGGER, Condition(function Check))
        endif
        set ING_TABLE = Table.create()
        set RES_TABLE = Table.create()
        set COMBINE_TABLE = HandleTable.create()
    endfunction

how can i make this function to filter "attack" commands? (im a guier so i might have no idea what im talking about :/)
 
Status
Not open for further replies.
Top