Compot - Version 0.01

09/13/2009 21:37 FunnyDummy#121
Hey gertos hast echt ne super arbeit mit dem ding geleistet, ich hatte am anfang probleme das das fenster nicht gefunden werden konnte, hab dann das icon ersetzt weil ich ne andere farbtiefe hab als das bild und jetzt funtzt es.

Allerdings funtzt der bot für mich natürlich auch nich mehr.

Deinen Post mit dem device treiber hab ich leider nicht so ganz verstande, wenn du lust hast mir ein bisschen dabei zu helfen dann wärs cool wenn du mir mal ne pm schicken könntest (kein angst beim programmieren selbst hab ich keine probleme)
09/14/2009 02:35 $ech0#122
guys can you poste here compiled program ?
09/14/2009 02:50 raedon#123
Quote:
Originally Posted by $ech0 View Post
guys can you poste here compiled program ?
The example posted here only make the pj dance and run arround, this vercion dont got any attack rutine. This trhead its for ppl who wants to create our own bot.

If u want a functional bot go here

[Only registered and activated users can see links. Click Here To Register...]
09/14/2009 03:26 $ech0#124
Quote:
Originally Posted by raedon View Post
The example posted here only make the pj dance and run arround, this vercion dont got any attack rutine. This trhead its for ppl who wants to create our own bot.

If u want a functional bot go here

[Only registered and activated users can see links. Click Here To Register...]
website is hacked
09/14/2009 10:22 kevzor#125
or go here : [Only registered and activated users can see links. Click Here To Register...] :)
09/15/2009 09:10 $ech0#126
i saw your bot, but it is not free.
09/15/2009 13:48 KentuckyFC#127
Yes Because kevzor made every Weeks or Months new Bot Bug Fixes or Update


And our bot is atm better than Jt´s bot.
Doomrazrs bot is a Multibot for all Mmorpgs who use klick to walk
09/15/2009 16:16 $ech0#128
guys can some one share a compiled free bot ? all i need is atack\loot thats all.
09/15/2009 16:20 KentuckyFC#129
I can give you the Beta bot By Kevzor
09/15/2009 22:53 kevzor#130
..if u have a Visual studio version installed and u run the beta bot when the beta bot crashes and starts to debug.. u can get in trouble .. (rappelz reporting that a hack was detected) ... the hack that was detected is the debugger ~_~ .... not the bot! ...that probably happened to the other guy aswel that posted that the bot was detected

also...the old kevzor beta versions where build with the Copyfromscreen method... and like gerthos also said has a leak in it and very buggy.
09/16/2009 08:06 $ech0#131
Quote:
Originally Posted by KentuckyFC View Post
I can give you the Beta bot By Kevzor
i have this error :S

[Only registered and activated users can see links. Click Here To Register...]
09/16/2009 08:15 Gertos#132
Please stay on the topic of this thread.

This one is about Compot !

So start a own thraed if you want to talk about other bots
09/23/2009 00:13 diskompo#133
Hi folks, first of all thank you for compot, great idea!

Unfortunately I have a problem I couldnt find a solution for yet. I will describe my problem in german first, cause I dunno how well I can explain it in english...

