Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Nostale
You last visited: Today at 17:27

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

Advertisement



(ASM) Nostale Send Function

Discussion on (ASM) Nostale Send Function within the Nostale forum part of the MMORPGs category.

Reply
 
Old 11/09/2013, 19:09   #16
 
elite*gold: 0
Join Date: Oct 2013
Posts: 135
Received Thanks: 44
Dude, a const string (not the string from the std library) is passed in edx.
But if you just pass an char pointer, the client doesn't know the size, so the client is going to fu*k up.
Look at the dump how the string is structured and rebuild the structure.
EasyTale is offline  
Thanks
1 User
Old 11/09/2013, 19:47   #17
 
elite*gold: 0
Join Date: Aug 2013
Posts: 154
Received Thanks: 166
Oh guys ! now work !!

Code:
class NTString
{
public:
	DWORD length;
	char command[256];
	
	NTString(char *string)
	{
		length = strlen(string);
		memcpy(command, string, length);
		command[length] = 0;
	}
};
Send Function

Code:
void SEND_TO_SERVER(char *packet)
{
	__asm
	{
		MOV EAX, DWORD PTR DS:[SEND_EAX]
		MOV EAX, DWORD PTR DS:[EAX]
		MOV EAX, DWORD PTR DS:[EAX]
		MOV EDX, packet
		CALL SEND_ADDR
	}
}
how to use:

Code:
NTString str("c_skill");
SEND_TO_SERVER(str.command);
Thanks to all even if i solved alone !
Sm•ke is offline  
Reply


Similar Threads Similar Threads
[Question]Sniff real send function / sent packets
04/02/2013 - Kal Online - 14 Replies
hello again ^^ , sorry for posting too much threads but i really need some help here xD , how can i hook real send function (where packets are still unencrypted) ? thanks =]
(Req) How to Online Games send packet function writing
01/31/2012 - C/C++ - 5 Replies
hello epvp members i am learning c++ now making basic game bot for knightonline need a packet sent function how to writing for online games ?
KOSP and KOEM send packet function
08/14/2011 - Kal Hacks, Bots, Cheats & Exploits - 1 Replies
Hey, There is KOSP send packet function, but i still need KOEM. Can any1? :)
Control Send Function & Hotkeys
03/26/2011 - AutoIt - 0 Replies
Hallo liebe Com! Ich ahbe mal eine Frage, in einem Spiel gibt es so Spielautomaten, bei denen man 1, 2 oder 3 drücken muss! Es ist eine Art Scher-Stein-Papier. Ich habe ienen "Bug" entdeckt, mit dem man ein bisschen betrügen kann. Doch man muss schnell Die Maus taste klicken können oder schnell eine Taste auf der Tastatur drücken können. Warum Control Send Function? Das Spiel spiele ich im Fenster Modus und mit einer normalen Send Function klappt es leider nicht.. :(. Hotkeys ? Hotkeys damit...
Hshield send function hook
10/11/2008 - Kal Online - 12 Replies
ey kann mir wer nen tipp geben wie man die addressen rauskriegt von int vom hshield für recv und send funktion damit die gehooked wird??



All times are GMT +1. The time now is 17:33.


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.