- Joined
- May 19, 2007
- Messages
- 141
- Reaction score
- 0
This is my last guide how to add hotkeys.
Open packetBuilder.cs
Belove :
public class PacketBuilder
Add :
Open Login.cs
Find :
Belove that add :
Have fun ! Compile and enjoy Conquer Online !
Open packetBuilder.cs
Belove :
public class PacketBuilder
Add :
PHP:
public static byte[] Hotkey1()
{
byte[] Packet = new byte[0x14];
Packet[0] = (byte)(Packet.Length & 0xff);
Packet[2] = 0xf8;
Packet[3] = 0x03;
Packet[4] = 0x01;
Packet[12] = 0x14;
return Packet;
}
Open Login.cs
Find :
PHP:
_client.SendData(PacketBuilder.The89(_client.Char));
Belove that add :
PHP:
//Hotkeys
_client.SendData(PacketBuilder.Hotkey1());
Have fun ! Compile and enjoy Conquer Online !