Register for your free account! | Forgot your password?

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

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

Advertisement



[OpenSource] Packet Editor coded in C

Discussion on [OpenSource] Packet Editor coded in C within the Flyff Hacks, Bots, Cheats, Exploits & Macros forum part of the Flyff category.

Closed Thread
 
Old 05/09/2011, 14:39   #46
 
elite*gold: 0
Join Date: Dec 2009
Posts: 20
Received Thanks: 8
So I compiled but for sending a packet like the attack packet I would need to script it in the code right, or do I need to enter it somewhere


Like this?
Quote:
char szMessage[] = "??Inputcommand??";
char packet_str[MAX_PACKET_SIZE];
int packet_size = 0;

Packet.Append((DWORD)0x00FF0010);
Packet.Append(PACKETTYPE_MELEE_ATTACK);
Packet.WriteHeader(dwSessionID);
Packet.GetStr(packet_str);
packet_size = Packet.GetSize();
send(s, (const char *)packet_str, packet_size, 0);
Netbios is offline  
Old 05/09/2011, 15:43   #47
 
xsh's Avatar
 
elite*gold: 0
Join Date: Jun 2008
Posts: 158
Received Thanks: 169
Yes, you need to code it in the source code itself.
You would also need to know how the Packet is build up (just look at the flyff server code).
Hint: Flyff's packet manager is the "ar" variable in every packet handler command.
xsh is offline  
Thanks
1 User
Old 05/09/2011, 17:12   #48
 
elite*gold: 0
Join Date: Dec 2009
Posts: 20
Received Thanks: 8
Its a bit confusing you´r example script doesn´t work (Could be cause the server changed packet Id´s?)
Or the other reason is whenever I use the chat I get this error in the console:
"FATAL ERROR: HandleMessage<>!"

Anyone knows how to fix this.
Netbios is offline  
Old 05/10/2011, 21:17   #49
 
EKKO_Trade's Avatar
 
elite*gold: 0
Join Date: May 2011
Posts: 45
Received Thanks: 5
Danke für das Script :=)
EKKO_Trade is offline  
Old 05/13/2011, 02:36   #50
 
elite*gold: 2
Join Date: Jul 2009
Posts: 1,447
Received Thanks: 922
Nice Source..

I Tested and it Works rly good

Ähm, das is ja ein "Test" Teil, wo man mit hilfe von dem Chat Wort "Test" es geändert wird in "lols", nun ist das mehr so absicht von dir oder versehen das wenn man "test" schreibt zwar auch lols kommt aber test auch D:
.Crasy is offline  
Old 05/13/2011, 18:35   #51
 
elite*gold: 0
Join Date: May 2011
Posts: 23
Received Thanks: 0
xsh how you managed it to block outgoing packages?
~Kekz
ajiasd is offline  
Old 05/14/2011, 02:05   #52
 
elite*gold: 0
Join Date: Jan 2011
Posts: 7
Received Thanks: 0
und wo ist das passwort
RussiaMuzik is offline  
Old 05/14/2011, 12:37   #53
 
elite*gold: 0
Join Date: Dec 2009
Posts: 1,622
Received Thanks: 2,070
Quote:
Originally Posted by RussiaMuzik View Post
und wo ist das passwort

DAS PASSWORT IST: epvp

steht deutlich im thread
freehuntx is offline  
Old 05/14/2011, 13:44   #54
 
elite*gold: 0
Join Date: Dec 2008
Posts: 48
Received Thanks: 31
Quote:
Originally Posted by xsh View Post
Changelog

Code:
[u]0x0B0410[/u]
  - First public release

Snippets

Send chat message

(Sidenote: you could find out the SHOUT message, and spam the server to death)

Code:
FP Packet;
char szMessage[] = "Hello World(server)!";
char packet_str[MAX_PACKET_SIZE];
int packet_size = 0;

Packet.Append((DWORD)0xFFFFFFFF); // Needed
Packet.Append(PACKETTYPE_CHAT); // We wanna chat
Packet.Append((DWORD)strlen(szMessage)); // Append text size
Packet.AppendArray(szMessage, strlen(szMessage)); // Append the actual text
Packet.WriteHeader(dwSessionID); // Make CRC for the packet header

Packet.GetStr(packet_str); // Put the whole packet into a send-able string
packet_size = Packet.GetSize(); // Get the lenght of the packet

send(s, (const char *)packet_str, packet_size, 0); // Tell stories to the server ;D
Where do you put this o.e Just curious how it works :P i tried to paste it on all different places and MAX_PACKET_SIZE is not defined. atleast my compiler say's so.
^^ I'm not used to packets >.<
darking1assist is offline  
Old 05/14/2011, 15:26   #55
 
xsh's Avatar
 
