Hi again, ^^
Pick opcode 7074
I parse SingleSpawnPacket 3015... parse the gold's id and i sent a 7074 packet to server, but char don't pick gold :S
3015 Parse Code
Pick opcode 7074
Code:
[C -> S][7074] 01 ................ 01 ................ 01 ................ 40 2C 1A 00 @,..............
3015 Parse Code
Code:
case 0x3015://SingleSpawn
uint model = oku.ReadUInt32();
string type = Character.FindSpawnType(model);
if (type.Contains("SN_ITEM_ETC_GOLD"))
{
//Gold
oku.ReadByte();
uint id = oku.ReadUInt32();
Packet topla = new Packet(0x7074);
topla.WriteUInt8(1);
topla.WriteUInt8(2);
topla.WriteUInt8(1);
topla.WriteUInt32(id);
ag_remote_security.Send(topla);
}