Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Flyff > Flyff Hacks, Bots, Cheats, Exploits & Macros
You last visited: Today at 21:57

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[Release][Offi] GodMode Hack (Invisible/1Hit)

Discussion on [Release][Offi] GodMode Hack (Invisible/1Hit) within the Flyff Hacks, Bots, Cheats, Exploits & Macros forum part of the Flyff category.

Reply
 
Old 02/16/2020, 09:10   #31
 
elite*gold: 90
Join Date: Dec 2019
Posts: 301
Received Thanks: 202
Quote:
Originally Posted by Rodopushin View Post
Sometimes the inject isn't working (Inject successful, but Neuz not starting/loading), just try a few more times if it doesen't work for the first time. And don't forget to start as admin
Rightclick -> Properties -> Always start as Admin | works well too
jooodzszsz is offline  
Old 02/16/2020, 13:12   #32
 
elite*gold: 0
Join Date: Oct 2009
Posts: 181
Received Thanks: 16
.mode unfreeze
.mode talk

what is this commands for?
aglibuto is offline  
Old 02/16/2020, 13:19   #33
 
elite*gold: 90
Join Date: Dec 2019
Posts: 301
Received Thanks: 202
Quote:
Originally Posted by aglibuto View Post
.mode unfreeze
.mode talk

what is this commands for?
This removes freez/mute when a moderator feels funny and freez / mute you (he have the rights ingame)
jooodzszsz is offline  
Old 02/16/2020, 13:37   #34
 
elite*gold: 0
Join Date: Sep 2019
Posts: 5
Received Thanks: 0
Hello guys, do you have a mode to inspect?
thx
icedu65 is offline  
Old 02/16/2020, 15:27   #35
 
elite*gold: 0
Join Date: Oct 2009
Posts: 181
Received Thanks: 16
Just wondering if u can do this too on a private server like iblis?
aglibuto is offline  
Old 02/16/2020, 15:31   #36
 
elite*gold: 90
Join Date: Dec 2019
Posts: 301
Received Thanks: 202
Quote:
Originally Posted by aglibuto View Post
Just wondering if u can do this too on a private server like iblis?
Most pServer have a fixx that check the authlevel, Galalab made the mistake to check the unsafe socketID
jooodzszsz is offline  
Old 02/16/2020, 21:51   #37
 
elite*gold: 0
Join Date: Jan 2011
Posts: 28
Received Thanks: 18
did you recompile partially the official leaked source? (ida shows tons of unreferenced code), can't find anywhere the recent source code
miniman06 is offline  
Old 02/17/2020, 00:50   #38
 
cookie69's Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 627
Received Thanks: 688
Quote:
Originally Posted by miniman06 View Post
did you recompile partially the official leaked source? (ida shows tons of unreferenced code), can't find anywhere the recent source code
Probably yes. Neuz source code is the best Packet Editor. You just need to take and modify the network stuff to make your best private hacks (I use this method since a long time).

Basically, you can customize the CDPClient (for instance) with your own modified functions to send modified packets (like the eggs dupe, angels dupe, modify mode,change guild name, overflows,crash packets,.. and other stuff).
All you need is to find the address of the SEND(3 params) function and the g_DPlay pointer, the rest is just a smart copy past from the offi v15 source.

Example for Modify mode:
Code:
typedef BOOL(__thiscall * Send_t)(void * ecx, LPVOID lpData, DWORD dwDataSize, DWORD dpidTo);
BOOL  __fastcall MySend(DWORD *ecx, void *edx, LPVOID lpData, DWORD dwDataSize, DWORD dpidTo);
extern Send_t pSend;

DWORD* g_DPlay = NULL;
/*
you can get g_DPlay value from hooking, just save the ECX value when MySend function is get called by the client (for example when the player jumps). Hooking is easy in any illegal server, in the offi you may need bypass or make your own proxy and force Neuz to connect to it, but you will need to do all the packets decryption and so. The other way is just to find a static value.
*/

