|
You last visited: Today at 03:47
Advertisement
FLYFF GameGuard Bypass
Discussion on FLYFF GameGuard Bypass within the Flyff forum part of the MMORPGs category.
12/12/2010, 12:58
|
#1
|
elite*gold: 0
Join Date: Nov 2010
Posts: 29
Received Thanks: 6
|
FLYFF GameGuard Bypass
does anyone ever get any GG bypass? or for FLYFF gg bypass
please share it to us
because many bots,cheats,and bots here in this forum
need to kick the GG
please this is for everyone sake
if you know and it worked tell us THANKS VIELE DANKE DANKE SCHON!!!
|
|
|
12/12/2010, 16:36
|
#2
|
elite*gold: 30
Join Date: Oct 2010
Posts: 1,509
Received Thanks: 849
|
Download the Automaton and register yourself at GG Simulator, or use this C++ Source:
PHP Code:
#include <windows.h>
#include <tlhelp32.h>
#include <stdio.h>
void printError( TCHAR* msg );
BOOL KillProcessByName(char *szProcessToKill);
int main()
{
KillProcessByName("Icq.exe"); // Paste GameMon.des in here!
return 0;
}
BOOL KillProcessByName(char *szProcessToKill)
{
HANDLE hProcessSnap;
HANDLE hProcess;
PROCESSENTRY32 pe32;
DWORD dwPriorityClass;
hProcessSnap = CreateToolhelp32Snapshot( TH32CS_SNAPPROCESS, 0 );
if( hProcessSnap == INVALID_HANDLE_VALUE )
{
printError( "CreateToolhelp32Snapshot (of processes)" );
return( FALSE );
}
pe32.dwSize = sizeof( PROCESSENTRY32 );
if( !Process32First( hProcessSnap, &pe32 ) )
{
printError( "Process32First" );
CloseHandle( hProcessSnap );
return( FALSE );
}
do{
if(!strcmp(pe32.szExeFile,szProcessToKill))
{
printf("Prozess: %s \n",pe32.szExeFile);
printf("PID: %d \n",pe32.th32ProcessID );
hProcess = OpenProcess(PROCESS_TERMINATE,0, pe32.th32ProcessID);
TerminateProcess(hProcess,0);
CloseHandle(hProcess);
}
} while( Process32Next(hProcessSnap,&pe32) );
CloseHandle( hProcessSnap );
return( TRUE );
}
void printError( TCHAR* msg )
{
DWORD eNum;
TCHAR sysMsg[256];
TCHAR* p;
eNum = GetLastError( );
FormatMessage( FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
NULL, eNum,
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), // Default language
sysMsg, 256, NULL );
// Trim the end of the line and terminate it with a null
p = sysMsg;
while( ( *p > 31 ) || ( *p == 9 ) )
++p;
do { *p-- = 0; } while( ( p >= sysMsg ) &&
( ( *p == '.' ) || ( *p < 33 ) ) );
// Display the message
printf( "\n WARNING: %s failed with error %d (%s)", msg, eNum, sysMsg );
}
If you don't know how, then let it be.
Greez,
|
|
|
12/12/2010, 23:14
|
#3
|
elite*gold: 0
Join Date: Nov 2010
Posts: 29
Received Thanks: 6
|
well i don't know hahaa..
gg simulator?
|
|
|
12/17/2010, 11:22
|
#4
|
elite*gold: 0
Join Date: Dec 2010
Posts: 159
Received Thanks: 6
|
Quote:
Originally Posted by Fullscreen
Download the Automaton and register yourself at GG Simulator, or use this C++ Source:
PHP Code:
#include <windows.h>
#include <tlhelp32.h>
#include <stdio.h>
void printError( TCHAR* msg );
BOOL KillProcessByName(char *szProcessToKill);
int main()
{
KillProcessByName("Icq.exe"); // Paste GameMon.des in here!
return 0;
}
BOOL KillProcessByName(char *szProcessToKill)
{
HANDLE hProcessSnap;
HANDLE hProcess;
PROCESSENTRY32 pe32;
DWORD dwPriorityClass;
hProcessSnap = CreateToolhelp32Snapshot( TH32CS_SNAPPROCESS, 0 );
if( hProcessSnap == INVALID_HANDLE_VALUE )
{
printError( "CreateToolhelp32Snapshot (of processes)" );
return( FALSE );
}
pe32.dwSize = sizeof( PROCESSENTRY32 );
if( !Process32First( hProcessSnap, &pe32 ) )
{
printError( "Process32First" );
CloseHandle( hProcessSnap );
return( FALSE );
}
do{
if(!strcmp(pe32.szExeFile,szProcessToKill))
{
printf("Prozess: %s \n",pe32.szExeFile);
printf("PID: %d \n",pe32.th32ProcessID );
hProcess = OpenProcess(PROCESS_TERMINATE,0, pe32.th32ProcessID);
TerminateProcess(hProcess,0);
CloseHandle(hProcess);
}
} while( Process32Next(hProcessSnap,&pe32) );
CloseHandle( hProcessSnap );
return( TRUE );
}
void printError( TCHAR* msg )
{
DWORD eNum;
TCHAR sysMsg[256];
TCHAR* p;
eNum = GetLastError( );
FormatMessage( FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
NULL, eNum,
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), // Default language
sysMsg, 256, NULL );
// Trim the end of the line and terminate it with a null
p = sysMsg;
while( ( *p > 31 ) || ( *p == 9 ) )
++p;
do { *p-- = 0; } while( ( p >= sysMsg ) &&
( ( *p == '.' ) || ( *p < 33 ) ) );
// Display the message
printf( "\n WARNING: %s failed with error %d (%s)", msg, eNum, sysMsg );
}
If you don't know how, then let it be.
Greez,
|
kannst du mal davon ein vtut machen? :>
|
|
|
12/17/2010, 15:18
|
#5
|
elite*gold: 2
Join Date: Jul 2009
Posts: 1,447
Received Thanks: 923
|
Quote:
Originally Posted by onlystarz
kannst du mal davon ein vtut machen? :>
|
Lern C++, oder lass es bleiben.
|
|
|
02/21/2012, 13:58
|
#6
|
elite*gold: 0
Join Date: Oct 2011
Posts: 7
Received Thanks: 0
|
..
ok im having problems with this line
KillProcessByName("Icq.exe"); // Paste GameMon.des in here!
the hell do i do that?
any ways tnx for any reply i might get and i really hope this works
|
|
|
02/21/2012, 16:03
|
#7
|
elite*gold: 0
Join Date: Feb 2010
Posts: 80
Received Thanks: 23
|
Omfg.
You have to put in GameMon.des instead of Icq.exe.
KillProcessByName("GameMon.des");
|
|
|
02/21/2012, 18:26
|
#8
|
elite*gold: 0
Join Date: Oct 2011
Posts: 7
Received Thanks: 0
|
wow ty im going to test it out right now
nothing once i try to open a cmd window opens and closes instantly
|
|
|
 |
