• 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.
  • The Hive's 22nd Icon Contest: Creep Abilities is now concluded, time to vote for your favourite set of icons! Click here to vote!
  • ✅ The POLL for Hive's Texturing Contest #34 is OPEN! Vote for the TOP 3 SKINS! 🔗Click here to cast your vote!
  • ✅ The POLL for Hive's Techtree Contest #20 is OPEN! Vote for the TOP 3 FACTIONS! 🔗Click here to cast your vote!

[JASS] Searching for: "Item being dragged"

Status
Not open for further replies.
Hey guys.
I'm working on an inventory system that allows you to store items in a bag, while the bonus of the items is only applied if they are in it. I got the full stat part working, but my problem is to get the items which are "dragged into the bag". My "dragging into the bag" is actually "dragging onto the bag" and removing(saving) it, but that doesn't mather.
I already have something :P
JASS:
function Order2Slot takes integer o returns integer
        local integer i = o-852002 //Drag on slot 1 is 852002, on Slot 6 852007, guess the rest :P
        if i >= 0 and i <= 5 then
            return i
        endif
        return -1
    endfunction
called with:
JASS:
call BJDebugMsg(GetItemName(UnitItemInSlot(GetTriggerUnit(), Order2Slot(GetIssuedOrderId()))))

Yes,this is working. If I drag an item on the bag, this will show "bag" (or in my case "Backpack"). My problem is to find the item "dragged on the bag".

Could you help me pls? :P

Greets Justify.

PS: Horrible text like always, sry^^
 
Last edited:
You're making things harder than they really are. =)

JASS:
function Trig_test_Actions takes nothing returns nothing
  call BJDebugMsg(GetItemName(GetOrderTargetItem())) //GetOrderTargetItem will return the item you dropped in the bag
endfunction

function Trig_test_Conditions takes nothing returns boolean
    local integer i = GetIssuedOrderId()
    return i > 852001 and i < 852008 //To detect the drop event.
endfunction

//===========================================================================
function InitTrig_test takes nothing returns nothing
    local trigger t = CreateTrigger(  )
    call TriggerRegisterAnyUnitEventBJ(t, EVENT_PLAYER_UNIT_ISSUED_TARGET_ORDER)
    call TriggerAddCondition( t, Condition(function Trig_test_Conditions ))
    call TriggerAddAction( t, function Trig_test_Actions )
    set t = null
endfunction
 
Status
Not open for further replies.
Back
Top