Send_t pSend;
pSend = (Send_t)((DWORD)g_hExeModule + dwSendOffset);
.......
#define	SEND( ar, theClass, idTo ) \
	int nBufSize;	\
	LPBYTE lpBuf	= ar.GetBuffer( &nBufSize );	\
	if(theClass)pSend(theClass, lpBuf, nBufSize, idTo);


......

void SendModifyMode(DWORD dwMode, BYTE f, DWORD idFrom, DPID dpid)
{
	BEFORESENDSOLE(ar, PACKETTYPE_MODIFYMODE, DPID_UNKNOWN);
	ar << dwMode << f << idFrom << dpid;
	SEND(ar, g_DPlay, DPID_SERVERPLAYER);
}

// to be invisible
SendModifyMode(TRANSPARENT_MODE, (BYTE)1, (DWORD)0, (DWORD)0);

// to not be invisible
SendModifyMode(TRANSPARENT_MODE, (BYTE)0, (DWORD)0, (DWORD)0);
cookie69 is offline  
Thanks
2 Users
Old 02/17/2020, 09:05   #39
 
elite*gold: 0
Join Date: Jan 2011
Posts: 28
Received Thanks: 18
Quote:
Originally Posted by cookie69 View Post
Probably yes. Neuz source code is the best Packet Editor. You just need to take and modify the network stuff to make your best private hacks (I use this method since a long time).

Basically, you can customize the CDPClient (for instance) with your own modified functions to send modified packets (like the eggs dupe, angels dupe, modify mode,change guild name, overflows,crash packets,.. and other stuff).
All you need is to find the address of the SEND(3 params) function and the g_DPlay pointer, the rest is just a smart copy past from the offi v15 source.

Example for Modify mode:
Code:
typedef BOOL(__thiscall * Send_t)(void * ecx, LPVOID lpData, DWORD dwDataSize, DWORD dpidTo);
BOOL  __fastcall MySend(DWORD *ecx, void *edx, LPVOID lpData, DWORD dwDataSize, DWORD dpidTo);
extern Send_t pSend;

DWORD* g_DPlay = NULL;
/*
you can get g_DPlay value from hooking, just save the ECX value when MySend function is get called by the client (for example when the player jumps). Hooking is easy in any illegal server, in the offi you may need bypass or make your own proxy and force Neuz to connect to it, but you will need to do all the packets decryption and so. The other way is just to find a static value.
*/

Send_t pSend;
pSend = (Send_t)((DWORD)g_hExeModule + dwSendOffset);
.......
#define	SEND( ar, theClass, idTo ) \
	int nBufSize;	\
	LPBYTE lpBuf	= ar.GetBuffer( &nBufSize );	\
	if(theClass)pSend(theClass, lpBuf, nBufSize, idTo);


......

void SendModifyMode(DWORD dwMode, BYTE f, DWORD idFrom, DPID dpid)
{
	BEFORESENDSOLE(ar, PACKETTYPE_MODIFYMODE, DPID_UNKNOWN);
	ar << dwMode << f << idFrom << dpid;
	SEND(ar, g_DPlay, DPID_SERVERPLAYER);
}

// to be invisible
SendModifyMode(TRANSPARENT_MODE, (BYTE)1, (DWORD)0, (DWORD)0);

// to not be invisible
SendModifyMode(TRANSPARENT_MODE, (BYTE)0, (DWORD)0, (DWORD)0);
Did that a while ago thanks,just to confirm did they change all the PACKETTYPE ids ?

and your example wouldn't just work because you would have to bruteforce the dpid ?
miniman06 is offline  
Old 02/17/2020, 09:58   #40
 
cookie69's Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 627
Received Thanks: 688
Quote:
Originally Posted by miniman06 View Post
Did that a while ago thanks,just to confirm did they change all the PACKETTYPE ids ?

