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?
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);