elite*gold: 0
Join Date: Jun 2008
Posts: 158
Received Thanks: 169
Quote:
Originally Posted by .Crasy View Post
Ähm, das is ja ein "Test" Teil, wo man mit hilfe von dem Chat Wort "Test" es geändert wird in "lols", nun ist das mehr so absicht von dir oder versehen das wenn man "test" schreibt zwar auch lols kommt aber test auch D:
Das ist nur ein Beispiel. Und er schreibt "test" weil das packet nicht geblockt wurde (hatte ich zu dem Zeitpunkt noch nicht wirklich raus wie's geht). Ersetzt das ürbsprünglische Packet (also das CHAT packet mit "test" drinne einfahc mit nem Leeren Packet).


Quote:
Originally Posted by darking1assist View Post
Where do you put this o.e Just curious how it works :P i tried to paste it on all different places and MAX_PACKET_SIZE is not defined. atleast my compiler say's so.
^^ I'm not used to packets >.<
MAX_PACKET_SIZE can be anything, just define your own. and you put where it makes sence (in chat commands handler or something else).
xsh is offline  
Old 05/14/2011, 16:41   #56
 
elite*gold: 0
Join Date: Dec 2008
Posts: 48
Received Thanks: 31
changed
Char packet_str[MAX_PACKET_SIZE];
to
BYTE packet_str[MAX_PACKET_SIZE];

nvm got it working

/slaps myself x.x
time to write commands and do nasty ****
darking1assist is offline  
Old 05/14/2011, 17:13   #57
 
elite*gold: 2
Join Date: Jul 2009
Posts: 1,447
Received Thanks: 922
Puuh hab net rly viel ahnung von Packets

Versuch atm deine Source in meine Base zu Intigrieren (Schückes Menu und so, nix Rotz AntTweakBar )
.Crasy is offline  
Old 05/14/2011, 17:31   #58
 
xsh's Avatar
 
elite*gold: 0
Join Date: Jun 2008
Posts: 158
Received Thanks: 169
AntTweakBar <3

Einfach zu benutzen, und sehr dynamisch. Erleichtert auf jeden fall das coden eines eigenen GUI's (was Zeit in Anspruch nimmt ^^)
xsh is offline  
Old 05/14/2011, 19:42   #59
 
elite*gold: 0
Join Date: Dec 2009
Posts: 1,622
Received Thanks: 2,070
Quote:
Originally Posted by .Crasy View Post
Puuh hab net rly viel ahnung von Packets

Versuch atm deine Source in meine Base zu Intigrieren (Schückes Menu und so, nix Rotz AntTweakBar )
Tom94 hat ja auch nur durch diesen Thread seinen hack schreiben können, weil er vorher nicht wusste wie er es machen soll denk ich mal.

Also biste hier an der richtigen adresse.


Edit: doch nicht leicht zu verstehn :/
freehuntx is offline  
Old 05/14/2011, 19:51   #60
 
elite*gold: 2
Join Date: Jul 2009
Posts: 1,447
Received Thanks: 922
Quote:
Originally Posted by freehuntx View Post
Tom94 hat ja auch nur durch diesen Thread seinen hack schreiben können, weil er vorher nicht wusste wie er es machen soll denk ich mal.

Also biste hier an der richtigen adresse.

Btw.. ich kann dir mal nen link zu nem tutorial posten. Simpel zu verstehen.
Tom hatte einfach keine Lust eine eigene Base zu schreiben, das ist eig alles, dann is er auf den Thread gestoßen und ja hat diese Source used wo in meinen augen sehr nice is

XSH, ist Tipps hier Posten verboten? z.b. nen Filter damit net jedes kack Packet in der Console is der Packet Block sowas

@free, für wasn Tut?
.Crasy is offline  
Closed Thread

Tags
editor, open, packet, pe, source


Similar Threads Similar Threads
packet editor...
03/09/2011 - 4Story - 1 Replies
I was wondering if there is a packet editor for this game. I dont mean WPE .. i mean a real one that decrypts the packets. If not i will try to program a dll that will do this. Im also wondering what hacks are out there.. is there a godmode, 1 hit, teleport.. etc etc.. I will try to search and relase hacks that arnt already out there.. i am greatful for answers. /zowex
Packet Editor
10/26/2010 - Metin2 Private Server - 9 Replies
Hallo, ich habe leider nichts gefunden aber erstmal wayne :D Ich suche ein Tutorial wie man Metin2 Packete entschlüsselt und verschlüsselt. Weiß einer vielleicht wie es funktioniert? Wenn einer das weiß aber das nicht sagen will bzw. nicht für alle, könnte er oder vielleicht sogar sie mir eine PN schreiben und wir könnten über ICQ oder Skype mit einander schreiben oder vielleicht sogar reden ? Ich freu mich über alles außer auf die flamer, spamer und auf die, die gerade keine Ahnung haben...
Packet editor
08/12/2009 - Metin2 - 4 Replies
Hey liebe e*pvpers ich hab das ganze forum durchsucht(in dem cheat,hacks,exploits) aber ich hab den packet editor topic nich gefunden kann mir jemand nochmal den links schicken pls? oder wurde der closed? hoffe gibt nich wieder so ne dumme antwort -.- :D Gruß
Packet editor
01/03/2008 - Flyff - 11 Replies
hab jetzt den packet editor kann mir mal wer sagen wie und was ich damit machen kann? Danke im vorraus



All times are GMT +2. The time now is 00:05.


Powered by vBulletin®
Copyright ©2000 - 2024, 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 ©2024 elitepvpers All Rights Reserved.