- Joined
- Dec 22, 2016
- RedCents
- 118¢
Total rookie, no idea how to do this and don't want to mess anything up.The W/A in TCN_Craft.lua: (add the code in orange)
mq.cmd('/notify TradeskillWnd COMBW_ExperimentButton leftmouseup')
mq.delay(750)
mq.delay(3000)
return
end
I added an arbitrary delay to the delay for testing.. You can add it too to get going, at least for crafting. Tradeskill UI should be fine.
It seems to account for now for the delay in the boxes showing up.
As for the can't pick up, yeah it is trying to grab from a bag and yes just like DBG other shenanigans it is causing issues.
The W/A for that is in TCN_Library.lua: (add the code in orange)
mq.cmd('/ctrl /itemnotify in pack' .. pack .. ' ' .. slot2 ..
' leftmouseup')
mq.delay(200)
-- extra delay DBG screw up
mq.delay(3500)
end
if l_count == -1 then
mq.cmd('/shift /itemnotify in pack' .. pack .. ' ' .. slot2 ..
' leftmouseup')
mq.delay(100)
-- extra delay DBG screw up
mq.delay(3500)
end
I want to see how this stuff operates before committing to a release and arbitrary numbers.. if it has to stay that way I will try to tune to the lowest possible with "decent" latency..
Note: I am using standard UI and whatever DBG is doing..










