Quote:
Originally Posted by tally96
w7, 64 bit, i disabled anti virus, got .net framework 4.5, i made sure to have on f5, Hm my mouse never moves, could it be GameGuard? i have a lil pixel bot myself i wrote because i couldn't get your to work, but that one doesn't work because GameGuard won't let me move mouse or send keystrokes. I am guessing you have a bypasser? i don't know how to code that. If you can i would like to chat with you, my skype is Talpy i think. or steam, talpyka96
Edit: Well i'll be damned, i redownloaded it, i changed flyff directory from my main c drive, programfilesx86 to other drive (had other kinds of problem with doing stuff to things being there) and it works! well i guess its all working perfect then :) , but i would still like to have a chat with ya, i am learning to code C# for now and have made some fun stuff but i am gonna start playing flyff now and since it has GameGuard i can't program anything to it, if you could teach me how to bypass it i would also be able to contribe to the flyff hack section : )
|
Nice!
Well, I am not really a good programmer (I only know Java language) ! I just used a simple scripting tool
[Only registered and activated users can see links. Click Here To Register...] to make the bot.
Autoit is very simple to learn and I learned it alone (too many examples in the web site..).
And about bypassing GG, you only need to bypass PostMessage and SetCursorPosition functions. In this thread
[Only registered and activated users can see links. Click Here To Register...], it is explained how to use the DLL "ggbp.dll".
If you use autoit, you have to adapt the dll calls using "Dllcall" function etc...
An example with autoit for pressing the buttin I is :
Code:
DllCall('ggbp.dll', 'long', 'ggPMA', 'long', $hwnd, 'long', $WMKEYDOWN, 'long', $VK_I, 'long', 0)
Sleep(50)
DllCall('ggbp.dll', 'long', 'ggPMA', 'long', $hwnd, 'long', $WMKEYUP, 'long', $VK_I, 'long', 0)
Another one to put the mouse on the desired screen position:
Code:
DllCall('ggbp.dll', "long", "ggSCP", "long", 1042, "long", 10)
Mouse left button click:
Code:
DllCall('ggbp.dll', 'long', 'ggPMA', 'long', $hwnd, 'long', $WM_LBUTTONDOWN, 'long', $MK_LBUTTON, 'long', 0)
Sleep(50)
DllCall('ggbp.dll', 'long', 'ggPMA', 'long', $hwnd, 'long', $WM_LBUTTONUP, 'long', 0, 'long', 0)
etc....