Nostale Game Functions?

05/27/2020 16:39 smkk6#1
Hi community i created dll to c++ and try call

Text strings referenced in at:CODE, item 2263
Address=006978D5
Disassembly=MOV EDX,at.00697B40
Text string=ASCII "rl"

RL = "Raid List"

Code:
typedef int(*__cdecl popup_steam_offline_)();
popup_steam_offline_ popup_steam_offline = (popup_steam_offline_)(0x6978D5);

and called in function

void Started()
{
cout << "   ---- Start Debug [Loading] \n";
	popup_steam_offline;
	cout << " Debug Called PopUp";

}
Image Test : [Only registered and activated users can see links. Click Here To Register...]
Injection its sucessfull also don't work called function
i look in ( PacketLogger ) Ty packet rl work only "rl" don't need any more char or info
PD: Ty for packetlogger to help watch packets
05/30/2020 01:38 forsatus#2
You just want to send the "rl" packet ?
05/30/2020 07:23 smkk6#3
i want call function RL ( in asm ) or hook any function
i don't want use packetlogger
05/31/2020 01:33 cookie69#4
Quote:
Originally Posted by smkk6 View Post
Hi community i created dll to c++ and try call

Text strings referenced in at:CODE, item 2263
Address=006978D5
Disassembly=MOV EDX,at.00697B40
Text string=ASCII "rl"

RL = "Raid List"

Code:
typedef int(*__cdecl popup_steam_offline_)();
popup_steam_offline_ popup_steam_offline = (popup_steam_offline_)(0x6978D5);

and called in function

void Started()
{
cout << "   ---- Start Debug [Loading] \n";
	popup_steam_offline;
	cout << " Debug Called PopUp";

}
Image Test : [Only registered and activated users can see links. Click Here To Register...]
Injection its sucessfull also don't work called function
i look in ( PacketLogger ) Ty packet rl work only "rl" don't need any more char or info
PD: Ty for packetlogger to help watch packets
I dont know this game but I think you made a mistake in the typedef...
shouldn't be like this?
Code:
typedef int(__cdecl* popup_steam_offline_)();
also check the calling convention