also ich hab jetzt versucht mir Hotkeys in meinen Bot einzubauen.
Bestimmte Hotkeys sollen einen bestimmtem Timer starten und stoppen.
Wie die Befehle lauten weis ich auch, ist alles kein Problem.
Aber sobald ich den Bot Debuggen will um zu Testen ob es funktioniert bekommt ich diese Fehlernachricht.
Private Sub Form1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown
If e.KeyCode = Keys.F6 Then
Timer1.Start()
ElseIf e.KeyCode = Keys.F7 Then
Timer1.Stop()
End If
End Sub
Private Sub Form1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown
If e.KeyCode = Keys.F6 Then
Timer1.enabled = true
ElseIf e.KeyCode = Keys.F7 Then
Timer1.enabled = false
End If
End Sub
Ja ich habe in Timer1 einen Source stehen.
Timer1 soll den Text absenden der in die Textbox geschrieben wird.
Mit Button funktioniert das alles perfekt, brauche aber Hotkeys.
wennst willst kannst dein projekt bei irgendeiner seite uploaden, rapidshare, megaupload etc. und du schickst mir per pn den link ich lads mir runter und schau was für ein fehler drin is ^^
wie gesagt ist freiwillig, musst ned machen^^
wennst willst kannst dein projekt bei irgendeiner seite uploaden, rapidshare, megaupload etc. und du schickst mir per pn den link ich lads mir runter und schau was für ein fehler drin is ^^
wie gesagt ist freiwillig, musst ned machen^^
Danke, aber nein.
Ich warte lieber auf Aless der kann mir auf Anhieb helfen.
Debugging 07/16/2010 - Grand Chase - 0 Replies D quote above is quoted from 745896321. As stated, it is possible to run d GCHAX (by makim) on a 64bit-running OS ... but does any1 care to explain how ?
debugging 01/28/2010 - Last Chaos - 4 Replies hi.. hab probleme mit ollydbg und last chaos
also: was ich bisher mache .. lc starten, einloggen, olly starten, attachen
nach dem attachen funktioniert manchmal alles, meistens jedoch bleibt olly bei einer exception hängen und das spiel stürzt ab.
hat LC eine anti debug methode, oder mache ich etwas anderes falsch^^?
wenn ja: wie kann ich die bypassen =) ?
mfg d0m
The END for Debugging Kalonline? 08/12/2008 - Kal Online - 7 Replies I know kalownline and MHS still works great when searhing and using the basic functions. However .. im still intressted in using the debugger and when it comes to injecting it, they both fail aswell as the ather UCE. It seems as after last patch HS has added some api hooking to disable dll injection and there for making it impossible to use dissambler.
I was wondering if my suspicions are true and if there are any experience people working on this new problem. Or if i am wrong and there is...
Archlord and debugging.... 07/29/2008 - Archlord - 3 Replies hi just want to talk about archlord and debugging.
anyone here that made some expierence with debugging archlord ?
atm iam trying to do some cooldown hack/cheat with ollydbg instead of using wpe.
the problem with wpe ist that it take always some time to setup all filters.
sometimes filter need to setup again when porting etc.
the first thing i found out with ollydbg is the first timecheck for sending the
first 64 byte packet.
i was able to simply bypass this so that the first 64 byte...
Reversing / Debugging Q 01/19/2006 - General Coding - 11 Replies So i got this address range in the 00ee0000 -> 00eeffff area ... its inventory bits /array of bytes(not bits) 1=inventory slot filled, and 0=not filled.
Thats good and all, but being dynamic and all means that the base address changes a bit from time to time.
SO I am looking for a pointer to that specific area of memory.
However i cannot find one ? The nearest pointer i find is like fff away from the destination!
MY question is this ; im obvsioly going about this wrong, finding a...