Login queue

python with Is there a way to access the Login queue data?

sample.

login queue: 28/1027

How can I access 1027 data?

@Ryan
@DeRidder14
Help

Read it from the packet… 0x210E

1 Like

I know it’s from this package, but how exactly can I make the Data part readable?
Login queue: 118/1040
Server: (Opcode) 0x210E (Data) 01 10 04 E1 F3 C2 00 76

Please help with this, thank you.

Untested…

def handle_joymax(opcode, data):
	if opcode == 0x210E:
		if data[0] == 1:
			Index = 1
			MaxQueue = struct.unpack_from('<H',data,Index)[0]
			Index += 6
			CurrentQueue = struct.unpack_from('<H',data,Index)[0]

1 Like

Love u bro :slight_smile:

That’s what I was looking for

Thanks

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.