• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Canary Cast system [Solved]

Joriku

Working in the mines, need something?
Joined
Jul 16, 2016
Messages
1,175
Solutions
17
Reaction score
481
Location
Sweden
Ops, I was a bit drunk when I wrote this :D
Rephrased
When creating a cast system, how do we handle the cast viewer, is it a real player as a "ghost", or is it an observer?

Real player: without functionallity
Or do we run it as an observer, seems to be a bit harder to achieve.

While I am trying to create a cast system, I cannot get the cast viewer to join the cast without losing its connection
The best one I had, it went inside, then lost connection.

Right now, it keeps crashing the server.

Caster: Enables cast
Viewer: Enters cast
Viewer: Waiting, loses connection.
Caster: Auto ended their cast

I may be doing it the wrong direction, any thoughts?

I can provide code snippets

Previous server logs:
[2026-04-01 19:24:33.678] [info] Jori Testing has logged in. (Protocol: 1412)
[Cast System] Player Jori Testing (ID: 10) has enabled casting
[2026-04-01 19:24:53.094] [info] [Cast System] Spectator attempting to join cast for player 'Jori Testing' (ID: 10)
[2026-04-01 19:24:53.095] [info] [Cast System] Database query result for player Jori Testing (ID: 10): cast_status = 1
[2026-04-01 19:24:53.096] [info] [Cast System] Spectator joining cast for player Jori Testing (ID: 10), cast_status: 1
[2026-04-01 19:24:53.096] [info] [Cast System] Registering caster Jori Testing (ID: 10) - casting enabled but not registered
[2026-04-01 19:24:53.096] [info] [CastManager] Registered caster Jori Testing (ID: 10)
[2026-04-01 19:24:53.096] [info] [Cast System] registerCaster returned successfully
[2026-04-01 19:24:53.096] [info] [Cast System] foundPlayer is still valid after registerCaster
[2026-04-01 19:24:53.096] [info] [Cast System] Successfully stored caster data for Jori Testing (GUID: 10, Runtime ID: 268435466)
[2026-04-01 19:24:53.096] [info] [Cast System] Verified caster Jori Testing has active client connection (read-only check)
[2026-04-01 19:24:53.096] [info] [Cast System] Exited try-catch block, about to set spectator flags
[2026-04-01 19:24:53.096] [info] [Cast System] Successfully accessed self->m_isCastViewerBool
[2026-04-01 19:24:53.096] [info] [Cast System] Setting spectator flags...
[2026-04-01 19:24:53.096] [info] [Cast System] Set m_isCastViewerBool = true
[2026-04-01 19:24:53.096] [info] [Cast System] Set m_spectatedPlayer
[2026-04-01 19:24:53.096] [info] [Cast System] Set player = nullptr
[2026-04-01 19:24:53.096] [info] [Cast System] Starting to send initial world snapshot...
[2026-04-01 19:24:53.096] [info] [Cast System] [PACKET OUT] Sending time packet (0x1F) - lightHour: 584, length: 5
[2026-04-01 19:24:53.096] [info] [Cast System] Sent time packet
[2026-04-01 19:24:53.096] [info] [Cast System] Preparing to send pending state packet
[2026-04-01 19:24:53.096] [info] [Cast System] [PACKET OUT] Sending pending state packet (0x0A) - length: 1
[2026-04-01 19:24:53.096] [info] [Cast System] Sent pending state packet
[2026-04-01 19:24:53.096] [info] [Cast System] Preparing to send enter world packet
[2026-04-01 19:24:53.096] [info] [Cast System] [PACKET OUT] Sending enter world packet (0x0F) - length: 1
[2026-04-01 19:24:53.096] [info] [Cast System] Sent enter world packet
[2026-04-01 19:24:53.096] [info] [Cast System] About to send basic game data packet
[2026-04-01 19:24:53.096] [info] [Cast System] Calling sendBasicDataForPlayer...
[2026-04-01 19:24:53.096] [info] [Cast System] [PACKET OUT] About to send basic game data packet (0x9F) via sendBasicDataForPlayer()
[2026-04-01 19:24:53.099] [info] [Cast System] Sent basic game data packet
[2026-04-01 19:24:53.099] [info] [Cast System] Verifying safeFoundPlayer before map description...
[2026-04-01 19:24:53.099] [info] [Cast System] About to send map description...
[2026-04-01 19:24:53.099] [info] [Cast System] Calling sendMapDescriptionForPlayer...
[2026-04-01 19:24:53.099] [info] [Cast System] [PACKET OUT] About to send map description (0x64) - position: x=32367, y=32232, z=7
Segmentation fault (core dumped)

