Sending packetsOk I basically want to know, how to send packets to a certan process. c++ example a friend send me idk if it's correct or whatever... Code: DWORD id; memcpy((void*)&id,(void*)((DWORD)packet+3),4); char name[255]={0}; memcpy((void*)&name,(void*)((DWORD)packet+7),16); printf("Player: [ID: %d Name: %s]\n",id,name);
it is an online mmorpg I want to send packets to. For instance, there is a packet for dancing ingame. Now I want to send the packet to dance with a button click or whatever.