Page 1 of 3

Darkfall Online Looter Macro [AutoHotKey]

Posted: March 7th, 2009, 6:22 pm
by deadye
Loot Function- Works for dropping loot in backpack, backpack to bank, armor to paperdoll, and stacking, etc. Saves destination in a file for next time you play.
Alt-RightClick - Set Loot Destination
sets the x,y position of your loots destination. You can do this anytime.
Alt-LeftClick - Drag Loot
Drags loot from anywhere and drops it on loot destination, then cursor jumps back to original location. Simply hold Alt and click on loot.


Code:

Code: Register to unlock hidden link

IniFile := "C:\loot.txt"
FileGetSize, size, %IniFile%
if (size = "") {
MsgBox Setting up
IniWrite, 1300, %IniFile%, Loot, xdest ; --- destination x pos
IniWrite, 700, %IniFile%, Loot, ydest ; --- destination y pos
} else {
IniRead, xdest, %IniFile%, Loot, xdest ; --- destination x pos
IniRead, ydest, %IniFile%, Loot, ydest ; --- destination y pos
}
CoordMode, Pixel



$!Lbutton:: ;quick loot -------------------------

MouseGetPos, x1, y1
MouseClickDrag, left, x1, y1, xdest, ydest, 0 ;0 is mouse speed, 0 is instant
MouseMove, x1, y1, 0 ;0 is mouse speed, 0 is instant

return

$!Rbutton:: ;loot destination ------------------------->

MouseGetPos, xdest, ydest
IniWrite, %xdest%, %IniFile%, Loot, xdest
IniWrite, %ydest%, %IniFile%, Loot, ydest

return
Use this in autohotkey. Make sure to create a empty text document in C:\ named loot.txt

Enjoy.
(from phant0m)

I've been using this and it works wonders if your fighting for loot!

Posted: March 7th, 2009, 6:36 pm
by danzar
Can members Yay/ Nay this . If you Nay please explain.

Posted: March 7th, 2009, 9:02 pm
by darkmaka
Yay! Tested it it's great!
Just a litle problem but i've already report it

Posted: March 7th, 2009, 9:21 pm
by blacryan
Works insanely well.

It actually has multiple uses. You can also set your 'loot point' to be the sell window when you are goign to sell a bunch of !@#$%^* then alt+left click your loot you want to sell.

Def confirmed and move that !@#$%^* asap!

Posted: March 8th, 2009, 1:11 am
by tault_kaeus
YAY for this, its so useful. Made my loot collection so much better!

Posted: March 8th, 2009, 5:01 am
by xxxploitme
This gets a yay. Pretty usefull macro.

Posted: March 8th, 2009, 5:51 am
by danzar
Nice Job!

Posted: March 8th, 2009, 6:17 am
by stoy123
this is awesome

/yay

Posted: March 8th, 2009, 6:23 am
by sk420
Yay

Posted: March 8th, 2009, 7:54 pm
by Tault_admin
Moved to confirmed and 250 points granted. PS dfo is now premium.

Posted: March 9th, 2009, 11:33 am
by grunga
Can I use this in MacroGamer (cus it uses autohotkey)? Or does it have to be AutoHotKey?

Posted: March 9th, 2009, 4:32 pm
by defariak
so this is an auto looting program?
can people also post the problems with it so it can be addressed.

Posted: March 11th, 2009, 6:55 am
by danzar
defariak wrote:so this is an auto looting program?
can people also post the problems with it so it can be addressed.
I don't know what you are refering too?

Posted: March 11th, 2009, 12:42 pm
by itsicarus
darkmaka wrote:Yay! Tested it it's great!
Just a litle problem but i've already report it
I'm sure he's referring to this

Posted: March 11th, 2009, 6:01 pm
by onebigmall
no idea how to make this work with lattest autohotkey