Issue has been solved, sent wrong packet from what it's expecting.
Going for a ghost player that is read-only, cannot interact with the players actions, chat etc.
 
Last edited:
[2026-05-01 20:38:09.010] [info] [CastSystem] [NORMAL_LOGIN] Starting normal player login packet sequence
[2026-05-01 20:38:09.010] [info] [CastSystem] [NORMAL_LOGIN] [1] Bug Report (0x1A) sent
[2026-05-01 20:38:09.010] [info] [CastSystem] [NORMAL_LOGIN] [2] Time (0xEF) sent
[2026-05-01 20:38:09.010] [info] [CastSystem] [NORMAL_LOGIN] [3] Pending State (0x0A) sent
[2026-05-01 20:38:09.010] [info] [CastSystem] [NORMAL_LOGIN] [4] Enter World (0x0F) sent
[2026-05-01 20:38:09.010] [info] [CastSystem] [NORMAL_LOGIN] [5] Map Description (0x64) sent
[2026-05-01 20:38:09.010] [info] [CastSystem] [NORMAL_LOGIN] [6] Sending inventory items...
[2026-05-01 20:38:09.010] [info] [CastSystem] [NORMAL_LOGIN] [6] Inventory items sent
[2026-05-01 20:38:09.010] [info] [CastSystem] [NORMAL_LOGIN] [7] Stats (0xA0) sent
[2026-05-01 20:38:09.010] [info] [CastSystem] [NORMAL_LOGIN] [8] Skills (0xA1) sent
[2026-05-01 20:38:09.010] [info] [CastSystem] [NORMAL_LOGIN] [9] Bless Status (0x9C) sent
[2026-05-01 20:38:09.010] [info] [CastSystem] [NORMAL_LOGIN] [10] Premium Trigger (0x9E) sent
[2026-05-01 20:38:09.010] [info] [CastSystem] [NORMAL_LOGIN] [11] Items Price sent
[2026-05-01 20:38:09.010] [info] [CastSystem] [NORMAL_LOGIN] [12] Prey Prices sent
[2026-05-01 20:38:09.010] [info] [CastSystem] [NORMAL_LOGIN] [13] Prey Data sent
[2026-05-01 20:38:09.010] [info] [CastSystem] [NORMAL_LOGIN] [14] Task Hunting Data sent
[2026-05-01 20:38:09.010] [info] [CastSystem] [NORMAL_LOGIN] [15] Forging Data sent
[2026-05-01 20:38:09.010] [info] [CastSystem] [NORMAL_LOGIN] [16] World Light (0x82) sent
[2026-05-01 20:38:09.010] [info] [CastSystem] [NORMAL_LOGIN] [17] Creature Light sent
[2026-05-01 20:38:09.010] [info] [CastSystem] [NORMAL_LOGIN] [18] VIP Groups sent
[2026-05-01 20:38:09.017] [info] [CastSystem] [NORMAL_LOGIN] [19] Inventory IDs sent
[2026-05-01 20:38:09.017] [info] [CastSystem] [NORMAL_LOGIN] [20] Loot Containers sent
[2026-05-01 20:38:09.017] [info] [CastSystem] [NORMAL_LOGIN] [21] Basic Data (0x9F) sent
[2026-05-01 20:38:09.017] [info] [CastSystem] [NORMAL_LOGIN] [22] Houses Info sent
[2026-05-01 20:38:09.017] [info] [CastSystem] [NORMAL_LOGIN] [23] Gift of Life Cooldown sent
[2026-05-01 20:38:09.017] [info] [CastSystem] [NORMAL_LOGIN] [24] Client Check sent
[2026-05-01 20:38:09.017] [info] [CastSystem] [NORMAL_LOGIN] [25] Game News sent
[2026-05-01 20:38:09.017] [info] [CastSystem] [NORMAL_LOGIN] [26] Icons sent
[2026-05-01 20:38:09.017] [info] killer has logged in. (Protocol: 1412)
[Cast System] Player killer (ID: 18) has enabled casting
[2026-05-01 20:38:19.199] [info] [CastManager] Registered caster: killer (ID: 268435474)
[2026-05-01 20:38:19.199] [info] [CastSystem] Spectator connecting to caster: killer (ID: 18)
[2026-05-01 20:38:19.249] [info] [CastSystem] Getting caster position...
[2026-05-01 20:38:19.249] [info] [CastSystem] Initializing spectator snapshot for caster: killer at ( 32369, 32233, 7 )
[2026-05-01 20:38:19.249] [info] [CastSystem] [SEQUENCE] Starting packet sequence for spectator initialization
[2026-05-01 20:38:19.249] [info] [CastSystem] [SEQUENCE] [1] Preparing Self Creature packet (0x17)...
[2026-05-01 20:38:19.249] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 72)
[2026-05-01 20:38:19.249] [info] [CastSystem] [SEQUENCE] [1] ✓ Self Creature (0x17) sent
[2026-05-01 20:38:19.249] [info] [CastSystem] [SEQUENCE] [2] Preparing Bug Report packet (0x1A)...
[2026-05-01 20:38:19.249] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 2)
[2026-05-01 20:38:19.249] [info] [CastSystem] [SEQUENCE] [2] ✓ Bug Report (0x1A) sent
[2026-05-01 20:38:19.249] [info] [CastSystem] [SEQUENCE] [3] Preparing Time packet (0xEF)...
[2026-05-01 20:38:19.249] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 3)
[2026-05-01 20:38:19.249] [info] [CastSystem] [SEQUENCE] [3] ✓ Time (0xEF) sent
[2026-05-01 20:38:19.249] [info] [CastSystem] [SEQUENCE] [4] Preparing Pending State packet (0x0A)...
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 1)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [4] ✓ Pending State (0x0A) sent
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [5] Preparing Enter World packet (0x0F)...
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 1)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [5] ✓ Enter World (0x0F) sent
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [6] Preparing Map Description packet (0x64)...
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 2980)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [6] ✓ Map Description (0x64) sent (length: 2980)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [7] Preparing Inventory packets (0x79) for 11 slots...
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 2)
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 2)
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 2)
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 2)
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 2)
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 2)
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 2)
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 2)
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 2)
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 2)
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 2)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [7] ✓ Inventory packets (0x79) sent for all slots
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [8] Preparing Player Stats packet (0xA0)...
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 60)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [8] ✓ Player Stats (0xA0) sent
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [9] Preparing Player Skills packet (0xA1)...
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 143)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [9] ✓ Player Skills (0xA1) sent
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [10] Preparing Bless Status packet (0x9C)...
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 4)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [10] ✓ Bless Status (0x9C) sent
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [11] Preparing Premium Trigger packet (0x9E)...
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 18)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [11] ✓ Premium Trigger (0x9E) sent
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [11.5] Preparing Items Price packet (0xCD)...
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 3)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [11.5] ✓ Items Price (0xCD) sent (0 items)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [11.6] Preparing Prey Prices packet (0xE9)...
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 17)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [11.6] ✓ Prey Prices (0xE9) sent
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [11.7.1] Preparing Prey Data packet (0xE8) for slot 0...
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 171)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [11.7.1] ✓ Prey Data (0xE8) sent for slot 0
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [11.7.2] Preparing Prey Data packet (0xE8) for slot 1...
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 195)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [11.7.2] ✓ Prey Data (0xE8) sent for slot 1
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [11.7.3] Preparing Prey Data packet (0xE8) for slot 2...
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 185)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [11.7.3] ✓ Prey Data (0xE8) sent for slot 2
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [11.8.1] Preparing Task Hunting Data packet (0xBB) for slot 0...
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 36)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [11.8.1] ✓ Task Hunting Data (0xBB) sent for slot 0
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [11.8.2] Preparing Task Hunting Data packet (0xBB) for slot 1...
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 36)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [11.8.2] ✓ Task Hunting Data (0xBB) sent for slot 1
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [11.8.3] Preparing Task Hunting Data packet (0xBB) for slot 2...
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 36)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [11.8.3] ✓ Task Hunting Data (0xBB) sent for slot 2
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [11.9] Preparing Forging Data packet (0x86)...
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 369)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [11.9] ✓ Forging Data (0x86) sent
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [12] Preparing World Light packet (0x82)...
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 3)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [12] ✓ World Light (0x82) sent
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [13] Preparing Creature Light packet (0x8D)...
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 7)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [13] ✓ Creature Light (0x8D) sent
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [13.5] Preparing VIP Groups packet (0xD4)...
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 44)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [13.5] ✓ VIP Groups (0xD4) sent (3 groups)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [13.6] Preparing Inventory IDs packet (0xF5)...
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 108)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [13.6] ✓ Inventory IDs (0xF5) sent (21 items)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [13.7] Preparing Loot Containers packet (0xC0)...
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 8)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [13.7] ✓ Loot Containers (0xC0) sent (1 containers)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [14] Preparing Basic Data packet (0x9F)...
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 11)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [14] ✓ Basic Data (0x9F) sent
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [14.5] Preparing Houses Info packet (0xC6)...
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 16)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [14.5] ✓ Houses Info (0xC6) sent (house ID: 0)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [14.6] Preparing Gift of Life Cooldown packet (0x5E)...
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 12)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [14.6] ✓ Gift of Life Cooldown (0x5E) sent
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [15] Preparing Client Check packet (0x63)...
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 6)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [15] ✓ Client Check (0x63) sent
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [16] Preparing Game News packet (0x98)...
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 6)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [16] ✓ Game News (0x98) sent
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [17] Preparing Icons packet (0xA2)...
[2026-05-01 20:38:19.254] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 10)
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] [17] ✓ Icons (0xA2) sent (1 icons)
[2026-05-01 20:38:19.254] [info] [CastManager] Added spectator to caster killer (ID: 268435474), total spectators: 1
[2026-05-01 20:38:19.254] [info] [CastSystem] [SEQUENCE] ✓ Spectator initialization complete - all packets sent
[2026-05-01 20:38:19.254] [info] [CastSystem] Spectator snapshot sent successfully for caster: killer
[2026-05-01 20:38:19.621] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 12)
[2026-05-01 20:38:22.260] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 12)
[2026-05-01 20:38:24.926] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 12)
[2026-05-01 20:38:27.844] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 12)
[2026-05-01 20:38:30.507] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 12)
[2026-05-01 20:38:33.310] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 12)
[2026-05-01 20:38:36.151] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 12)
[2026-05-01 20:38:39.395] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 12)
[2026-05-01 20:38:41.891] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 12)
[2026-05-01 20:38:44.834] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 12)
[2026-05-01 20:38:47.396] [info] [CastSystem] [PACKET] Sending to spectator: 0x00 (length: 12)
[2026-05-01 20:38:49.257] [info] [CastManager] Removed spectator from caster ID 268435474
[2026-05-01 20:38:49.264] [info] [CastSystem] Spectator disconnected and removed from CastManager


Not sure what is making the connection closed.
 
Back
Top