Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
auto stacker
#1
im looking for a autostacker? for auradin

1.12 version

anyone can help me out would be great
Reply
#2
If you could define what you mean by "auto stacker", I maybe could help you..

><
Reply
#3
RaZzor Wrote:If you could define what you mean by "auto stacker", I maybe could help you..

><

A program to automatically do the paladin aura glitch where you "stack" holy shock or holy fire to achieve unreal damage.
Give us this day our daily bread, your legacy we'll not forget. Lick the wounds and cleanse the land, the modern world rejects your hand... Sinister rouge coming back for more to even the score! --- Bad Religion
Reply
#4
Try this.

RapidShare: Easy Filehosting

If you don't trust me, here's the code so you can compile it by yourself

Code:
; Auradin Glitch Script
; Author: RaZzor
; Date: 2008-7-2
; Contact: PM me @ blizzsector.co
; Description: If you use this, you know how the glitch works.

HotKeySet("{F9}", "AuraGlitch")

AutoItSetOption("MouseCoordMode", 2)

While 1
    Sleep(100)
WEnd

Func AuraGlitch()
    MouseMove(430, 400, 3)
    MouseClick("Left")
    MouseMove(220, 400, 3)
    MouseClick("Left")
    MouseMove(320, 470, 3)
    MouseClick("Left")
EndFunc

How to use this script:

1. Set up the glitch (have a character with a full inventory).
2. Open trade with this character.
3. Put an item into (if it's a one slot item, e.g. a potion) OR onto (if it has 2 or more slots, e.g. armor pieces) the red square (see image below: ImageShack - Hosting :: auradinqr6.jpg - First column, third row, just in case Imageshack deletes the pic). It's important that the item COVERS the red square so it can be picked up.
4. Press F9 on your keyboard.

What this script does:

1. Picks up the item
2. Moves it to where the TP scroll is on the above mentioned screenshot
3. Accepts trade

Hope this is what you wanted. It SHOULD work in both, windowed and fullscreen mode. You have to set the resoluton to 800*600 pixels.

//Edit

I made another version with a simple loop if you are too lazy to press F9 over and over again:

DL: RapidShare: Easy Filehosting
Code:
Code:
; Auradin Glitch Script
; Author: RaZzor
; Date: 2008-7-2
; Contact: PM me @ blizzsector.co
; Description: If you use this, you know how the glitch works.

HotKeySet("{F9}", "AuraGlitch")
HotKeySet("{F10}", "Terminate")

AutoItSetOption("MouseCoordMode", 2)

$i = 1

While 1
    Sleep(100)
WEnd

Func AuraGlitch()
    Do
        Sleep(3000)
        MouseMove(430, 400, 3)
        MouseClick("Left")
        MouseMove(220, 400, 3)
        MouseClick("Left")
        MouseMove(320, 470, 3)
        MouseClick("Left")
    Until $i = 2
EndFunc

Func Terminate()
    Exit
EndFunc

Basically, this script repeats the glitching method every 3 seconds until you hit F10 on your keyboard which will terminate the script. The only disadvantage is that your partner has to accept the trade within these 3 seconds, else the script will go on and bug. But 3 seconds to accept a trade should be enough time.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)