Sunday, August 23, 2009

Auto Synthesis!

I neglected on checking older posts for new comments :X
As a result, here's what I had for a Synthesis-bot. It's pretty straight forward, though I havn't tested it in a loooooong time, so I cannot vouch for quality.



It's an easy couple codes, I even had mine buying and selling silver rings (4synths @ 10macca each + cost of crappy tarot)

Here's a couple codes, the pixelsearch-area is my inventory box (reset your window position to defaults to avoid constantly changing the coords. and the pixel color it searches for is a tarot card. Simple!

Func _FindTarot()
$Tarot = PixelSearch(543,355,904,493,0x9695C5)
If @error Then
ConsoleWrite("Unable to find Tarot: " & @HOUR & ":" & @MIN & ":" & @SEC & @CRLF)
TogglePause()
_CloseMe()
EndIf
EndFunc


same as previous, but searches for a silver ring to click a silver ring that doesnt have the 'faded' effect from being broke infact.

Func _FindItem()
$Item = PixelSearch(543,355,904,493,0x808682)
If @error Then
ConsoleWrite("Unable to find Item: " & @HOUR & ":" & @MIN & ":" & @SEC & @CRLF)
$Item = 0
EndIf
EndFunc

After this, all there is left to do is some clicks for hitting the buttons and starting tarot fusion again.



This was the main script, might not work. I don't know what resolution I was using, etc:


;Click Synth
Do
Send("{F11}")
sleep(250)
Until PixelGetColor(171,309) = 0x10222D

_FindTarot()
;Click Tarot
MouseClick("left",$Tarot[0],$Tarot[1])
sleep(250)
MouseClick("left",$Tarot[0],$Tarot[1])
sleep(250)
MouseClick("left",$Tarot[0],$Tarot[1])
sleep(500)

_FindItem()
If $Item = 0 Then
;Click Cancel
MouseClick("left",459,589)
sleep(500)
_Store()
Else
;Click Item
MouseClick("left",$Item[0],$Item[1])
sleep(250)
MouseClick("left",$Item[0],$Item[1])
sleep(250)
MouseClick("left",$Item[0],$Item[1])
sleep(500)
;Click Execute
MouseClick("left",309,524)
sleep(500)
EndIf
sleep(2500)




This isn't accounting for initializing any variables though. G'luck :)

Saturday, August 15, 2009

Requests~

Megaten is boring, I quit.

I'm taking requests on other orpgs :D


Ones I have installed:

Grand Chase
Eve Online
Rose Online
Darkages

I have several scripts for Darkages, but it's an old game so I don't expect anyone to want them.

And atm I'm only playing the trial for Eve (300m Isk > $15), but I can easily make a mining / farming bot that does NOT jetcan everything (slower in the long run, but less can go wrong)

Rose Online I can easily make a bot for auto-hunting even if the window is minimized and have it support multiple windows (all via autoIt, yay for source code)

Grand Chase . . I can work on an UCE I guess, havn't been bothered to make one myself, but I know howto, so it shouln't take too long (1hit hacks, instant wins, etc - REAL hacks / no bots / completely patchable).

Wednesday, August 5, 2009

Custom Resolution

Not much of a hack/trick, and it's fairly widely known.

Extremely simple.

Goto your Megaten directory and open "OutsideOption.txt".
(default: C:\AeriaGames\MegaTen\OutsideOption.txt )

You should see 5 lines, we only need the bottom 3, mine says this:
-FullScreen false
-ResolutionX 1024
-ResolutionY 768

FullScreen false = windowed mode. true = fullscreen
ResolutionX is your window width
ResolutionY is your window hieght.

Change, save, done.


(Busy irl, sorry for simplicities)