Party Formed Opcode

08/04/2019 17:11 bende16#1
0x706b, CLIENT_FORMED_PARTY_DELETE

i need only party form delete code
need party delete opcode
please help
706b and 'what code should we write ?'




i Success 0x7069, CLIENT_CREATE_FORMED_PARTY
00000000000000000500017D160057656C636F6D6520746F20 417263616E652056494921
08/04/2019 18:09 #HB#2
Thought a pro cracker could find that out himself, 0x706B | CLIENT_PARTY_MATCHING_DELETE:
Code:
4 uint PartyUniqueID
08/04/2019 18:47 bende16#3
Quote:
Originally Posted by #HB View Post
Thought a pro cracker could find that out himself, 0x706B | CLIENT_PARTY_MATCHING_DELETE:
Code:
4 uint PartyUniqueID
OpcodeSend("706b", "Need Code Please Help ", False)
08/05/2019 03:45 hoangphan7#4
You need 2 step.
1. Take party number from 0xb069 opcode
2. Send party form delete from 0x706b

uint partynum = 0;
if (opcode == 0xb069)
{
_pck.ReadUint8();
partynum = _pck.ReadUint32();
}

//party form delete
Packet formdel = new Packet(0x706b)
formdel.WriteUint32(partynum);
m_LocalSecurity.Send(formdel);
Send(false);