Similar Threads
|
SO.. there is no gameguard bypass? (i need old gameguard files)
07/28/2011 - Cabal Online - 16 Replies
i been reading around about how to bypass gameguard, it seems that emulating the http server is the best way, anyone have a copy of old cabal? i need gameguard.des and gameguard/ folder.
|
How can I bypass gameguard in CF???
10/13/2009 - CrossFire - 6 Replies
Since im new to hacking.. mind if you post here how to by pass the gameguard in CF.. coz all of my downloaded hacks here were detected by the gameguard and lead to game termination... i appreciate your help...
|
Please Release only CRC bypass and/or Gameguard bypass >>NO ONE KLICK HACKS!<<
10/24/2008 - Dekaron - 8 Replies
Release only a CRC bypass and Gameguard bypass !
That will not destroy the game because alle the noobs are only able to use a
" ONE KLICK HACK" because they dont know how to use winhex or csv files.
Somebody who is to stupid to read a simple tutorial isnīt be able to HACK !
>> If there is a working Dekaron EU CRC Bypass << post it << :handsdown:
|
[RELEASE] GameGuardTerminator --- GameGuard bypass for Flyff
09/01/2008 - Flyff Hacks, Bots, Cheats, Exploits & Macros - 12 Replies
*removed*
|
All times are GMT +1. The time now is 03:47.
|
|