Jump to content

Recommended Posts

Posted

http://www.rentacoder.com

If you can't (or won't) do it, don't bother us.

If you feel like asking for help, by all means, post some of your code that you're stuck on. If you're begging for someone to write you a bot, good luck.

I detest cheating.

Lofting the cyberwinds on teknoleather wings, I am...The Blue Drache

Posted

I mean, i know what to do, but its not work, i dontundertunt why pixelsearch not work, its send that f1 all time in loop...

WinActivate("LastChaos")

Sleep(1000)

Send("{Right}") ;Move cameras

Sleep(1000)

MouseClick("right") ;make randoms clicks if lucky its click monster

Sleep(1000)

if PixelSearch("252,196,768,487,0xFF0000") Then ;when its clicked monster u can see him healtbar, what is purered

Send("f1") ;attack

Sleep(6000)

Send("f3") ;Loot

EndIf

WEnd

if u have ideas how to get it work tell me, i can try it!<_<

-Fataly

I need only answers for my probp. this is help page?

Posted

Far too random. Can you find a monster by selecting it with a keystroke?

Example, in World of Warcraft {tab} selects the "next" monster, and additional {tab} presses select the next. T (on my keyboard) is set to select the CLOSEST monster.

Why not start with keystrokes. They're much more reliable than mouse.

Lofting the cyberwinds on teknoleather wings, I am...The Blue Drache

Posted

Maybe, but that is the ideo of this, there is no hotkey for "select next or nearest monster" only auto loot and attack...

<_< that why its so hard..

Posted

some one has maked this:

WinActivate("LastChaos")

$Target = 0x5B9600 ;What you are targeting. This is a color in hex or decimal notation. Currently its set for white.

$Click = "Right" ;Which mouse button. Right click selects without moving, so if the script misses the monster, it wont start walking where it missed, as it would with left click.

Dim $Coord, $Click, $Target, $SearchResult

$Target = 0x5B9600 ;What you are targeting. This is a color in hex or decimal notation. Currently its set for white.

$Click = "Right" ;Which mouse button. Right click selects without moving, so if the script misses the monster, it wont start walking where it missed, as it would with left click.

While 1 = 1

Sleep(100) ;

$SearchResult = PixelSearch(252,196,768,487,$Target,5,3)

If @error Then

Else

MouseClick($Click, $SearchResult[0]+25, $SearchResult[1]+35, 7, 3);Clicks with right key, a little below and to the right, so it clicks on mosnter instead of name.

if $SearchResult = PixelSearch(237,193,806,638,$Target,5,1) Then

Send("{F1}") ;Press "A" in LC, This should be the action window, in "general" tab. Drag regular "Attack" into F1.

Send("{F3}")

Else

Send("{Right}") ;Right arrow key is sent, to rotate your camera

$SearchResult = PixelSearch(342,342,1000,342,$Target,5,3)

MouseClick($Click, $SearchResult[0]+25, $SearchResult[1]+35, 7, 3);Clicks with right key, a little below and to the right, so it clicks on mosnter instead of name.

if $SearchResult = PixelSearch(237,193,806,638,$Target,5,1) Then

Send("{F1}") ;Press "A" in LC, This should be the action window, in "general" tab. Drag regular "Attack" into F1.

Send("{F3}") ;Drag the gather hotkey (horse or yourself). Horse is nice, but yourself makes it look less like a bot, I think.

EndIf

EndIf

EndIf

WEnd

Func _Exit()

Exit

EndFunc

but its not work...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...