Also, mein Problem:
Ich hab mir gestern compot + Treiber + dll geholt und angefangen rumzuspielen. War dann gestern abend so weit, dass ich chippen konnte, pet und char greifen an, nächster mob suchen, bißchen rumrennen wenn man keinen findet usw. Lief alles so weit gut, keine Exceptions oder Abstürze.
Heute hab ich dann begonnen den Bot ein bißchen intelligenter zu machen.
Doch als ich das ganze Testen wollte, passierte folgendes:
Manchmal (selten) krieg ich ne Exception bei Mouse = new Mouse(ID); direkt nach dem Starten. (Ich glaub es war Access denied, kann's aber grad nicht reproduzieren und nachprüfen.)
Meistens geht es bis zum Finden des Rappelz-Fensters und er hängt dann in der Schleife fest:
Code:
public void SendMouseEvent_LeftClick(int x, int y)
        {
            // Bewege die Maus und warte bis die Maus da ist.
            SetPos(x, y);
            [B]while (Workdone == false)
            {
                Heartbeat();
                System.Threading.Thread.Sleep(5);
            }[/B]

            // Klick once with the left Button
            Mouse.Stroke x1 = new Mouse.Stroke();
            x1.state = Mouse.States.LEFT_BUTTON_DOWN;
            Mouse.Write(x1);

            x1.state = Mouse.States.LEFT_BUTTON_UP;
            Mouse.Write(x1);


        }
da sich die Maus nicht bewegt.
Ich habe seit gestern nichts an den Deklarationen/Definitionen von Mouse oder Keyboard geändert. Der Device Driver Test zeigt mir die IDs 1,2 und 3 als "ok" an (warum mehrere? Hab nur jeweils eine die über Bluetooth mit nem Empfänger(USB) verbunden sind), gestern funktionierte es mit ID 3, aber ich hab heute auch mal 1 und 2 probiert -ohne Erfolg.
Irgendwelche Ideen, was da schief läuft?

---------------

I'll try to explain it in english now, but I will shorten things for the english version:
I got compot, driver and dll yesterday and started coding a simple bot. It all worked well, after 1-2 hours I got a bot that could chip, attack and search for new mobs. Today I started to improve the bot, but only added a few functions which shouldnt have any effect on the main routines. When I wanted to test them, this is what happened and keeps happening since then:
Seldomly the programme throws an exception right after start when executing the line Mouse = new Mouse(ID);. I think the exception is Access denied, but I cant reproduce it at the moment.
Most of the time, the programme starts and finds the Rappelz Window. Then it gets stuck in the while loop:
Code:
public void SendMouseEvent_LeftClick(int x, int y)
        {
            // Bewege die Maus und warte bis die Maus da ist.
            SetPos(x, y);
            [B]while (Workdone == false)
            {
                Heartbeat();
                System.Threading.Thread.Sleep(5);
            }[/B]

            // Klick once with the left Button
            Mouse.Stroke x1 = new Mouse.Stroke();
            x1.state = Mouse.States.LEFT_BUTTON_DOWN;
            Mouse.Write(x1);

            x1.state = Mouse.States.LEFT_BUTTON_UP;
            Mouse.Write(x1);


        }
cause the mouse won't move a bit.
I didn't change anything on the declarations/definitions of mouse and keyboard since yesterday. Device Driver Test shows IDs 1,2 and 3 as "ok". Yesterday it worked with 3, but I already tested 1 and 2 also, without success.
Any ideas on what's going wrong?

Help would be very much appreciated. :D

Edit: It just came to my mind to try the original compot. I get the same errors with it now and it really is an Access denied exception. I could run the original compot without any problems yesterday.

Edit2: I just tried uninstalling and re-installing the kernelhotkey.exe with rebooting my system each time. Didnt change anything. My OS is XP (32 bit) btw.
09/23/2009 00:53 RaZoriX#134
Hi,

Take a look at my post before. GameGuard was updated 2 weeks ago an fixed the kernel driver backdoor so maybe u can try to make your own driver :D.
(kannste am besten testen wenn du Compot startest mal ohne Rappelz)
09/23/2009 01:29 diskompo#135
That shouldnt be the problem. I'm playing on the US servers and as far as I understood, it still works on these servers. Additionally, it worked fine yesterday. It is the KernelHotkey.Mouse constructor I think:
StackTrace: "
bei System.Runtime.InteropServices.Marshal.ThrowExcept ionForHRInternal(Int32 errorCode, IntPtr errorInfo)\r\n
bei System.Runtime.InteropServices.Marshal.ThrowExcept ionForHR(Int32 errorCode)\r\n
bei KernelHotkey.Mouse..ctor(Int32 id)\r\n
bei Compot.MouseTools..ctor(Int32 ID) in E:\\MyCStuff\\Compot\\MouseTools.cs:Zeile 56.\r\n
bei Compot.MainWindow..ctor() in E:\\MyCStuff\\Compot\\MainWindow.cs:Zeile 91.\r\n
bei Compot.Program.Main() in E:\\MyCStuff\\Compot\\Program.cs:Zeile 40."

Another thing I noticed:
When I press a button after the app loaded, which just reads a txt file and sets some variables for my rappelz-hotkeys, the app gets stuck in the while-loop I mentioned in my previous post immediately after hitting the Start-Button. If I don't do that and hit Start first, the mouses moves at least a bit.

Edit: Sorry, I was wrong and you are right. Running Compot without Rappelz seems to work. I just couldnt believe it worked for more than 2 hours yesterday and wouldnt work today. Maybe gameguard just updated today and I just didnt notice. Damn it, making a driver will be at least quite challenging for me, that's why I was so happy when I visited this site again after many months and saw this project... :-(