Example #1
0
File: Exp.cs Project: halo779/EoEmu
 public static byte[] Exp(int UID, int Type, ulong value)
 {
     PacketBuilder Packet = new PacketBuilder(1017, 28);
     Packet.Long(UID);
     Packet.Long(1);
     Packet.Long(Type);
     Packet.ULong(value);
     Packet.Long(0);
     return Packet.getFinal();
 }