Get Fun

Game in action

Rise your skill and go to the top

Give no mercy to your enemy

Dominate this realm

Saturday, February 9, 2013

Finderskeepers (Improved Lootalert) - Diablo 3

Finderskeepers (Improved Lootalert)

FindersKeepers

FindersKeepers is a farming utility for Diablo 3.

What does it do?
It uses Lootalert(upgraded version, thx Evozer! ) ,a program that notifies you when an Item drops. It also has a fast and advanced macro system, to switch your gear in milliseconds and you can also bind keys togheter with the switch.
Ex. Switch gear to Full Inna's set , use Sweeping wind and switch back, within milliseconds.

It also has a Legendary tracker, that keep track of your drops, and return the name of the legendary / set instantly when it drops.

Features
Lootalert (plays a sound when leg/rare drops)
Stats tracker
Play sound on goblin, keywarden, keys
Macro system, to switch your gear
Only need to run one instance of the program when Multiboxing (compared to Lootalert where you need to run 1 / process)


How to record a macro:
Go to Macro -> Add Item
Select a name and Hotkey for the macro
Press record
Go into Diablo 3, and open your inventory !important
Hover your mouse over the items you wanna switch and press "Insert" on your keyboard
over all the items
When you are done, close the inventory and press "Stop record"
To add a key, right click on the "Cords" Checkbox and press "Add key"
Make sure you open and close your inventory, otherwise you can add Inventory by right clicking the Cords checkbox.
Press "ok"
You are good to go, the macro only works in Diablo III.

Latest Stable build
Version 3.0.0

Download :
Finderskeepers - 3.0.0.rar

Preview

[Farming Utility] Loot Alert - Diablo 3

[Farming Utility] Loot Alert

What it does
Plays a sound everytime a new legendary (or other items depending on settings) is dropped. Here is an image that shows the approximate range: http://i.imgur.com/vRjli.jpg. Left side is where I dropped the item and right side is where I heard the sound.

How it works
Uses memory reading to detect items. Sound files and exe must be in the same folder.

Why I made this
I play a barb with the Sprint/WW build, and mobs usually die offscreen. This makes sure I do not miss any legendaries or set items that drops.

Make sure you scan (or compile from source) before using. Someone else accessed my account here twice (with a few weeks inbetween), my PC is clean, and redirected to an infected version. Obivously this will be edited away if that happens, but still.

Current version LootAlert 1.0.8a.rar
Current source files: source 1.0.8a.rar

Made in C#, you will most likely need .NET 4.0 framework atleast.

[AH Bot] HappyAuction - Diablo 3

[AH Bot] HappyAuction

UPDATES v53
 - FIX: xBuyout/xBid not working without xGetSearchItem being called first.
 - FIX: memory reading issue discovered by RodeoRaider. this never happened to me but can happen often for other folks. this could be the fix for a lot of things
 - UPDATE: increase multiclient limit from 16 to 32

TODO (in order of priority):
- NEW: doc/tutorial.html. a noob tutorial for noobz
 - NEW: add sample script to buy cheap legendaries
 - NEW: support search for similar items (right click item in stash)
 - NEW: add support for timeout(function, milliseconds)
 - NEW: add more UI features: ability to add buttons to popup (allow for a bot launcher)
 - NEW: allow HA to operate as admin while D3 process is regular user

DOWNLOAD
STABLE: HappyAuction.53.zip
 - Diablo 3 version: 1.0.8.16603
 - C++ source included
DESCRIPTION
HappyAuction is a C++ open source LUA scripted Diablo 3 auction house bot.
Major features supported:

- LUA functions exposing key AH operations
- Works with D3 window in background (see NOTES)
- Several sample bots included
- Multiple client support
- Multiple language support (english, russian, chinese)

Happy botting!

INSTRUCTIONS
1. Run bin/HappyAuction.exe
2. In Diablo 3 visit the auction house
3. Hit CTRL-F12 to start/stop the main script (SnipeBuyout bot by default).
The taskbar icon will change color while script is active.
4. Edit bin/Lua/Main.lua to enable other sample scripts.

SAMPLE SCRIPT

local buyout = xGetBuyout()

-- check input
if buyout <= 0 then
    xMessage('Set some filters and a low buyout')
else
    while true do
        -- update buyout with randomize
        xSetBuyout(buyout, true)

        -- search and buyout first item
        if xSearch() then
            -- do buyout
            xBuyout(1)
        end
    end
end