Accept party matching requst packet

05/01/2020 22:28 Mr.Awesome1337#1
this is the packet structure
PHP Code:
[-> S][306E]
55 00 00 00  // i don't know that is that                                      U...............
A6 06 00 00  //but iam knowing that                                     ................
01                                                ................ 
i want to know what
PHP Code:
55  00 00  00 
it is refer to? it is not static by the way
05/02/2020 01:46 sarkoplata#2
it's probably Model or JID
05/02/2020 03:35 JellyBitz#3
SERVER_AGENT_PARTY_MATCHING_PLAYER_JOIN_REQUEST = 0x706D
CLIENT_AGENT_PARTY_MATCHING_PLAYER_JOIN_RESPONSE = 0x306E

PHP Code:
uint requestID // UID generated from 0x706D to identify the specific player attempt
uint playerJID // UID used in party stuffs frequently to identify the player
byte response // 1 = accept; 0 = deny 
I just updated the [Only registered and activated users can see links. Click Here To Register...] ... and changed the packet name to give more sense (:
05/03/2020 23:28 Mr.Awesome1337#4
Quote:
Originally Posted by JellyBitz View Post
SERVER_AGENT_PARTY_MATCHING_PLAYER_JOIN_REQUEST = 0x706D
CLIENT_AGENT_PARTY_MATCHING_PLAYER_JOIN_RESPONSE = 0x306E

PHP Code:
uint requestID // UID generated from 0x706D to identify the specific player attempt
uint playerJID // UID used in party stuffs frequently to identify the player
byte response // 1 = accept; 0 = deny 
I just updated the [Only registered and activated users can see links. Click Here To Register...] ... and changed the packet name to give more sense (:
thank you for your assistance it worked for me