and your example wouldn't just work because you would have to bruteforce the dpid ?
Yes all packet_types changed for v21 but it is not hard to find them in Neuz.
This worked in my local v15 server, but it is not hard to make a loop and increase the dpid until you find it, I never tried it on the offi because no one would think a company like that would make such a mistake lol.
cookie69 is offline  
Old 02/17/2020, 12:00   #41
 
elite*gold: 0
Join Date: Jan 2011
Posts: 28
Received Thanks: 18
Quote:
Originally Posted by cookie69 View Post
Yes all packet_types changed for v21 but it is not hard to find them in Neuz.
This worked in my local v15 server, but it is not hard to make a loop and increase the dpid until you find it, I never tried it on the offi because no one would think a company like that would make such a mistake lol.
seems like it would be pretty fun to bind lua with this packet functions to experiment around and maybe hook some vtables while at it
miniman06 is offline  
Old 02/17/2020, 17:28   #42
 
elite*gold: 0
Join Date: Dec 2019
Posts: 2
Received Thanks: 0
Hey kann mir bitte jemand helfen der hack klappt ned bei mir
Oliverfrank is offline  
Old 02/17/2020, 17:30   #43
 
elite*gold: 90
Join Date: Dec 2019
Posts: 301
Received Thanks: 202
Quote:
Originally Posted by Oliverfrank View Post
Hey kann mir bitte jemand helfen der hack klappt ned bei mir
Was klappt denn nicht?
jooodzszsz is offline  
Old 02/17/2020, 20:57   #44
 
elite*gold: 0
Join Date: Feb 2020
Posts: 1
Received Thanks: 0
Hallo, ich habe deine Schritte befolgt. Das Spiel startet auch und supersonic zeigt ebenfalls Success an. Aber sobald ich einen der Befehle im ingame Chat eingebe passiert nichts. Ich kann zB keine mops onehitten etc.
Habe ich da was falsch verstanden?
Honorably01 is offline  
Old 02/17/2020, 20:59   #45
 
Connor McMecha's Avatar
 
elite*gold: 31
Join Date: May 2019
Posts: 217
Received Thanks: 170
Quote:
Originally Posted by Honorably01 View Post
Hallo, ich habe deine Schritte befolgt. Das Spiel startet auch und supersonic zeigt ebenfalls Success an. Aber sobald ich einen der Befehle im ingame Chat eingebe passiert nichts. Ich kann zB keine mops onehitten etc.
Habe ich da was falsch verstanden?
add mich mal auf Discord, helfe gerne

John Casadesus#8623
Connor McMecha is offline  
Reply


Similar Threads Similar Threads
[Release]EdwarlissTrainerS4League 27/10/2012 [GODMODE/1HIT/HITRANGE/INFSP][Release]
10/28/2012 - S4 League Hacks, Bots, Cheats & Exploits - 26 Replies
EdwarlissTrainerS4League | -------------------------- Jooo Leute heute wieder Ein Release von nem neuen Hack Für S4League. Dieses mal Kleines andere schema , jedoch bissl das gleiche den ihr könnt den hack nicht einfach downloaden . ! To DO : Wen dieser Kanal : Kanal von Edwarliss - YouTube 100Abonnenten Erreicht hat Poste ich :
[release] S4 Trainer (mit Godmode und 1hit-kill)
12/22/2009 - S4 League - 104 Replies
NEWEDIT: DIESER TRAINER IST NUTZLOS SEIT DEM NEUEN PATCH! Deutsch: So hier kommt der Release ^^ Mein kleiner Trainer mit Godmode und 1Hitkill. Hier mal ein Bild: English: Here comes my release ^^ My little trainer with Godmode and 1Hitkill Here a picture from it: http://www.imgbox.de/users/public/images/p8897p20 6.jpg



All times are GMT +1. The time now is 21:57.


Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2025 elitepvpers All Rights Reserved.