Plugin - Arena Score registration

Hello people, I need that this plugin register in ARENA SCORE,they registre only Capture the Flag, and Score not work, anyone can help me? I try add lines to registre Score mode but dont work

   from phBot import *
import struct
from datetime import datetime

log('[Plugin] Succesfully loaded [%s].' % __name__)

ArenaType = ''

def handle_joymax(opcode, data):
	if opcode == 0x34D2:
		if data[0] == 0xFF and data[1] == 0x00 and data[2] == 0x01 and data[3] == 0x01:
			log('[Arena] Successfully registered to arena: %s' % ArenaType)
			stop_bot()
	return True

def arena(arguments):
	NPCID = 0
	Time = datetime.utcnow()
	Hours = int(Time.strftime('%H'))
	Minutes = int(Time.strftime('%M'))
	Seconds = int(Time.strftime('%S'))

	if (Minutes == 35 and Seconds >= 5) or (Minutes > 35 and Minutes < 45):
		NPCs = get_npcs()
		for UniqueID, NPC in NPCs.items():
			if NPC['name'] == 'Arena Manager':
				NPCID = UniqueID
				break

		if NPCID != 0:
			global ArenaType
			ArenaType = ''
			Packet = bytearray()
			Packet.append(0x01)

			# if Hours == 18:
			# 	ArenaType = 'Job Flag'
			# 	Packet.append(0x03)
			# 	Packet.append(0x02)
			# elif Hours == 6:
			# 	ArenaType = 'Job Points'
			# 	Packet.append(0x03)
			# 	Packet.append(0x01)
			if Hours == 1 or Hours == 2 or Hours == 3 or Hours == 4 or Hours == 5 or Hours == 6 or Hours == 7 or Hours == 8 or Hours == 9 or Hours == 10 or Hours == 11 or Hours == 12 or Hours == 13 or Hours == 14 or Hours == 15 or Hours == 16 or Hours == 17 or Hours == 18 or Hours == 19 or Hours == 20 or Hours == 21 or Hours == 22 or Hours == 23 or Hours == 24:
				ArenaType = 'Random Flag'
				Packet.append(0x00)
				Packet.append(0x02)
			elif Hours == 1 or Hours == 2 or Hours == 3 or Hours == 4 or Hours == 5 or Hours == 6 or Hours == 7 or Hours == 8 or Hours == 9 or Hours == 10 or Hours == 11 or Hours == 12 or Hours == 13 or Hours == 14 or Hours == 15 or Hours == 16 or Hours == 17 or Hours == 18 or Hours == 19 or Hours == 20 or Hours == 21 or Hours == 22 or Hours == 23 or Hours == 24:
				ArenaType = 'Random Points'
				Packet.append(0x00)
				Packet.append(0x01)
			elif Hours == 1 or Hours == 2 or Hours == 3 or Hours == 4 or Hours == 5 or Hours == 6 or Hours == 7 or Hours == 8 or Hours == 9 or Hours == 10 or Hours == 11 or Hours == 12 or Hours == 13 or Hours == 14 or Hours == 15 or Hours == 16 or Hours == 17 or Hours == 18 or Hours == 19 or Hours == 20 or Hours == 21 or Hours == 22 or Hours == 23 or Hours == 24:
				ArenaType = 'Party Flag'
				Packet.append(0x01)
				Packet.append(0x02)
			elif Hours == 1 or Hours == 2 or Hours == 3 or Hours == 4 or Hours == 5 or Hours == 6 or Hours == 7 or Hours == 8 or Hours == 9 or Hours == 10 or Hours == 11 or Hours == 12 or Hours == 13 or Hours == 14 or Hours == 15 or Hours == 16 or Hours == 17 or Hours == 18 or Hours == 19 or Hours == 20 or Hours == 21 or Hours == 22 or Hours == 23 or Hours == 24:
				ArenaType = 'Party Points'
				Packet.append(0x01)
				Packet.append(0x01)
			else:
				log('[Arena] Guild arena not supported')
				return 0

			inject_joymax(0x74D3, Packet, False)
	return 500

Arena CTF those not exist anymore I mean Nobody do it longer

This plugin has Working for Arena Flag, but in my server 1Hour is Arena Flag and 1hour is Arena Score, in arena Flag they register and participe, 100% working, but whem is arena SCORE, they can’t register :frowning:

Anyone can help-me please, need packages for arena score registration :confused:

xPacketTool and start sniffing packets at that hours… Long hours just for log that packets :wink:

Does any1 have those packets or plugin for this? :frowning: Im really green in this :confused: