diff --git a/app.ts b/app.ts index ba96253..00adb4f 100644 --- a/app.ts +++ b/app.ts @@ -6,8 +6,13 @@ import { authenticateMatchmakingRequest, registerAuthRoutes } from './auth_bridg import { getPlayerLast10MatchRecord, insertMatchForNewRoom, + insertRematchMatch, + loadUsernamesForUserPair, + MATCH_ENTRY_FEE_RC, registerMatchRoutes, updateMatchUserBlue, + type CreateRematchRoomFn, + type MatchRoomSuccessEnvelope, } from './matches'; import { initServerLog, @@ -66,7 +71,6 @@ const gameName = configuredGame.name || "game"; logVerbose(logLevel, typedSettings); registerAuthRoutes(app, typedSettings); -registerMatchRoutes(app, typedSettings); let Rooms: Room[] = []; let Queue: QueueEntry[] = []; @@ -89,6 +93,83 @@ function removeUserFromQueue(userId: number): void { } } +/** GET / JSON only: same order as match DB — first joined = red, second = blue. Always includes `entry_fee`. */ +function roomResponseForViewer(room: Room, viewerUserId: number): Room { + const idx = room.Players.findIndex((p) => p.UserId === viewerUserId); + const your_team: 'red' | 'blue' | null = idx === 0 ? 'red' : idx === 1 ? 'blue' : null; + const entry_fee = room.entry_fee ?? MATCH_ENTRY_FEE_RC; + return { ...room, entry_fee, your_team }; +} + +/** Same envelope as `POST /internal/rematch` success: both sides when seated, else `null` for open slot. */ +function roomMatchSuccessEnvelope(room: Room): MatchRoomSuccessEnvelope { + const entry_fee = room.entry_fee ?? MATCH_ENTRY_FEE_RC; + const redId = room.Players[0]?.UserId; + const blueId = room.Players[1]?.UserId; + return { + ok: true, + entry_fee, + for_red: redId != null ? roomResponseForViewer(room, redId) : null, + for_blue: blueId != null ? roomResponseForViewer(room, blueId) : null, + }; +} + +const createRematchRoom: CreateRematchRoomFn = async ({ userRedId, userBlueId, entryFee }) => { + return runMatchmakerExclusive(async () => { + const names = await loadUsernamesForUserPair(typedSettings, userRedId, userBlueId); + if (!names) { + return { ok: false, status: 404, error: 'One or both players not found' }; + } + + for (const room of Rooms) { + room.Players = room.Players.filter((p) => p.UserId !== userRedId && p.UserId !== userBlueId); + } + for (let i = Rooms.length - 1; i >= 0; i--) { + if (Rooms[i]!.Players.length === 0) { + Rooms.splice(i, 1); + } + } + removeUserFromQueue(userRedId); + removeUserFromQueue(userBlueId); + + const matchId = await insertRematchMatch(typedSettings, userRedId, userBlueId, entryFee); + if (matchId == null) { + return { ok: false, status: 500, error: 'Failed to create match row' }; + } + + const newPort = GetRandomPort(typedSettings.port_range_min, typedSettings.port_range_max); + const [l10Red, l10Blue] = await Promise.all([ + getPlayerLast10MatchRecord(typedSettings, userRedId), + getPlayerLast10MatchRecord(typedSettings, userBlueId), + ]); + + const redName = names.nameById.get(userRedId)!; + const blueName = names.nameById.get(userBlueId)!; + + const newRoom: Room = { + Players: [ + { Name: redName, LastSeen: Date.now(), UserId: userRedId, ...l10Red }, + { Name: blueName, LastSeen: Date.now(), UserId: userBlueId, ...l10Blue }, + ], + GameName: gameName, + Port: newPort, + InitTime: Date.now(), + entry_fee: entryFee, + match_id: matchId, + instance_started: true, + }; + Rooms.push(newRoom); + OpenGameInstance(configuredGame.exe, newRoom.Port, newRoom.match_id); + recordHistory( + `Rematch room port ${newPort} match ${matchId} — ${redName} vs ${blueName} (entry_fee ${entryFee})` + ); + + return roomMatchSuccessEnvelope(newRoom); + }); +}; + +registerMatchRoutes(app, typedSettings, { createRematchRoom }); + app.get('/settings', (req: Request, res: Response) => { if (req.query.password !== typedSettings.password) { res.send("403 Unauthorized"); @@ -221,7 +302,7 @@ app.get('/', async (req: Request, res: Response) => { if (joinedRoom !== null) { // Already in a room. Stopping here removeUserFromQueue(userId); - res.send(roomResponseForViewer(joinedRoom, userId)); + res.json(roomMatchSuccessEnvelope(joinedRoom)); return; } @@ -234,7 +315,8 @@ app.get('/', async (req: Request, res: Response) => { Players: [{ Name: username, LastSeen: Date.now(), UserId: userId, ...l10 }], GameName: gameName, Port: newPort, - InitTime: Date.now() + InitTime: Date.now(), + entry_fee: MATCH_ENTRY_FEE_RC, }; const matchId = await insertMatchForNewRoom(typedSettings, userId); if (matchId != null) { @@ -245,7 +327,7 @@ app.get('/', async (req: Request, res: Response) => { recordHistory( `${username} created a room on port ${newPort} (match id ${newRoom.match_id ?? '—'}) — waiting for opponent` ); - res.send(roomResponseForViewer(newRoom, userId)); + res.json(roomMatchSuccessEnvelope(newRoom)); return; } } else { @@ -267,7 +349,7 @@ app.get('/', async (req: Request, res: Response) => { `new room created with port ${room.Port} and matchId ${room.match_id ?? '—'} for ${p0.Name} and ${p1.Name}` ); } - res.send(roomResponseForViewer(room, userId)); + res.json(roomMatchSuccessEnvelope(room)); return; } @@ -362,6 +444,7 @@ app.get('/reopen', async (req: Request, res: Response) => { GameName: gameName, Port: port, InitTime: Date.now(), + entry_fee: MATCH_ENTRY_FEE_RC, instance_started: true, }; const matchId = await insertMatchForNewRoom(typedSettings); @@ -384,13 +467,6 @@ app.get('/reopen', async (req: Request, res: Response) => { } }); -/** GET / JSON only: same order as match DB — first joined = red, second = blue. */ -function roomResponseForViewer(room: Room, viewerUserId: number): Room { - const idx = room.Players.findIndex((p) => p.UserId === viewerUserId); - const your_team: 'red' | 'blue' | null = idx === 0 ? 'red' : idx === 1 ? 'blue' : null; - return { ...room, your_team }; -} - app.use((err: unknown, _req: Request, res: Response, next: express.NextFunction) => { const e = err as { status?: number; type?: string }; if (e.status === 400 && e.type === 'entity.parse.failed') { diff --git a/games/soccar/soccar_Data/26014.txt b/games/soccar/soccar_Data/26014.txt deleted file mode 100644 index 1d6aac2..0000000 --- a/games/soccar/soccar_Data/26014.txt +++ /dev/null @@ -1,73 +0,0 @@ -[04/26/2026 06:34:04] Configured dedicated match reporting for match id 168 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:34:04] Starting server at port 26014 -[04/26/2026 06:34:08] Dedicated match PATCH success: 200 {"ok":true,"id":168} -[04/26/2026 06:34:10] Game started On Server -[04/26/2026 06:34:10] Dedicated match PATCH success: 200 {"ok":true,"id":168} -[04/26/2026 06:34:21] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:34:21] launching puck at (0.13, -5.00) with (-9.38, 348.33) force -[04/26/2026 06:34:39] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:34:39] launching puck at (-0.06, -5.00) with (4.31, 348.43) force -[04/26/2026 06:34:45] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:34:45] launching puck at (0.09, -5.00) with (-6.40, 348.39) force -[04/26/2026 06:34:50] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:34:50] launching puck at (-2.83, -4.12) with (197.54, 287.05) force -[04/26/2026 06:34:57] force = 70 * 0.9478872 = 66.3521 -[04/26/2026 06:34:57] launching puck at (4.32, -1.19) with (-286.40, 78.93) force -[04/26/2026 06:35:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:03] launching puck at (2.07, 4.55) with (-143.92, -317.34) force -[04/26/2026 06:35:11] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:11] launching puck at (0.40, 4.98) with (-27.87, -347.34) force -[04/26/2026 06:35:21] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:21] launching puck at (0.12, 5.00) with (-8.53, -348.35) force -[04/26/2026 06:35:29] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:29] launching puck at (-1.59, -4.74) with (110.72, 330.39) force -[04/26/2026 06:35:37] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:37] launching puck at (-0.42, 4.98) with (29.48, -347.20) force -[04/26/2026 06:35:43] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:43] launching puck at (-4.93, -0.85) with (343.34, 59.46) force -[04/26/2026 06:35:48] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:48] launching puck at (-3.69, 3.37) with (257.12, -235.18) force -[04/26/2026 06:35:54] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:54] launching puck at (0.22, -5.00) with (-15.50, 348.11) force -[04/26/2026 06:35:59] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:59] launching puck at (-1.89, 4.63) with (131.74, -322.59) force -[04/26/2026 06:36:05] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:05] launching puck at (-5.00, -0.16) with (348.26, 11.49) force -[04/26/2026 06:36:10] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:10] launching puck at (0.53, 4.97) with (-36.85, -346.50) force -[04/26/2026 06:36:17] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:17] launching puck at (-0.87, -4.92) with (60.86, 343.10) force -[04/26/2026 06:36:22] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:22] launching puck at (1.97, 4.60) with (-137.10, -320.35) force -[04/26/2026 06:36:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:27] launching puck at (4.97, -0.59) with (-346.03, 41.05) force -[04/26/2026 06:36:31] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:31] launching puck at (1.24, 4.84) with (-86.22, -337.62) force -[04/26/2026 06:36:38] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:38] launching puck at (-1.27, 4.84) with (88.21, -337.10) force -[04/26/2026 06:36:42] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:42] launching puck at (0.07, 5.00) with (-4.81, -348.42) force -[04/26/2026 06:36:47] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:47] launching puck at (4.64, 1.87) with (-323.09, -130.51) force -[04/26/2026 06:36:56] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:56] launching puck at (4.66, 1.80) with (-325.05, -125.55) force -[04/26/2026 06:37:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:03] launching puck at (0.01, -5.00) with (-0.38, 348.45) force -[04/26/2026 06:37:15] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:15] launching puck at (3.27, 3.78) with (-228.10, -263.42) force -[04/26/2026 06:37:21] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:21] launching puck at (0.83, -4.93) with (-57.76, 343.63) force -[04/26/2026 06:37:29] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:29] launching puck at (-0.29, 4.99) with (20.44, -347.85) force -[04/26/2026 06:37:35] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:35] launching puck at (-4.05, -2.93) with (282.13, 204.51) force -[04/26/2026 06:37:51] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:51] launching puck at (-3.31, 3.75) with (230.57, -261.26) force -[04/26/2026 06:37:57] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:57] launching puck at (-0.13, -5.00) with (9.12, 348.33) force -[04/26/2026 06:38:05] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:38:05] launching puck at (-0.61, 4.96) with (42.76, -345.82) force -[04/26/2026 06:38:12] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:38:12] launching puck at (0.24, -4.99) with (-16.81, 348.05) force -[04/26/2026 06:38:13] Dedicated match PATCH success: 200 {"ok":true,"id":168} -[04/26/2026 06:38:14] Dedicated match PATCH success: 200 {"ok":true,"id":168,"winner_id":18,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26022.txt b/games/soccar/soccar_Data/26022.txt deleted file mode 100644 index 631486e..0000000 --- a/games/soccar/soccar_Data/26022.txt +++ /dev/null @@ -1,3 +0,0 @@ -[04/26/2026 06:39:24] Configured dedicated match reporting for match id 177 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:39:24] Starting server at port 26022 -[04/26/2026 06:39:57] Dedicated match PATCH success: 200 {"ok":true,"id":177} diff --git a/games/soccar/soccar_Data/26023.txt b/games/soccar/soccar_Data/26023.txt deleted file mode 100644 index 88360ef..0000000 --- a/games/soccar/soccar_Data/26023.txt +++ /dev/null @@ -1,45 +0,0 @@ -[04/26/2026 06:14:20] Configured dedicated match reporting for match id 137 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:14:20] Starting server at port 26023 -[04/26/2026 06:14:40] Dedicated match PATCH success: 200 {"ok":true,"id":137} -[04/26/2026 06:14:40] Game started On Server -[04/26/2026 06:14:40] Dedicated match PATCH success: 200 {"ok":true,"id":137} -[04/26/2026 06:14:43] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:43] launching puck at (0.13, -5.00) with (-9.14, 348.33) force -[04/26/2026 06:14:50] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:50] launching puck at (-4.13, 2.82) with (287.56, -196.79) force -[04/26/2026 06:14:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:55] launching puck at (-2.68, -4.22) with (186.60, 294.28) force -[04/26/2026 06:15:05] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:15:05] launching puck at (0.48, 4.98) with (-33.68, -346.82) force -[04/26/2026 06:15:13] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:15:13] launching puck at (2.25, -4.46) with (-156.93, 311.11) force -[04/26/2026 06:15:19] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:15:19] launching puck at (0.35, 4.99) with (-24.65, -347.58) force -[04/26/2026 06:15:23] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:15:23] launching puck at (3.57, -3.50) with (-248.80, 243.96) force -[04/26/2026 06:15:30] force = 70 * 0.9739239 = 68.17467 -[04/26/2026 06:15:30] launching puck at (-4.31, 2.02) with (293.88, -137.71) force -[04/26/2026 06:15:37] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:15:37] launching puck at (-2.75, -4.18) with (191.45, 291.15) force -[04/26/2026 06:15:44] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:15:44] launching puck at (1.46, -4.78) with (-101.88, 333.23) force -[04/26/2026 06:15:50] force = 70 * 0.9183863 = 64.28704 -[04/26/2026 06:15:50] launching puck at (0.65, -4.12) with (-41.80, 264.84) force -[04/26/2026 06:15:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:15:55] launching puck at (0.50, 4.98) with (-34.52, -346.74) force -[04/26/2026 06:16:02] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:16:02] launching puck at (-0.94, -4.91) with (65.63, 342.22) force -[04/26/2026 06:16:08] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:16:08] launching puck at (2.43, 4.37) with (-169.59, -304.40) force -[04/26/2026 06:16:14] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:16:14] launching puck at (0.21, -5.00) with (-14.92, 348.13) force -[04/26/2026 06:16:20] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:16:20] launching puck at (-3.24, 3.81) with (225.99, -265.24) force -[04/26/2026 06:16:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:16:27] launching puck at (0.78, -4.94) with (-54.28, 344.20) force -[04/26/2026 06:16:34] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:16:34] launching puck at (4.93, -0.85) with (-343.42, 59.03) force -[04/26/2026 06:16:40] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:16:40] launching puck at (4.49, 2.19) with (-313.22, -152.68) force -[04/26/2026 06:16:41] Dedicated match PATCH success: 200 {"ok":true,"id":137} -[04/26/2026 06:16:44] Dedicated match PATCH success: 200 {"ok":true,"id":137,"winner_id":18,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26029.txt b/games/soccar/soccar_Data/26029.txt deleted file mode 100644 index f8da3e7..0000000 --- a/games/soccar/soccar_Data/26029.txt +++ /dev/null @@ -1,3 +0,0 @@ -[04/26/2026 06:45:25] Configured dedicated match reporting for match id 187 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:45:25] Starting server at port 26029 -[04/26/2026 06:45:30] Dedicated match PATCH success: 200 {"ok":true,"id":187} diff --git a/games/soccar/soccar_Data/26034.txt b/games/soccar/soccar_Data/26034.txt deleted file mode 100644 index d277382..0000000 --- a/games/soccar/soccar_Data/26034.txt +++ /dev/null @@ -1,89 +0,0 @@ -[04/25/2026 13:17:18] Configured dedicated match reporting for match id 112 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/25/2026 13:17:18] Starting server at port 26034 -[04/25/2026 13:17:22] Dedicated match PATCH success: 200 {"ok":true,"id":112} -[04/25/2026 13:17:22] Game started On Server -[04/25/2026 13:17:22] Dedicated match PATCH success: 200 {"ok":true,"id":112} -[04/25/2026 13:17:28] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:17:28] launching puck at (-0.01, -5.00) with (0.43, 348.45) force -[04/25/2026 13:17:45] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:17:45] launching puck at (-4.96, 0.60) with (345.93, -41.85) force -[04/25/2026 13:18:00] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:18:00] launching puck at (-3.45, -3.62) with (240.45, 252.19) force -[04/25/2026 13:18:08] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:18:08] launching puck at (-4.64, 1.87) with (323.13, -130.41) force -[04/25/2026 13:18:15] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:18:15] launching puck at (-3.62, -3.45) with (252.45, 240.19) force -[04/25/2026 13:18:22] force = 70 * 0.8937235 = 62.56065 -[04/25/2026 13:18:22] launching puck at (-1.98, 3.40) with (123.59, -212.56) force -[04/25/2026 13:18:28] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:18:28] launching puck at (4.50, -2.18) with (-313.75, 151.60) force -[04/25/2026 13:18:44] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:18:44] launching puck at (-1.09, -4.88) with (76.12, 340.04) force -[04/25/2026 13:18:49] force = 70 * 0.9457277 = 66.20094 -[04/25/2026 13:18:49] launching puck at (3.53, 2.72) with (-233.41, -180.20) force -[04/25/2026 13:18:59] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:18:59] launching puck at (1.92, 4.62) with (-133.87, -321.71) force -[04/25/2026 13:19:04] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:19:04] launching puck at (2.67, -4.23) with (-185.85, 294.75) force -[04/25/2026 13:19:12] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:19:12] launching puck at (3.09, 3.93) with (-215.18, -274.07) force -[04/25/2026 13:19:17] force = 70 * 0.9190327 = 64.33229 -[04/25/2026 13:19:17] launching puck at (3.11, -2.79) with (-200.05, 179.44) force -[04/25/2026 13:19:23] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:19:23] launching puck at (3.51, 3.57) with (-244.27, -248.50) force -[04/25/2026 13:19:32] force = 70 * 0.8080221 = 56.56155 -[04/25/2026 13:19:32] launching puck at (-2.42, 2.12) with (137.05, -119.65) force -[04/25/2026 13:19:56] force = 70 * 0.9846213 = 68.92349 -[04/25/2026 13:19:56] launching puck at (-2.46, 4.22) with (169.22, -290.57) force -[04/25/2026 13:20:05] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:20:05] launching puck at (-2.98, 4.02) with (207.34, -280.05) force -[04/25/2026 13:20:11] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:20:11] launching puck at (0.09, -5.00) with (-6.48, 348.39) force -[04/25/2026 13:20:23] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:20:23] launching puck at (0.87, -4.92) with (-60.68, 343.13) force -[04/25/2026 13:20:28] force = 70 * 0.9946749 = 69.62724 -[04/25/2026 13:20:28] launching puck at (4.98, -0.23) with (-347.05, 16.34) force -[04/25/2026 13:20:51] force = 70 * 0.8504536 = 59.53175 -[04/25/2026 13:20:51] launching puck at (-3.53, -0.34) with (210.21, 20.09) force -[04/25/2026 13:21:01] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:21:01] launching puck at (-4.90, 1.02) with (341.17, -70.85) force -[04/25/2026 13:21:05] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:21:05] launching puck at (-3.44, -3.63) with (239.74, 252.87) force -[04/25/2026 13:21:25] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:21:25] launching puck at (-1.80, -4.66) with (125.43, 325.09) force -[04/25/2026 13:21:39] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:21:39] launching puck at (-2.96, 4.03) with (206.53, -280.65) force -[04/25/2026 13:21:47] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:21:47] launching puck at (-1.84, 4.65) with (127.89, -324.13) force -[04/25/2026 13:21:51] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:21:51] launching puck at (-2.98, 4.02) with (207.56, -279.89) force -[04/25/2026 13:21:55] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:21:55] launching puck at (0.56, -4.97) with (-38.76, 346.29) force -[04/25/2026 13:22:04] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:22:04] launching puck at (0.35, 4.99) with (-24.11, -347.62) force -[04/25/2026 13:22:10] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:22:10] launching puck at (1.42, 4.79) with (-98.89, -334.13) force -[04/25/2026 13:22:19] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:22:19] launching puck at (-2.46, 4.35) with (171.50, -303.32) force -[04/25/2026 13:22:24] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:22:24] launching puck at (4.69, -1.74) with (-326.73, 121.11) force -[04/25/2026 13:22:34] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:22:34] launching puck at (0.05, 5.00) with (-3.74, -348.43) force -[04/25/2026 13:22:40] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:22:40] launching puck at (-2.09, -4.54) with (145.44, 316.65) force -[04/25/2026 13:23:00] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:23:00] launching puck at (-0.45, -4.98) with (31.04, 347.07) force -[04/25/2026 13:23:07] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:23:07] launching puck at (-1.90, 4.63) with (132.23, -322.39) force -[04/25/2026 13:23:12] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:23:12] launching puck at (3.40, -3.66) with (-237.28, 255.19) force -[04/25/2026 13:23:28] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:23:28] launching puck at (1.64, -4.72) with (-114.54, 329.09) force -[04/25/2026 13:23:33] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:23:33] launching puck at (4.75, 1.55) with (-331.31, -107.94) force -[04/25/2026 13:23:55] force = 70 * 0.6664504 = 46.65153 -[04/25/2026 13:23:55] launching puck at (1.57, 1.75) with (-73.26, -81.80) force -[04/25/2026 13:24:00] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:24:00] launching puck at (1.10, 4.88) with (-76.50, -339.95) force -[04/25/2026 13:24:02] Dedicated match PATCH success: 200 {"ok":true,"id":112} -[04/25/2026 13:24:04] Dedicated match PATCH success: 200 {"ok":true,"id":112,"winner_id":16,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26035.txt b/games/soccar/soccar_Data/26035.txt deleted file mode 100644 index 1b1b20f..0000000 --- a/games/soccar/soccar_Data/26035.txt +++ /dev/null @@ -1,21 +0,0 @@ -[04/21/2026 11:25:00] Configured dedicated match reporting for match id 89 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/21/2026 11:25:00] Starting server at port 26035 -[04/21/2026 11:25:07] Game started On Server -[04/21/2026 11:25:07] Dedicated match PATCH success: 200 {"ok":true,"id":89} -[04/21/2026 11:25:08] Dedicated match PATCH success: 200 {"ok":true,"id":89} -[04/21/2026 11:25:19] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 11:25:19] launching puck at (0.02, -5.00) with (-1.31, 348.45) force -[04/21/2026 11:25:29] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 11:25:29] launching puck at (-0.59, -4.97) with (40.80, 346.06) force -[04/21/2026 11:25:35] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 11:25:35] launching puck at (-1.82, 4.66) with (126.72, -324.59) force -[04/21/2026 11:25:40] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 11:25:40] launching puck at (-4.82, -1.33) with (335.90, 92.69) force -[04/21/2026 11:25:45] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 11:25:45] launching puck at (0.26, 4.99) with (-18.13, -347.98) force -[04/21/2026 11:25:51] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 11:25:51] launching puck at (-0.35, -4.99) with (24.60, 347.58) force -[04/21/2026 11:25:56] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 11:25:56] launching puck at (-0.80, 4.94) with (55.64, -343.98) force -[04/21/2026 11:26:18] force = 70 * 0.6808581 = 47.66006 -[04/21/2026 11:26:18] launching puck at (-2.08, -1.25) with (99.23, 59.61) force diff --git a/games/soccar/soccar_Data/26039.txt b/games/soccar/soccar_Data/26039.txt deleted file mode 100644 index 70f4acb..0000000 --- a/games/soccar/soccar_Data/26039.txt +++ /dev/null @@ -1,119 +0,0 @@ -[04/26/2026 05:45:30] Configured dedicated match reporting for match id 113 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 05:45:30] Starting server at port 26039 -[04/26/2026 05:45:36] Dedicated match PATCH success: 200 {"ok":true,"id":113} -[04/26/2026 05:45:37] Game started On Server -[04/26/2026 05:45:37] Dedicated match PATCH success: 200 {"ok":true,"id":113} -[04/26/2026 05:45:44] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:45:44] launching puck at (0.03, -5.00) with (-1.96, 348.45) force -[04/26/2026 05:45:53] force = 70 * 0.6545132 = 45.81593 -[04/26/2026 05:45:53] launching puck at (0.78, 2.16) with (-35.93, -98.75) force -[04/26/2026 05:46:02] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:46:02] launching puck at (-4.99, -0.32) with (347.76, 22.02) force -[04/26/2026 05:46:14] force = 70 * 0.6348612 = 44.44028 -[04/26/2026 05:46:14] launching puck at (1.17, 1.86) with (-51.83, -82.77) force -[04/26/2026 05:46:24] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:46:24] launching puck at (1.05, -4.89) with (-73.52, 340.61) force -[04/26/2026 05:46:31] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:46:31] launching puck at (-0.99, 4.90) with (68.86, -341.58) force -[04/26/2026 05:46:40] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:46:40] launching puck at (-4.87, 1.13) with (339.46, -78.66) force -[04/26/2026 05:46:52] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:46:52] launching puck at (-0.05, 5.00) with (3.58, -348.43) force -[04/26/2026 05:46:57] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:46:57] launching puck at (3.99, -3.02) with (-277.79, 210.36) force -[04/26/2026 05:47:04] force = 70 * 0.8091013 = 56.63709 -[04/26/2026 05:47:04] launching puck at (3.17, 0.60) with (-179.41, -34.10) force -[04/26/2026 05:47:09] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:47:09] launching puck at (0.01, -5.00) with (-0.66, 348.45) force -[04/26/2026 05:47:16] force = 70 * 0.9786454 = 68.50518 -[04/26/2026 05:47:16] launching puck at (-1.79, 4.47) with (122.43, -306.11) force -[04/26/2026 05:47:22] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:47:22] launching puck at (-0.76, 4.94) with (52.81, -344.43) force -[04/26/2026 05:47:29] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:47:29] launching puck at (4.04, 2.95) with (-281.24, -205.72) force -[04/26/2026 05:47:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:47:36] launching puck at (0.62, -4.96) with (-43.51, 345.73) force -[04/26/2026 05:47:44] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:47:44] launching puck at (-0.03, 5.00) with (1.98, -348.45) force -[04/26/2026 05:47:51] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:47:51] launching puck at (2.66, 4.23) with (-185.70, -294.85) force -[04/26/2026 05:48:00] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:48:00] launching puck at (1.50, 4.77) with (-104.77, -332.33) force -[04/26/2026 05:48:07] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:48:07] launching puck at (-0.23, -4.99) with (16.29, 348.07) force -[04/26/2026 05:48:14] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:48:14] launching puck at (-4.99, -0.25) with (348.01, 17.56) force -[04/26/2026 05:48:21] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:48:21] launching puck at (-0.12, -5.00) with (8.02, 348.36) force -[04/26/2026 05:48:29] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:48:29] launching puck at (2.90, 4.07) with (-202.38, -283.65) force -[04/26/2026 05:48:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:48:36] launching puck at (1.65, -4.72) with (-115.01, 328.93) force -[04/26/2026 05:48:43] force = 70 * 0.8941679 = 62.59175 -[04/26/2026 05:48:43] launching puck at (3.89, -0.58) with (-243.54, 36.53) force -[04/26/2026 05:48:48] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:48:48] launching puck at (0.06, -5.00) with (-4.16, 348.43) force -[04/26/2026 05:48:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:48:55] launching puck at (1.51, 4.77) with (-105.45, -332.11) force -[04/26/2026 05:49:01] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:49:01] launching puck at (-0.50, 4.98) with (34.80, -346.71) force -[04/26/2026 05:49:07] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:49:07] launching puck at (4.01, 2.99) with (-279.49, -208.10) force -[04/26/2026 05:49:12] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:49:12] launching puck at (0.81, 4.93) with (-56.72, -343.81) force -[04/26/2026 05:49:19] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:49:19] launching puck at (4.99, -0.23) with (-348.08, 16.14) force -[04/26/2026 05:49:24] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:49:24] launching puck at (-1.46, -4.78) with (101.71, 333.28) force -[04/26/2026 05:49:31] force = 70 * 0.8378989 = 58.65292 -[04/26/2026 05:49:31] launching puck at (2.41, -2.46) with (-141.39, 144.34) force -[04/26/2026 05:49:39] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:49:39] launching puck at (0.09, 5.00) with (-6.16, -348.40) force -[04/26/2026 05:49:45] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:49:45] launching puck at (2.55, 4.30) with (-177.44, -299.89) force -[04/26/2026 05:49:52] force = 70 * 0.9798716 = 68.59101 -[04/26/2026 05:49:52] launching puck at (4.79, -0.59) with (-328.58, 40.23) force -[04/26/2026 05:49:56] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:49:56] launching puck at (3.36, -3.71) with (-233.87, 258.31) force -[04/26/2026 05:50:01] force = 70 * 0.9239004 = 64.67303 -[04/26/2026 05:50:01] launching puck at (1.15, 4.07) with (-74.51, -262.99) force -[04/26/2026 05:50:05] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:50:05] launching puck at (3.50, 3.57) with (-243.89, -248.87) force -[04/26/2026 05:50:12] force = 70 * 0.9423529 = 65.9647 -[04/26/2026 05:50:12] launching puck at (-1.06, 4.29) with (69.60, -283.03) force -[04/26/2026 05:50:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:50:27] launching puck at (4.96, -0.66) with (-345.36, 46.34) force -[04/26/2026 05:50:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:50:36] launching puck at (-1.80, 4.67) with (125.12, -325.22) force -[04/26/2026 05:50:44] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:50:44] launching puck at (-1.23, 4.85) with (85.58, -337.78) force -[04/26/2026 05:50:52] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:50:52] launching puck at (-4.01, 2.99) with (279.48, -208.11) force -[04/26/2026 05:50:58] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:50:58] launching puck at (-4.33, -2.51) with (301.50, 174.69) force -[04/26/2026 05:51:05] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:51:05] launching puck at (-4.33, 2.49) with (302.08, -173.69) force -[04/26/2026 05:51:11] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:51:11] launching puck at (4.98, 0.41) with (-347.31, -28.25) force -[04/26/2026 05:51:17] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:51:17] launching puck at (2.70, 4.21) with (-188.08, -293.33) force -[04/26/2026 05:51:22] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:51:22] launching puck at (4.26, -2.62) with (-296.60, 182.89) force -[04/26/2026 05:51:27] force = 70 * 0.9709647 = 67.96753 -[04/26/2026 05:51:27] launching puck at (2.84, 3.78) with (-193.36, -256.67) force -[04/26/2026 05:51:32] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:51:32] launching puck at (-2.37, -4.40) with (165.44, 306.67) force -[04/26/2026 05:51:38] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:51:38] launching puck at (-1.92, 4.62) with (133.63, -321.81) force -[04/26/2026 05:51:42] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:51:42] launching puck at (-0.57, -4.97) with (39.64, 346.19) force -[04/26/2026 05:51:48] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:51:48] launching puck at (-2.35, 4.41) with (164.06, -307.41) force -[04/26/2026 05:51:54] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:51:54] launching puck at (2.49, 4.34) with (-173.36, -302.27) force -[04/26/2026 05:52:02] force = 70 * 0.9906207 = 69.34345 -[04/26/2026 05:52:02] launching puck at (-4.91, -0.61) with (340.29, 42.35) force -[04/26/2026 05:52:08] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 05:52:08] launching puck at (2.35, -4.41) with (-163.62, 307.65) force -[04/26/2026 05:52:08] Dedicated match PATCH success: 200 {"ok":true,"id":113} -[04/26/2026 05:52:10] Dedicated match PATCH success: 200 {"ok":true,"id":113,"winner_id":5,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26046.txt b/games/soccar/soccar_Data/26046.txt deleted file mode 100644 index 0875db0..0000000 --- a/games/soccar/soccar_Data/26046.txt +++ /dev/null @@ -1,65 +0,0 @@ -[04/26/2026 06:18:17] Configured dedicated match reporting for match id 143 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:18:17] Starting server at port 26046 -[04/26/2026 06:18:41] Dedicated match PATCH success: 200 {"ok":true,"id":143} -[04/26/2026 06:18:41] Game started On Server -[04/26/2026 06:18:42] Dedicated match PATCH success: 200 {"ok":true,"id":143} -[04/26/2026 06:18:45] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:18:45] launching puck at (0.09, -5.00) with (-6.03, 348.40) force -[04/26/2026 06:18:52] force = 70 * 0.9767027 = 68.36919 -[04/26/2026 06:18:52] launching puck at (3.78, -2.95) with (-258.13, 201.67) force -[04/26/2026 06:18:57] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:18:57] launching puck at (-0.06, -5.00) with (4.27, 348.43) force -[04/26/2026 06:19:04] force = 70 * 0.9353156 = 65.47209 -[04/26/2026 06:19:04] launching puck at (2.39, 3.62) with (-156.79, -237.32) force -[04/26/2026 06:19:10] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:10] launching puck at (0.93, -4.91) with (-65.01, 342.34) force -[04/26/2026 06:19:16] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:16] launching puck at (-3.54, -3.53) with (247.01, 245.78) force -[04/26/2026 06:19:22] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:22] launching puck at (-0.62, -4.96) with (43.10, 345.78) force -[04/26/2026 06:19:28] force = 70 * 0.8812957 = 61.6907 -[04/26/2026 06:19:28] launching puck at (-3.81, 0.15) with (235.19, -9.07) force -[04/26/2026 06:19:33] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:33] launching puck at (0.46, -4.98) with (-31.94, 346.99) force -[04/26/2026 06:19:39] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:39] launching puck at (-0.03, 5.00) with (1.86, -348.45) force -[04/26/2026 06:19:46] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:46] launching puck at (4.19, 2.72) with (-292.29, -189.70) force -[04/26/2026 06:19:51] force = 70 * 0.9732641 = 68.12849 -[04/26/2026 06:19:51] launching puck at (-0.80, 4.69) with (54.69, -319.18) force -[04/26/2026 06:19:58] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:58] launching puck at (3.95, -3.06) with (-275.31, 213.60) force -[04/26/2026 06:20:04] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:04] launching puck at (1.39, 4.80) with (-97.09, -334.65) force -[04/26/2026 06:20:10] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:10] launching puck at (0.65, -4.96) with (-45.16, 345.51) force -[04/26/2026 06:20:17] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:17] launching puck at (1.00, 4.90) with (-69.84, -341.38) force -[04/26/2026 06:20:23] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:23] launching puck at (-2.65, -4.24) with (184.66, 295.50) force -[04/26/2026 06:20:31] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:31] launching puck at (-5.00, 0.22) with (348.11, -15.47) force -[04/26/2026 06:20:37] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:37] launching puck at (-1.47, -4.78) with (102.14, 333.15) force -[04/26/2026 06:20:45] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:45] launching puck at (-1.66, -4.72) with (115.95, 328.59) force -[04/26/2026 06:20:50] force = 70 * 0.9905301 = 69.33711 -[04/26/2026 06:20:50] launching puck at (1.94, 4.55) with (-134.55, -315.30) force -[04/26/2026 06:20:58] force = 70 * 0.7478985 = 52.35289 -[04/26/2026 06:20:58] launching puck at (-2.64, 0.96) with (138.28, -50.51) force -[04/26/2026 06:21:04] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:21:04] launching puck at (-4.67, -1.80) with (325.13, 125.34) force -[04/26/2026 06:21:09] force = 70 * 0.9435453 = 66.04817 -[04/26/2026 06:21:09] launching puck at (-3.16, 3.11) with (208.48, -205.40) force -[04/26/2026 06:21:15] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:21:15] launching puck at (-2.91, -4.07) with (202.68, 283.45) force -[04/26/2026 06:21:21] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:21:21] launching puck at (0.41, 4.98) with (-28.58, -347.28) force -[04/26/2026 06:21:28] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:21:28] launching puck at (-0.05, -5.00) with (3.76, 348.43) force -[04/26/2026 06:21:35] force = 70 * 0.9791098 = 68.53768 -[04/26/2026 06:21:35] launching puck at (-1.32, 4.63) with (90.56, -317.54) force -[04/26/2026 06:21:40] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:21:40] launching puck at (0.14, -5.00) with (-10.07, 348.31) force -[04/26/2026 06:21:43] Dedicated match PATCH success: 200 {"ok":true,"id":143} -[04/26/2026 06:21:45] Dedicated match PATCH success: 200 {"ok":true,"id":143,"winner_id":26,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26069.txt b/games/soccar/soccar_Data/26069.txt deleted file mode 100644 index 8a99d08..0000000 --- a/games/soccar/soccar_Data/26069.txt +++ /dev/null @@ -1,87 +0,0 @@ -[04/26/2026 06:07:24] Configured dedicated match reporting for match id 127 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:07:24] Starting server at port 26069 -[04/26/2026 06:07:29] Game started On Server -[04/26/2026 06:07:29] Dedicated match PATCH success: 200 {"ok":true,"id":127} -[04/26/2026 06:07:29] Dedicated match PATCH success: 200 {"ok":true,"id":127} -[04/26/2026 06:07:34] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:34] launching puck at (0.84, -4.93) with (-58.42, 343.52) force -[04/26/2026 06:07:42] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:42] launching puck at (-1.72, 4.70) with (119.59, -327.29) force -[04/26/2026 06:07:59] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:59] launching puck at (-1.14, -4.87) with (79.32, 339.31) force -[04/26/2026 06:08:04] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:04] launching puck at (-5.00, 0.21) with (348.14, -14.69) force -[04/26/2026 06:08:09] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:09] launching puck at (-0.37, -4.99) with (25.91, 347.49) force -[04/26/2026 06:08:15] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:15] launching puck at (-0.12, 5.00) with (8.41, -348.35) force -[04/26/2026 06:08:25] force = 70 * 0.6923368 = 48.46358 -[04/26/2026 06:08:25] launching puck at (0.80, -2.36) with (-38.62, 114.34) force -[04/26/2026 06:08:31] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:31] launching puck at (-4.12, 2.83) with (287.28, -197.21) force -[04/26/2026 06:08:39] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:39] launching puck at (-4.91, -0.92) with (342.47, 64.29) force -[04/26/2026 06:08:44] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:44] launching puck at (-4.99, 0.32) with (347.74, -22.24) force -[04/26/2026 06:08:48] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:48] launching puck at (3.94, -3.08) with (-274.42, 214.74) force -[04/26/2026 06:08:56] force = 70 * 0.7953998 = 55.67799 -[04/26/2026 06:08:56] launching puck at (1.48, -2.75) with (-82.34, 153.33) force -[04/26/2026 06:09:11] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:09:11] launching puck at (2.22, -4.48) with (-154.59, 312.29) force -[04/26/2026 06:09:16] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:09:16] launching puck at (4.70, 1.71) with (-327.34, -119.45) force -[04/26/2026 06:09:23] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:09:23] launching puck at (-2.77, 4.16) with (192.94, -290.16) force -[04/26/2026 06:09:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:09:27] launching puck at (3.25, 3.80) with (-226.57, -264.74) force -[04/26/2026 06:09:43] force = 70 * 0.8804879 = 61.63416 -[04/26/2026 06:09:43] launching puck at (-0.94, -3.69) with (58.10, 227.39) force -[04/26/2026 06:09:48] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:09:48] launching puck at (4.98, -0.43) with (-347.18, 29.77) force -[04/26/2026 06:09:57] force = 70 * 0.6957904 = 48.70533 -[04/26/2026 06:09:57] launching puck at (-1.57, 1.96) with (76.27, -95.47) force -[04/26/2026 06:10:04] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:10:04] launching puck at (0.54, 4.97) with (-37.66, -346.41) force -[04/26/2026 06:10:12] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:10:12] launching puck at (-1.42, -4.80) with (98.66, 334.19) force -[04/26/2026 06:10:16] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:10:16] launching puck at (2.39, 4.39) with (-166.21, -306.26) force -[04/26/2026 06:10:21] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:10:21] launching puck at (4.68, -1.76) with (-326.16, 122.63) force -[04/26/2026 06:10:26] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:10:26] launching puck at (2.83, 4.12) with (-197.52, -287.06) force -[04/26/2026 06:10:35] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:10:35] launching puck at (4.44, -2.30) with (-309.53, 160.02) force -[04/26/2026 06:10:41] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:10:41] launching puck at (3.21, 3.83) with (-223.92, -266.98) force -[04/26/2026 06:10:49] force = 70 * 0.9600915 = 67.20641 -[04/26/2026 06:10:49] launching puck at (4.29, -1.69) with (-288.26, 113.37) force -[04/26/2026 06:10:57] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:10:57] launching puck at (2.91, 4.07) with (-202.68, -283.44) force -[04/26/2026 06:11:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:03] launching puck at (3.83, -3.22) with (-266.79, 224.15) force -[04/26/2026 06:11:08] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:08] launching puck at (2.11, 4.53) with (-146.89, -315.98) force -[04/26/2026 06:11:24] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:24] launching puck at (-1.45, 4.79) with (100.86, -333.54) force -[04/26/2026 06:11:30] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:30] launching puck at (-1.50, -4.77) with (104.86, 332.30) force -[04/26/2026 06:11:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:36] launching puck at (-0.17, -5.00) with (12.03, 348.25) force -[04/26/2026 06:11:39] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:39] launching puck at (-3.58, -3.49) with (249.74, 243.00) force -[04/26/2026 06:11:45] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:45] launching puck at (0.78, -4.94) with (-54.25, 344.20) force -[04/26/2026 06:11:54] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:54] launching puck at (-0.04, 5.00) with (2.85, -348.44) force -[04/26/2026 06:12:05] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:12:05] launching puck at (-2.36, -4.41) with (164.76, 307.04) force -[04/26/2026 06:12:12] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:12:12] launching puck at (0.69, 4.95) with (-48.09, -345.12) force -[04/26/2026 06:12:20] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:12:20] launching puck at (-2.50, -4.33) with (174.40, 301.67) force -[04/26/2026 06:12:24] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:12:24] launching puck at (-4.58, 2.00) with (319.40, -139.29) force -[04/26/2026 06:12:25] Dedicated match PATCH success: 200 {"ok":true,"id":127} -[04/26/2026 06:12:27] Dedicated match PATCH success: 200 {"ok":true,"id":127,"winner_id":9,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26078.txt b/games/soccar/soccar_Data/26078.txt deleted file mode 100644 index a0106c4..0000000 --- a/games/soccar/soccar_Data/26078.txt +++ /dev/null @@ -1,83 +0,0 @@ -[04/26/2026 06:16:56] Configured dedicated match reporting for match id 141 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:16:56] Starting server at port 26078 -[04/26/2026 06:17:04] Game started On Server -[04/26/2026 06:17:06] Dedicated match PATCH success: 200 {"ok":true,"id":141} -[04/26/2026 06:17:06] Dedicated match PATCH success: 200 {"ok":true,"id":141} -[04/26/2026 06:17:09] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:09] launching puck at (0.18, -5.00) with (-12.46, 348.23) force -[04/26/2026 06:17:14] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:14] launching puck at (-2.93, 4.05) with (203.96, -282.52) force -[04/26/2026 06:17:21] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:21] launching puck at (-4.47, -2.24) with (311.63, 155.91) force -[04/26/2026 06:17:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:27] launching puck at (4.24, 2.65) with (-295.68, -184.37) force -[04/26/2026 06:17:34] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:34] launching puck at (0.12, -5.00) with (-8.28, 348.35) force -[04/26/2026 06:17:41] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:41] launching puck at (2.60, 4.27) with (-181.07, -297.72) force -[04/26/2026 06:17:47] force = 70 * 0.89343 = 62.5401 -[04/26/2026 06:17:47] launching puck at (3.57, -1.63) with (-223.36, 102.19) force -[04/26/2026 06:17:52] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:52] launching puck at (2.08, 4.55) with (-144.80, -316.94) force -[04/26/2026 06:17:59] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:59] launching puck at (2.72, -4.20) with (-189.27, 292.57) force -[04/26/2026 06:18:04] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:18:04] launching puck at (0.76, 4.94) with (-53.07, -344.39) force -[04/26/2026 06:18:11] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:18:11] launching puck at (2.65, 4.24) with (-184.37, -295.68) force -[04/26/2026 06:18:16] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:18:16] launching puck at (4.81, 1.37) with (-335.16, -95.31) force -[04/26/2026 06:18:24] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:18:24] launching puck at (-1.93, 4.61) with (134.30, -321.53) force -[04/26/2026 06:18:32] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:18:32] launching puck at (1.09, 4.88) with (-75.76, -340.12) force -[04/26/2026 06:18:39] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:18:39] launching puck at (0.20, -5.00) with (-14.05, 348.17) force -[04/26/2026 06:18:45] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:18:45] launching puck at (-1.94, 4.61) with (135.37, -321.08) force -[04/26/2026 06:18:50] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:18:50] launching puck at (2.59, -4.28) with (-180.18, 298.25) force -[04/26/2026 06:18:56] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:18:56] launching puck at (4.48, 2.23) with (-311.94, -155.27) force -[04/26/2026 06:19:01] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:01] launching puck at (3.73, -3.33) with (-260.16, 231.81) force -[04/26/2026 06:19:07] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:07] launching puck at (-3.35, 3.72) with (233.21, -258.90) force -[04/26/2026 06:19:14] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:14] launching puck at (-3.62, -3.44) with (252.60, 240.03) force -[04/26/2026 06:19:20] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:20] launching puck at (-0.18, 5.00) with (12.23, -348.24) force -[04/26/2026 06:19:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:27] launching puck at (2.15, -4.51) with (-149.94, 314.54) force -[04/26/2026 06:19:32] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:32] launching puck at (-2.69, -4.22) with (187.34, 293.81) force -[04/26/2026 06:19:39] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:39] launching puck at (-1.44, 4.79) with (100.63, -333.61) force -[04/26/2026 06:19:45] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:45] launching puck at (-2.48, 4.34) with (172.54, -302.74) force -[04/26/2026 06:19:49] force = 70 * 0.8630729 = 60.4151 -[04/26/2026 06:19:49] launching puck at (0.71, 3.58) with (-42.77, -216.56) force -[04/26/2026 06:19:54] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:54] launching puck at (1.66, 4.72) with (-115.92, -328.60) force -[04/26/2026 06:19:59] force = 70 * 0.734118 = 51.38826 -[04/26/2026 06:19:59] launching puck at (-2.72, -0.19) with (139.84, 9.92) force -[04/26/2026 06:20:05] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:05] launching puck at (-0.73, 4.95) with (50.54, -344.77) force -[04/26/2026 06:20:11] force = 70 * 0.5513824 = 38.59676 -[04/26/2026 06:20:11] launching puck at (-1.79, 0.17) with (69.18, -6.72) force -[04/26/2026 06:20:16] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:16] launching puck at (-3.66, 3.40) with (255.39, -237.05) force -[04/26/2026 06:20:21] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:21] launching puck at (0.26, -4.99) with (-17.90, 347.99) force -[04/26/2026 06:20:30] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:30] launching puck at (4.21, 2.70) with (-293.50, -187.82) force -[04/26/2026 06:20:37] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:37] launching puck at (4.98, -0.49) with (-346.78, 34.13) force -[04/26/2026 06:20:43] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:43] launching puck at (-1.19, 4.86) with (83.08, -338.40) force -[04/26/2026 06:20:50] force = 70 * 0.8272693 = 57.90885 -[04/26/2026 06:20:50] launching puck at (3.35, -0.25) with (-194.12, 14.31) force -[04/26/2026 06:20:54] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:54] launching puck at (-0.03, 5.00) with (2.20, -348.45) force -[04/26/2026 06:20:54] Dedicated match PATCH success: 200 {"ok":true,"id":141} -[04/26/2026 06:20:56] Dedicated match PATCH success: 200 {"ok":true,"id":141,"winner_id":18,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26080.txt b/games/soccar/soccar_Data/26080.txt deleted file mode 100644 index 8e5ae33..0000000 --- a/games/soccar/soccar_Data/26080.txt +++ /dev/null @@ -1,2 +0,0 @@ -[04/24/2026 19:53:43] Configured dedicated match reporting for match id 95 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/24/2026 19:53:43] Starting server at port 26080 diff --git a/games/soccar/soccar_Data/26086.txt b/games/soccar/soccar_Data/26086.txt deleted file mode 100644 index 0685e83..0000000 --- a/games/soccar/soccar_Data/26086.txt +++ /dev/null @@ -1,101 +0,0 @@ -[04/25/2026 12:45:51] Configured dedicated match reporting for match id 108 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/25/2026 12:45:51] Starting server at port 26086 -[04/25/2026 12:45:54] Dedicated match PATCH success: 200 {"ok":true,"id":108} -[04/25/2026 12:45:55] Game started On Server -[04/25/2026 12:45:55] Dedicated match PATCH success: 200 {"ok":true,"id":108} -[04/25/2026 12:45:59] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:45:59] launching puck at (0.06, -5.00) with (-4.12, 348.43) force -[04/25/2026 12:46:08] force = 70 * 0.4186958 = 29.30871 -[04/25/2026 12:46:08] launching puck at (-1.26, -0.20) with (36.89, 5.89) force -[04/25/2026 12:46:12] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:46:12] launching puck at (-1.06, -4.89) with (73.85, 340.54) force -[04/25/2026 12:46:17] force = 70 * 0.546055 = 38.22385 -[04/25/2026 12:46:17] launching puck at (-1.27, -1.24) with (48.60, 47.28) force -[04/25/2026 12:46:21] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:46:21] launching puck at (-4.97, 0.55) with (346.32, -38.52) force -[04/25/2026 12:46:28] force = 70 * 0.596096 = 41.72672 -[04/25/2026 12:46:28] launching puck at (-1.47, -1.38) with (61.46, 57.58) force -[04/25/2026 12:46:32] force = 70 * 0.7996614 = 55.9763 -[04/25/2026 12:46:32] launching puck at (-3.06, -0.76) with (171.44, 42.67) force -[04/25/2026 12:46:35] force = 70 * 0.7276973 = 50.93881 -[04/25/2026 12:46:35] launching puck at (-1.11, -2.45) with (56.52, 124.82) force -[04/25/2026 12:46:39] force = 70 * 0.1596335 = 11.17435 -[04/25/2026 12:46:39] launching puck at (-0.59, -0.54) with (6.65, 6.06) force -[04/25/2026 12:46:43] force = 70 * 0.3218338 = 22.52836 -[04/25/2026 12:46:43] launching puck at (-1.05, -0.04) with (23.73, 0.93) force -[04/25/2026 12:46:47] force = 70 * 0.2994434 = 20.96104 -[04/25/2026 12:46:47] launching puck at (-0.85, -0.55) with (17.90, 11.44) force -[04/25/2026 12:46:55] force = 70 * 0.4707267 = 32.95087 -[04/25/2026 12:46:55] launching puck at (-1.43, -0.14) with (47.18, 4.75) force -[04/25/2026 12:46:59] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:46:59] launching puck at (-4.77, -1.49) with (332.73, 103.49) force -[04/25/2026 12:47:03] force = 70 * 0.5806967 = 40.64877 -[04/25/2026 12:47:03] launching puck at (-1.94, -0.21) with (78.69, 8.43) force -[04/25/2026 12:47:07] force = 70 * 0.6876175 = 48.13323 -[04/25/2026 12:47:07] launching puck at (2.25, -1.01) with (-108.22, 48.61) force -[04/25/2026 12:47:14] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:47:14] launching puck at (-0.03, 5.00) with (2.24, -348.45) force -[04/25/2026 12:47:22] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:47:22] launching puck at (3.55, 3.52) with (-247.39, -245.39) force -[04/25/2026 12:47:30] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:47:30] launching puck at (0.17, 5.00) with (-11.82, -348.25) force -[04/25/2026 12:47:38] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:47:38] launching puck at (-1.71, -4.70) with (119.08, 327.47) force -[04/25/2026 12:47:44] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:47:44] launching puck at (-3.23, 3.81) with (225.31, -265.81) force -[04/25/2026 12:47:50] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:47:50] launching puck at (3.57, -3.50) with (-248.67, 244.09) force -[04/25/2026 12:47:56] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:47:56] launching puck at (1.77, 4.68) with (-123.23, -325.94) force -[04/25/2026 12:48:03] force = 70 * 0.7237919 = 50.66543 -[04/25/2026 12:48:03] launching puck at (-2.37, -1.22) with (120.15, 61.82) force -[04/25/2026 12:48:21] force = 70 * 0.8677719 = 60.74403 -[04/25/2026 12:48:21] launching puck at (3.40, 1.46) with (-206.24, -88.50) force -[04/25/2026 12:48:26] force = 70 * 0.7009659 = 49.06762 -[04/25/2026 12:48:26] launching puck at (-2.52, -0.30) with (123.60, 14.94) force -[04/25/2026 12:48:43] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:48:43] launching puck at (-0.05, 5.00) with (3.32, -348.44) force -[04/25/2026 12:48:52] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:48:52] launching puck at (1.26, -4.84) with (-87.66, 337.25) force -[04/25/2026 12:48:59] force = 70 * 0.9805684 = 68.63979 -[04/25/2026 12:48:59] launching puck at (-4.79, -0.64) with (328.88, 43.90) force -[04/25/2026 12:49:14] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:49:14] launching puck at (1.52, -4.76) with (-105.83, 331.99) force -[04/25/2026 12:49:23] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:49:23] launching puck at (2.53, -4.31) with (-176.06, 300.71) force -[04/25/2026 12:49:29] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:49:29] launching puck at (-0.02, -5.00) with (1.73, 348.45) force -[04/25/2026 12:49:35] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:49:35] launching puck at (-0.05, 5.00) with (3.60, -348.43) force -[04/25/2026 12:49:47] force = 70 * 0.9477842 = 66.34489 -[04/25/2026 12:49:47] launching puck at (3.99, -2.04) with (-264.40, 135.23) force -[04/25/2026 12:49:52] force = 70 * 0.9162921 = 64.14044 -[04/25/2026 12:49:52] launching puck at (-2.72, 3.13) with (174.71, -200.80) force -[04/25/2026 12:49:57] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:49:57] launching puck at (0.07, -5.00) with (-5.17, 348.41) force -[04/25/2026 12:50:06] force = 70 * 0.7006725 = 49.04708 -[04/25/2026 12:50:06] launching puck at (0.29, -2.52) with (-14.18, 123.56) force -[04/25/2026 12:50:13] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:50:13] launching puck at (-4.65, -1.83) with (324.21, 127.71) force -[04/25/2026 12:50:22] force = 70 * 0.6924076 = 48.46853 -[04/25/2026 12:50:22] launching puck at (-2.26, -1.06) with (109.32, 51.20) force -[04/25/2026 12:50:28] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:50:28] launching puck at (0.41, -4.98) with (-28.87, 347.25) force -[04/25/2026 12:50:34] force = 70 * 0.4887519 = 34.21264 -[04/25/2026 12:50:34] launching puck at (1.45, 0.40) with (-49.71, -13.85) force -[04/25/2026 12:50:39] force = 70 * 0.9020225 = 63.14157 -[04/25/2026 12:50:39] launching puck at (3.79, 1.31) with (-239.21, -82.90) force -[04/25/2026 12:50:43] force = 70 * 0.5040855 = 35.28599 -[04/25/2026 12:50:43] launching puck at (1.56, -0.22) with (-54.94, 7.85) force -[04/25/2026 12:50:47] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:50:47] launching puck at (4.93, -0.85) with (-343.34, 59.45) force -[04/25/2026 12:50:53] force = 70 * 0.491765 = 34.42355 -[04/25/2026 12:50:53] launching puck at (1.49, 0.29) with (-51.35, -10.15) force -[04/25/2026 12:50:55] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:50:55] launching puck at (-0.14, -5.00) with (9.68, 348.32) force -[04/25/2026 12:51:03] force = 70 * 0.6563797 = 45.94658 -[04/25/2026 12:51:03] launching puck at (2.01, -1.12) with (-92.53, 51.32) force -[04/25/2026 12:51:08] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:51:08] launching puck at (-2.01, -4.58) with (140.36, 318.93) force -[04/25/2026 12:51:10] Dedicated match PATCH success: 200 {"ok":true,"id":108} -[04/25/2026 12:51:12] Dedicated match PATCH success: 200 {"ok":true,"id":108,"winner_id":15,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26088.txt b/games/soccar/soccar_Data/26088.txt deleted file mode 100644 index 2995035..0000000 --- a/games/soccar/soccar_Data/26088.txt +++ /dev/null @@ -1,79 +0,0 @@ -[04/26/2026 06:08:28] Configured dedicated match reporting for match id 129 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:08:28] Starting server at port 26088 -[04/26/2026 06:08:35] Game started On Server -[04/26/2026 06:08:36] Dedicated match PATCH success: 200 {"ok":true,"id":129} -[04/26/2026 06:08:36] Dedicated match PATCH success: 200 {"ok":true,"id":129} -[04/26/2026 06:08:39] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:39] launching puck at (0.69, -4.95) with (-48.41, 345.07) force -[04/26/2026 06:08:50] force = 70 * 0.7993208 = 55.95246 -[04/26/2026 06:08:50] launching puck at (3.03, 0.86) with (-169.79, -48.06) force -[04/26/2026 06:08:56] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:56] launching puck at (-2.27, -4.46) with (158.19, 310.48) force -[04/26/2026 06:09:03] force = 70 * 0.9228539 = 64.59978 -[04/26/2026 06:09:03] launching puck at (2.35, -3.50) with (-151.98, 226.00) force -[04/26/2026 06:09:11] force = 70 * 0.9485494 = 66.39846 -[04/26/2026 06:09:11] launching puck at (-4.36, 1.06) with (289.26, -70.62) force -[04/26/2026 06:09:17] force = 70 * 0.786005 = 55.02035 -[04/26/2026 06:09:17] launching puck at (2.72, -1.39) with (-149.93, 76.66) force -[04/26/2026 06:09:22] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:09:22] launching puck at (-2.50, -4.33) with (174.33, 301.71) force -[04/26/2026 06:09:29] force = 70 * 0.978259 = 68.47813 -[04/26/2026 06:09:29] launching puck at (4.79, 0.45) with (-327.84, -30.68) force -[04/26/2026 06:09:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:09:36] launching puck at (-3.37, -3.70) with (234.71, 257.55) force -[04/26/2026 06:09:45] force = 70 * 0.7082196 = 49.57537 -[04/26/2026 06:09:45] launching puck at (2.58, -0.09) with (-127.72, 4.47) force -[04/26/2026 06:09:51] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:09:51] launching puck at (-1.88, -4.63) with (130.89, 322.94) force -[04/26/2026 06:09:57] force = 70 * 0.890466 = 62.33262 -[04/26/2026 06:09:57] launching puck at (3.66, -1.35) with (-228.16, 83.86) force -[04/26/2026 06:10:04] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:10:04] launching puck at (-3.89, 3.14) with (271.32, -218.64) force -[04/26/2026 06:10:10] force = 70 * 0.4899568 = 34.29697 -[04/26/2026 06:10:10] launching puck at (-1.36, -0.66) with (46.66, 22.71) force -[04/26/2026 06:10:17] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:10:17] launching puck at (1.77, -4.68) with (-123.32, 325.90) force -[04/26/2026 06:10:23] force = 70 * 0.7779202 = 54.45442 -[04/26/2026 06:10:23] launching puck at (1.89, -2.33) with (-103.14, 127.08) force -[04/26/2026 06:10:27] force = 70 * 0.9664884 = 67.65418 -[04/26/2026 06:10:27] launching puck at (1.12, 4.54) with (-75.90, -307.31) force -[04/26/2026 06:10:36] force = 70 * 0.7268938 = 50.88257 -[04/26/2026 06:10:36] launching puck at (1.89, -1.91) with (-96.19, 97.03) force -[04/26/2026 06:10:42] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:10:42] launching puck at (-0.08, -5.00) with (5.84, 348.40) force -[04/26/2026 06:11:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:03] launching puck at (0.04, -5.00) with (-2.75, 348.44) force -[04/26/2026 06:11:15] force = 70 * 0.2653853 = 18.57697 -[04/26/2026 06:11:15] launching puck at (0.94, 0.15) with (-17.53, -2.85) force -[04/26/2026 06:11:22] force = 70 * 0.9561703 = 66.93192 -[04/26/2026 06:11:22] launching puck at (-2.20, -4.00) with (147.25, 267.83) force -[04/26/2026 06:11:30] force = 70 * 0.5899462 = 41.29623 -[04/26/2026 06:11:30] launching puck at (-0.01, -1.99) with (0.31, 82.20) force -[04/26/2026 06:11:37] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:37] launching puck at (-0.08, -5.00) with (5.30, 348.41) force -[04/26/2026 06:11:44] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:44] launching puck at (-1.09, -4.88) with (76.19, 340.02) force -[04/26/2026 06:11:51] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:51] launching puck at (1.24, -4.84) with (-86.33, 337.59) force -[04/26/2026 06:11:57] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:57] launching puck at (-0.80, -4.94) with (55.96, 343.93) force -[04/26/2026 06:12:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:12:03] launching puck at (2.27, -4.45) with (-158.35, 310.39) force -[04/26/2026 06:12:20] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:12:20] launching puck at (-3.92, -3.11) with (272.85, 216.73) force -[04/26/2026 06:12:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:12:27] launching puck at (0.29, -4.99) with (-20.02, 347.88) force -[04/26/2026 06:12:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:12:36] launching puck at (1.19, -4.86) with (-82.82, 338.47) force -[04/26/2026 06:12:42] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:12:42] launching puck at (-1.62, -4.73) with (112.68, 329.73) force -[04/26/2026 06:12:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:12:55] launching puck at (-0.06, -5.00) with (4.29, 348.43) force -[04/26/2026 06:13:01] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:13:01] launching puck at (-0.11, -5.00) with (7.41, 348.37) force -[04/26/2026 06:13:08] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:13:08] launching puck at (-4.71, -1.68) with (328.30, 116.79) force -[04/26/2026 06:13:14] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:13:14] launching puck at (-0.80, -4.93) with (56.01, 343.92) force -[04/26/2026 06:13:15] Dedicated match PATCH success: 200 {"ok":true,"id":129} -[04/26/2026 06:13:16] Dedicated match PATCH success: 200 {"ok":true,"id":129,"winner_id":20,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26093.txt b/games/soccar/soccar_Data/26093.txt deleted file mode 100644 index c4e788b..0000000 --- a/games/soccar/soccar_Data/26093.txt +++ /dev/null @@ -1,33 +0,0 @@ -[04/25/2026 06:20:12] Configured dedicated match reporting for match id 103 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/25/2026 06:20:12] Starting server at port 26093 -[04/25/2026 06:20:17] Game started On Server -[04/25/2026 06:20:17] Dedicated match PATCH success: 200 {"ok":true,"id":103} -[04/25/2026 06:20:17] Dedicated match PATCH success: 200 {"ok":true,"id":103} -[04/25/2026 06:20:20] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:20:20] launching puck at (0.05, -5.00) with (-3.48, 348.44) force -[04/25/2026 06:20:27] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:20:27] launching puck at (-4.02, -2.97) with (280.11, 207.26) force -[04/25/2026 06:20:34] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:20:34] launching puck at (-2.01, -4.58) with (140.32, 318.95) force -[04/25/2026 06:20:41] force = 70 * 0.801026 = 56.07182 -[04/25/2026 06:20:41] launching puck at (2.75, 1.56) with (-154.43, -87.54) force -[04/25/2026 06:20:46] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:20:46] launching puck at (4.19, -2.74) with (-291.69, 190.63) force -[04/25/2026 06:21:00] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:21:00] launching puck at (-4.81, 1.38) with (334.92, -96.17) force -[04/25/2026 06:21:09] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:21:09] launching puck at (2.73, -4.19) with (-190.60, 291.71) force -[04/25/2026 06:21:21] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:21:21] launching puck at (-4.90, 0.98) with (341.66, -68.47) force -[04/25/2026 06:21:26] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:21:26] launching puck at (3.37, -3.70) with (-234.69, 257.57) force -[04/25/2026 06:21:32] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:21:32] launching puck at (0.96, -4.91) with (-66.85, 341.98) force -[04/25/2026 06:21:37] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:21:37] launching puck at (1.92, -4.62) with (-133.71, 321.78) force -[04/25/2026 06:21:42] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:21:42] launching puck at (1.24, 4.84) with (-86.46, -337.56) force -[04/25/2026 06:21:50] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:21:50] launching puck at (4.13, -2.81) with (-288.04, 196.09) force -[04/25/2026 06:21:51] Dedicated match PATCH success: 200 {"ok":true,"id":103} -[04/25/2026 06:21:52] Dedicated match PATCH success: 200 {"ok":true,"id":103,"winner_id":9,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26126.txt b/games/soccar/soccar_Data/26126.txt deleted file mode 100644 index b0cd70a..0000000 --- a/games/soccar/soccar_Data/26126.txt +++ /dev/null @@ -1,3 +0,0 @@ -[04/26/2026 06:23:37] Configured dedicated match reporting for match id 155 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:23:37] Starting server at port 26126 -[04/26/2026 06:23:44] Dedicated match PATCH success: 200 {"ok":true,"id":155} diff --git a/games/soccar/soccar_Data/26129.txt b/games/soccar/soccar_Data/26129.txt deleted file mode 100644 index 531ab89..0000000 --- a/games/soccar/soccar_Data/26129.txt +++ /dev/null @@ -1,2 +0,0 @@ -[04/26/2026 06:54:22] Configured dedicated match reporting for match id 203 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:54:22] Starting server at port 26129 diff --git a/games/soccar/soccar_Data/26143.txt b/games/soccar/soccar_Data/26143.txt deleted file mode 100644 index 22c3f3b..0000000 --- a/games/soccar/soccar_Data/26143.txt +++ /dev/null @@ -1,3 +0,0 @@ -[04/26/2026 06:37:54] Configured dedicated match reporting for match id 174 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:37:54] Starting server at port 26143 -[04/26/2026 06:38:57] Dedicated match PATCH success: 200 {"ok":true,"id":174} diff --git a/games/soccar/soccar_Data/26156.txt b/games/soccar/soccar_Data/26156.txt deleted file mode 100644 index 4747d09..0000000 --- a/games/soccar/soccar_Data/26156.txt +++ /dev/null @@ -1,75 +0,0 @@ -[04/20/2026 20:29:08] Configured dedicated match reporting for match id 84 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/20/2026 20:29:08] Starting server at port 26156 -[04/20/2026 20:29:12] Dedicated match PATCH success: 200 {"ok":true,"id":84} -[04/20/2026 20:29:13] Game started On Server -[04/20/2026 20:29:14] Dedicated match PATCH success: 200 {"ok":true,"id":84} -[04/20/2026 20:29:16] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:29:16] launching puck at (0.01, -5.00) with (-0.35, 348.45) force -[04/20/2026 20:29:23] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:29:23] launching puck at (1.09, 4.88) with (-75.80, -340.11) force -[04/20/2026 20:29:28] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:29:28] launching puck at (3.23, -3.82) with (-225.16, 265.94) force -[04/20/2026 20:29:32] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:29:32] launching puck at (4.92, 0.89) with (-342.86, -62.19) force -[04/20/2026 20:29:37] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:29:37] launching puck at (-3.14, -3.89) with (218.86, 271.14) force -[04/20/2026 20:29:42] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:29:42] launching puck at (-5.00, 0.12) with (348.36, -8.24) force -[04/20/2026 20:29:48] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:29:48] launching puck at (-0.32, -4.99) with (22.02, 347.76) force -[04/20/2026 20:29:53] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:29:53] launching puck at (-2.67, 4.23) with (186.26, -294.49) force -[04/20/2026 20:29:59] force = 70 * 0.9860829 = 69.0258 -[04/20/2026 20:29:59] launching puck at (-0.53, 4.87) with (36.81, -335.86) force -[04/20/2026 20:30:04] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:30:04] launching puck at (2.36, 4.41) with (-164.65, -307.10) force -[04/20/2026 20:30:10] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:30:10] launching puck at (4.91, 0.95) with (-342.13, -66.09) force -[04/20/2026 20:30:14] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:30:14] launching puck at (2.06, 4.55) with (-143.80, -317.40) force -[04/20/2026 20:30:24] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:30:24] launching puck at (-0.14, 5.00) with (9.45, -348.32) force -[04/20/2026 20:30:33] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:30:33] launching puck at (4.99, -0.34) with (-347.65, 23.65) force -[04/20/2026 20:30:37] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:30:37] launching puck at (-1.60, 4.74) with (111.34, -330.19) force -[04/20/2026 20:30:42] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:30:42] launching puck at (4.94, -0.75) with (-344.49, 52.43) force -[04/20/2026 20:30:46] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:30:46] launching puck at (-3.02, 3.98) with (210.65, -277.57) force -[04/20/2026 20:30:51] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:30:51] launching puck at (-0.73, -4.95) with (50.98, 344.70) force -[04/20/2026 20:30:55] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:30:55] launching puck at (-5.00, 0.19) with (348.21, -13.03) force -[04/20/2026 20:31:00] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:31:00] launching puck at (-2.25, -4.46) with (156.90, 311.13) force -[04/20/2026 20:31:07] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:31:07] launching puck at (-0.14, -5.00) with (9.95, 348.31) force -[04/20/2026 20:31:15] force = 70 * 0.8393943 = 58.7576 -[04/20/2026 20:31:15] launching puck at (2.76, 2.08) with (-162.38, -122.02) force -[04/20/2026 20:31:20] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:31:20] launching puck at (1.01, -4.90) with (-70.48, 341.25) force -[04/20/2026 20:31:25] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:31:25] launching puck at (2.97, 4.03) with (-206.70, -280.52) force -[04/20/2026 20:31:31] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:31:31] launching puck at (3.21, -3.83) with (-223.91, 266.99) force -[04/20/2026 20:31:39] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:31:39] launching puck at (1.16, -4.86) with (-80.80, 338.96) force -[04/20/2026 20:31:46] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:31:46] launching puck at (-0.61, -4.96) with (42.32, 345.87) force -[04/20/2026 20:31:53] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:31:53] launching puck at (-0.09, -5.00) with (5.96, 348.40) force -[04/20/2026 20:31:59] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:31:59] launching puck at (-0.96, 4.91) with (66.88, -341.98) force -[04/20/2026 20:32:08] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:32:08] launching puck at (2.80, -4.15) with (-194.81, 288.91) force -[04/20/2026 20:32:16] force = 70 * 0.7762522 = 54.33765 -[04/20/2026 20:32:16] launching puck at (0.07, -2.99) with (-3.89, 162.66) force -[04/20/2026 20:32:25] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:32:25] launching puck at (-0.09, -5.00) with (6.55, 348.39) force -[04/20/2026 20:32:30] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:32:30] launching puck at (4.76, -1.52) with (-331.93, 106.03) force -[04/20/2026 20:32:35] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:32:35] launching puck at (-1.73, -4.69) with (120.56, 326.93) force -[04/20/2026 20:32:37] Dedicated match PATCH success: 200 {"ok":true,"id":84} -[04/20/2026 20:32:38] Dedicated match PATCH success: 200 {"ok":true,"id":84,"winner_id":9,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26170.txt b/games/soccar/soccar_Data/26170.txt deleted file mode 100644 index 53c1be8..0000000 --- a/games/soccar/soccar_Data/26170.txt +++ /dev/null @@ -1,71 +0,0 @@ -[04/26/2026 06:00:39] Configured dedicated match reporting for match id 116 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:00:39] Starting server at port 26170 -[04/26/2026 06:00:44] Game started On Server -[04/26/2026 06:00:46] Dedicated match PATCH success: 200 {"ok":true,"id":116} -[04/26/2026 06:00:49] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:00:49] launching puck at (0.02, -5.00) with (-1.13, 348.45) force -[04/26/2026 06:00:49] Dedicated match PATCH success: 200 {"ok":true,"id":116} -[04/26/2026 06:01:02] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:01:02] launching puck at (4.08, 2.89) with (-284.43, -201.30) force -[04/26/2026 06:01:11] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:01:11] launching puck at (-1.64, -4.72) with (114.01, 329.28) force -[04/26/2026 06:01:18] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:01:18] launching puck at (-0.10, 5.00) with (7.18, -348.38) force -[04/26/2026 06:01:26] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:01:26] launching puck at (4.96, -0.64) with (-345.62, 44.32) force -[04/26/2026 06:01:34] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:01:34] launching puck at (-3.42, 3.65) with (238.30, -254.23) force -[04/26/2026 06:01:40] force = 70 * 0.9776535 = 68.43575 -[04/26/2026 06:01:40] launching puck at (-4.79, 0.33) with (327.85, -22.33) force -[04/26/2026 06:01:48] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:01:48] launching puck at (-4.81, 1.35) with (335.52, -94.04) force -[04/26/2026 06:01:56] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:01:56] launching puck at (-1.94, -4.61) with (135.41, 321.07) force -[04/26/2026 06:02:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:02:03] launching puck at (-4.58, 2.00) with (319.47, -139.13) force -[04/26/2026 06:02:14] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:02:14] launching puck at (-4.70, -1.70) with (327.74, 118.35) force -[04/26/2026 06:02:20] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:02:20] launching puck at (-4.04, 2.95) with (281.24, -205.73) force -[04/26/2026 06:02:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:02:27] launching puck at (-0.97, -4.91) with (67.32, 341.89) force -[04/26/2026 06:02:33] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:02:33] launching puck at (-4.13, 2.82) with (287.84, -196.39) force -[04/26/2026 06:02:42] force = 70 * 0.8094243 = 56.6597 -[04/26/2026 06:02:42] launching puck at (-1.18, 3.01) with (66.61, -170.27) force -[04/26/2026 06:02:51] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:02:51] launching puck at (-0.15, 5.00) with (10.79, -348.29) force -[04/26/2026 06:03:02] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:02] launching puck at (-0.04, -5.00) with (3.00, 348.44) force -[04/26/2026 06:03:08] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:08] launching puck at (-2.43, 4.37) with (169.43, -304.49) force -[04/26/2026 06:03:15] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:15] launching puck at (0.67, -4.95) with (-46.94, 345.28) force -[04/26/2026 06:03:21] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:21] launching puck at (-0.42, 4.98) with (29.10, -347.24) force -[04/26/2026 06:03:28] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:28] launching puck at (-4.39, -2.39) with (306.02, 166.66) force -[04/26/2026 06:03:35] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:35] launching puck at (-0.20, 5.00) with (14.19, -348.16) force -[04/26/2026 06:03:41] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:41] launching puck at (0.60, -4.96) with (-41.84, 345.93) force -[04/26/2026 06:03:48] force = 70 * 0.8674045 = 60.71831 -[04/26/2026 06:03:48] launching puck at (3.68, -0.32) with (-223.28, 19.57) force -[04/26/2026 06:03:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:55] launching puck at (-1.18, -4.86) with (82.58, 338.53) force -[04/26/2026 06:04:03] force = 70 * 0.7909821 = 55.36875 -[04/26/2026 06:04:03] launching puck at (-3.09, 0.07) with (171.32, -3.94) force -[04/26/2026 06:04:12] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:04:12] launching puck at (-0.91, -4.92) with (63.63, 342.59) force -[04/26/2026 06:04:17] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:04:17] launching puck at (-4.13, -2.82) with (287.86, 196.36) force -[04/26/2026 06:04:20] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:04:20] launching puck at (3.11, -3.92) with (-216.72, 272.86) force -[04/26/2026 06:04:26] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:04:26] launching puck at (-3.44, 3.63) with (239.93, -252.69) force -[04/26/2026 06:04:32] force = 70 * 0.9851029 = 68.9572 -[04/26/2026 06:04:32] launching puck at (-3.30, -3.60) with (227.84, 248.02) force -[04/26/2026 06:04:40] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:04:40] launching puck at (-4.73, -1.61) with (329.78, 112.55) force -[04/26/2026 06:04:41] Dedicated match PATCH success: 200 {"ok":true,"id":116} -[04/26/2026 06:04:43] Dedicated match PATCH success: 200 {"ok":true,"id":116,"winner_id":14,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26191.txt b/games/soccar/soccar_Data/26191.txt deleted file mode 100644 index 803c940..0000000 --- a/games/soccar/soccar_Data/26191.txt +++ /dev/null @@ -1,37 +0,0 @@ -[04/24/2026 20:15:59] Configured dedicated match reporting for match id 99 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/24/2026 20:15:59] Starting server at port 26191 -[04/24/2026 20:16:05] Dedicated match PATCH success: 200 {"ok":true,"id":99} -[04/24/2026 20:16:06] Game started On Server -[04/24/2026 20:16:07] Dedicated match PATCH success: 200 {"ok":true,"id":99} -[04/24/2026 20:16:08] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 20:16:08] launching puck at (-0.19, -5.00) with (13.24, 348.20) force -[04/24/2026 20:16:16] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 20:16:16] launching puck at (-2.29, 4.45) with (159.45, -309.83) force -[04/24/2026 20:16:30] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 20:16:30] launching puck at (-0.47, -4.98) with (32.92, 346.89) force -[04/24/2026 20:16:35] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 20:16:35] launching puck at (-2.87, 4.10) with (199.71, -285.54) force -[04/24/2026 20:16:40] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 20:16:40] launching puck at (-1.02, -4.90) with (70.77, 341.19) force -[04/24/2026 20:16:45] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 20:16:45] launching puck at (-0.49, 4.98) with (34.05, -346.79) force -[04/24/2026 20:16:50] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 20:16:50] launching puck at (-0.18, -5.00) with (12.33, 348.23) force -[04/24/2026 20:16:56] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 20:16:56] launching puck at (-1.79, 4.67) with (124.58, -325.42) force -[04/24/2026 20:17:02] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 20:17:02] launching puck at (-3.53, -3.54) with (246.12, 246.67) force -[04/24/2026 20:17:12] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 20:17:12] launching puck at (-0.92, 4.91) with (64.16, -342.50) force -[04/24/2026 20:17:22] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 20:17:22] launching puck at (4.87, -1.13) with (-339.40, 78.90) force -[04/24/2026 20:17:30] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 20:17:30] launching puck at (-4.56, 2.05) with (317.87, -142.74) force -[04/24/2026 20:17:36] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 20:17:36] launching puck at (-3.19, -3.85) with (222.25, 268.37) force -[04/24/2026 20:17:41] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 20:17:41] launching puck at (-0.62, 4.96) with (43.11, -345.78) force -[04/24/2026 20:17:48] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 20:17:48] launching puck at (-2.59, 4.28) with (180.36, -298.14) force -[04/24/2026 20:17:50] Dedicated match PATCH success: 200 {"ok":true,"id":99} -[04/24/2026 20:17:51] Dedicated match PATCH success: 200 {"ok":true,"id":99,"winner_id":9,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26201.txt b/games/soccar/soccar_Data/26201.txt deleted file mode 100644 index d487dc4..0000000 --- a/games/soccar/soccar_Data/26201.txt +++ /dev/null @@ -1,2 +0,0 @@ -[04/25/2026 05:44:53] Configured dedicated match reporting for match id 100 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/25/2026 05:44:53] Starting server at port 26201 diff --git a/games/soccar/soccar_Data/26221.txt b/games/soccar/soccar_Data/26221.txt deleted file mode 100644 index ab2d090..0000000 --- a/games/soccar/soccar_Data/26221.txt +++ /dev/null @@ -1,71 +0,0 @@ -[04/26/2026 06:01:38] Configured dedicated match reporting for match id 118 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:01:38] Starting server at port 26221 -[04/26/2026 06:01:46] Game started On Server -[04/26/2026 06:01:47] Dedicated match PATCH success: 200 {"ok":true,"id":118} -[04/26/2026 06:01:47] Dedicated match PATCH success: 200 {"ok":true,"id":118} -[04/26/2026 06:01:56] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:01:56] launching puck at (1.01, -4.90) with (-70.58, 341.23) force -[04/26/2026 06:02:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:02:03] launching puck at (-2.28, 4.45) with (159.01, -310.06) force -[04/26/2026 06:02:08] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:02:08] launching puck at (-2.62, 4.26) with (182.27, -296.98) force -[04/26/2026 06:02:16] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:02:16] launching puck at (-2.68, 4.22) with (186.45, -294.37) force -[04/26/2026 06:02:21] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:02:21] launching puck at (-4.85, -1.21) with (338.18, 83.98) force -[04/26/2026 06:02:30] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:02:30] launching puck at (-0.69, 4.95) with (47.88, -345.15) force -[04/26/2026 06:02:35] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:02:35] launching puck at (-3.01, 3.99) with (209.79, -278.22) force -[04/26/2026 06:02:43] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:02:43] launching puck at (-2.43, 4.37) with (169.14, -304.65) force -[04/26/2026 06:02:48] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:02:48] launching puck at (-0.91, 4.92) with (63.17, -342.68) force -[04/26/2026 06:02:53] force = 70 * 0.8862221 = 62.03555 -[04/26/2026 06:02:53] launching puck at (3.83, 0.48) with (-237.66, -29.48) force -[04/26/2026 06:03:02] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:02] launching puck at (0.79, 4.94) with (-54.94, -344.09) force -[04/26/2026 06:03:07] force = 70 * 0.785569 = 54.98983 -[04/26/2026 06:03:07] launching puck at (2.96, 0.77) with (-162.74, -42.25) force -[04/26/2026 06:03:13] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:13] launching puck at (-0.64, 4.96) with (44.46, -345.61) force -[04/26/2026 06:03:24] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:24] launching puck at (4.93, -0.82) with (-343.72, 57.21) force -[04/26/2026 06:03:30] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:30] launching puck at (-4.94, 0.80) with (343.99, -55.57) force -[04/26/2026 06:03:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:36] launching puck at (-4.76, -1.54) with (331.48, 107.41) force -[04/26/2026 06:03:44] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:44] launching puck at (-2.07, 4.55) with (144.17, -317.23) force -[04/26/2026 06:03:49] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:49] launching puck at (1.09, 4.88) with (-75.83, -340.10) force -[04/26/2026 06:03:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:55] launching puck at (-3.22, 3.82) with (224.56, -266.44) force -[04/26/2026 06:04:00] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:04:00] launching puck at (-0.28, -4.99) with (19.35, 347.92) force -[04/26/2026 06:04:06] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:04:06] launching puck at (-3.71, 3.36) with (258.33, -233.85) force -[04/26/2026 06:04:15] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:04:15] launching puck at (-1.85, 4.64) with (129.14, -323.64) force -[04/26/2026 06:04:20] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:04:20] launching puck at (1.92, 4.62) with (-134.04, -321.64) force -[04/26/2026 06:04:28] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:04:28] launching puck at (4.90, -0.98) with (-341.65, 68.54) force -[04/26/2026 06:04:38] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:04:38] launching puck at (-4.17, 2.75) with (290.91, -191.81) force -[04/26/2026 06:04:44] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:04:44] launching puck at (-4.89, 1.03) with (341.05, -71.45) force -[04/26/2026 06:04:48] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:04:48] launching puck at (-3.14, 3.89) with (218.96, -271.07) force -[04/26/2026 06:04:53] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:04:53] launching puck at (-0.25, 4.99) with (17.28, -348.02) force -[04/26/2026 06:04:57] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:04:57] launching puck at (0.81, 4.93) with (-56.37, -343.86) force -[04/26/2026 06:05:05] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:05:05] launching puck at (0.59, 4.97) with (-41.00, -346.03) force -[04/26/2026 06:05:13] force = 70 * 0.912259 = 63.85813 -[04/26/2026 06:05:13] launching puck at (4.02, 0.83) with (-256.98, -53.19) force -[04/26/2026 06:05:19] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:05:19] launching puck at (-0.59, 4.96) with (41.16, -346.01) force -[04/26/2026 06:05:19] Dedicated match PATCH success: 200 {"ok":true,"id":118} -[04/26/2026 06:05:21] Dedicated match PATCH success: 200 {"ok":true,"id":118,"winner_id":22,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26223.txt b/games/soccar/soccar_Data/26223.txt deleted file mode 100644 index b15d339..0000000 --- a/games/soccar/soccar_Data/26223.txt +++ /dev/null @@ -1,7 +0,0 @@ -[04/20/2026 10:29:28] Configured dedicated match reporting for match id 83 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/20/2026 10:29:28] Starting server at port 26223 -[04/20/2026 10:29:34] Dedicated match PATCH success: 200 {"ok":true,"id":83} -[04/20/2026 10:29:35] Game started On Server -[04/20/2026 10:29:36] Dedicated match PATCH success: 200 {"ok":true,"id":83} -[04/20/2026 10:30:00] force = 70 * 0.898546 = 62.89822 -[04/20/2026 10:30:00] launching puck at (-1.28, 3.77) with (80.40, -236.81) force diff --git a/games/soccar/soccar_Data/26239.txt b/games/soccar/soccar_Data/26239.txt deleted file mode 100644 index 2226efc..0000000 --- a/games/soccar/soccar_Data/26239.txt +++ /dev/null @@ -1,81 +0,0 @@ -[04/26/2026 06:33:53] Configured dedicated match reporting for match id 167 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:33:53] Starting server at port 26239 -[04/26/2026 06:33:59] Dedicated match PATCH success: 200 {"ok":true,"id":167} -[04/26/2026 06:34:00] Game started On Server -[04/26/2026 06:34:01] Dedicated match PATCH success: 200 {"ok":true,"id":167} -[04/26/2026 06:34:05] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:34:05] launching puck at (0.15, -5.00) with (-10.59, 348.29) force -[04/26/2026 06:34:10] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:34:10] launching puck at (-3.71, 3.36) with (258.33, -233.85) force -[04/26/2026 06:34:20] force = 70 * 0.9946371 = 69.6246 -[04/26/2026 06:34:20] launching puck at (4.99, 0.06) with (-347.37, -4.27) force -[04/26/2026 06:34:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:34:27] launching puck at (1.14, 4.87) with (-79.36, -339.29) force -[04/26/2026 06:34:35] force = 70 * 0.892246 = 62.45722 -[04/26/2026 06:34:35] launching puck at (3.37, -1.99) with (-210.78, 124.11) force -[04/26/2026 06:34:42] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:34:42] launching puck at (3.33, 3.73) with (-231.96, -260.03) force -[04/26/2026 06:34:51] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:34:51] launching puck at (0.47, -4.98) with (-32.77, 346.91) force -[04/26/2026 06:34:58] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:34:58] launching puck at (4.11, 2.85) with (-286.41, -198.46) force -[04/26/2026 06:35:13] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:13] launching puck at (2.91, -4.07) with (-202.77, 283.38) force -[04/26/2026 06:35:20] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:20] launching puck at (4.00, 3.01) with (-278.50, -209.42) force -[04/26/2026 06:35:28] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:28] launching puck at (3.46, 3.61) with (-241.44, -251.25) force -[04/26/2026 06:35:33] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:33] launching puck at (0.99, 4.90) with (-68.72, -341.61) force -[04/26/2026 06:35:46] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:46] launching puck at (4.58, 2.00) with (-319.51, -139.05) force -[04/26/2026 06:35:52] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:52] launching puck at (1.94, 4.61) with (-135.48, -321.04) force -[04/26/2026 06:35:59] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:59] launching puck at (5.00, 0.06) with (-348.43, -4.06) force -[04/26/2026 06:36:04] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:04] launching puck at (3.37, 3.69) with (-235.15, -257.14) force -[04/26/2026 06:36:12] force = 70 * 0.5606598 = 39.24619 -[04/26/2026 06:36:12] launching puck at (-1.64, 0.86) with (64.29, -33.57) force -[04/26/2026 06:36:20] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:20] launching puck at (0.46, 4.98) with (-32.24, -346.96) force -[04/26/2026 06:36:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:27] launching puck at (0.00, -5.00) with (-0.07, 348.45) force -[04/26/2026 06:36:36] force = 70 * 0.915184 = 64.06288 -[04/26/2026 06:36:36] launching puck at (3.85, 1.52) with (-246.70, -97.12) force -[04/26/2026 06:36:46] force = 70 * 0.9954901 = 69.6843 -[04/26/2026 06:36:46] launching puck at (1.30, -4.83) with (-90.75, 336.32) force -[04/26/2026 06:36:52] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:52] launching puck at (2.60, 4.27) with (-181.51, -297.45) force -[04/26/2026 06:36:59] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:59] launching puck at (-1.04, -4.89) with (72.63, 340.80) force -[04/26/2026 06:37:06] force = 70 * 0.9127645 = 63.89352 -[04/26/2026 06:37:06] launching puck at (-2.93, 2.89) with (187.04, -184.74) force -[04/26/2026 06:37:16] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:16] launching puck at (-0.94, -4.91) with (65.58, 342.23) force -[04/26/2026 06:37:22] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:22] launching puck at (-0.98, -4.90) with (68.13, 341.73) force -[04/26/2026 06:37:28] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:28] launching puck at (-0.23, -4.99) with (16.07, 348.08) force -[04/26/2026 06:37:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:36] launching puck at (1.93, 4.61) with (-134.67, -321.38) force -[04/26/2026 06:37:44] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:44] launching puck at (0.57, -4.97) with (-39.86, 346.17) force -[04/26/2026 06:37:51] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:51] launching puck at (2.29, 4.45) with (-159.35, -309.88) force -[04/26/2026 06:38:00] force = 70 * 0.9825296 = 68.77708 -[04/26/2026 06:38:00] launching puck at (4.76, -0.96) with (-327.37, 65.97) force -[04/26/2026 06:38:07] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:38:07] launching puck at (4.97, -0.58) with (-346.10, 40.47) force -[04/26/2026 06:38:13] force = 70 * 0.9887117 = 69.20982 -[04/26/2026 06:38:13] launching puck at (2.90, -3.98) with (-200.43, 275.62) force -[04/26/2026 06:38:20] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:38:20] launching puck at (4.91, 0.93) with (-342.36, -64.90) force -[04/26/2026 06:38:28] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:38:28] launching puck at (1.97, -4.59) with (-137.46, 320.20) force -[04/26/2026 06:38:34] force = 70 * 0.6477655 = 45.34359 -[04/26/2026 06:38:34] launching puck at (-2.25, 0.18) with (102.16, -8.08) force -[04/26/2026 06:38:41] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:38:41] launching puck at (-2.02, -4.57) with (140.88, 318.70) force -[04/26/2026 06:38:42] Dedicated match PATCH success: 200 {"ok":true,"id":167} -[04/26/2026 06:38:43] Dedicated match PATCH success: 200 {"ok":true,"id":167,"winner_id":25,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26240.txt b/games/soccar/soccar_Data/26240.txt deleted file mode 100644 index 55d99fd..0000000 --- a/games/soccar/soccar_Data/26240.txt +++ /dev/null @@ -1,5 +0,0 @@ -[04/26/2026 18:38:16] Configured dedicated match reporting for match id 212 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 18:38:16] Starting server at port 26240 -[04/26/2026 18:38:23] Dedicated match PATCH success: 200 {"ok":true,"id":212} -[04/26/2026 18:38:24] Game started On Server -[04/26/2026 18:38:25] Dedicated match PATCH success: 200 {"ok":true,"id":212} diff --git a/games/soccar/soccar_Data/26242.txt b/games/soccar/soccar_Data/26242.txt deleted file mode 100644 index b4a8ee1..0000000 --- a/games/soccar/soccar_Data/26242.txt +++ /dev/null @@ -1,77 +0,0 @@ -[04/26/2026 06:09:58] Configured dedicated match reporting for match id 131 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:09:58] Starting server at port 26242 -[04/26/2026 06:10:07] Dedicated match PATCH success: 200 {"ok":true,"id":131} -[04/26/2026 06:10:09] Game started On Server -[04/26/2026 06:10:09] Dedicated match PATCH success: 200 {"ok":true,"id":131} -[04/26/2026 06:10:14] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:10:14] launching puck at (-0.08, -5.00) with (5.80, 348.40) force -[04/26/2026 06:10:22] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:10:22] launching puck at (-0.88, 4.92) with (61.18, -343.04) force -[04/26/2026 06:10:29] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:10:29] launching puck at (2.79, -4.15) with (-194.19, 289.33) force -[04/26/2026 06:10:35] force = 70 * 0.983723 = 68.86061 -[04/26/2026 06:10:35] launching puck at (4.41, 2.07) with (-303.61, -142.21) force -[04/26/2026 06:10:43] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:10:43] launching puck at (3.75, -3.31) with (-261.36, 230.46) force -[04/26/2026 06:10:52] force = 70 * 0.8415602 = 58.90921 -[04/26/2026 06:10:52] launching puck at (-3.47, -0.15) with (204.47, 8.93) force -[04/26/2026 06:10:57] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:10:57] launching puck at (-0.55, -4.97) with (38.58, 346.31) force -[04/26/2026 06:11:04] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:04] launching puck at (0.00, 5.00) with (0.16, -348.45) force -[04/26/2026 06:11:12] force = 70 * 0.9406648 = 65.84653 -[04/26/2026 06:11:12] launching puck at (2.35, 3.72) with (-154.57, -245.09) force -[04/26/2026 06:11:17] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:17] launching puck at (0.95, 4.91) with (-66.32, -342.08) force -[04/26/2026 06:11:22] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:22] launching puck at (5.00, -0.15) with (-348.31, 10.11) force -[04/26/2026 06:11:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:27] launching puck at (4.03, 2.96) with (-280.77, -206.37) force -[04/26/2026 06:11:32] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:32] launching puck at (-0.64, -4.96) with (44.70, 345.57) force -[04/26/2026 06:11:41] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:41] launching puck at (1.62, 4.73) with (-113.24, -329.54) force -[04/26/2026 06:11:45] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:45] launching puck at (-2.94, -4.04) with (204.89, 281.85) force -[04/26/2026 06:11:51] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:51] launching puck at (-2.41, 4.38) with (168.20, -305.17) force -[04/26/2026 06:11:57] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:57] launching puck at (-2.53, 4.31) with (176.63, -300.37) force -[04/26/2026 06:12:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:12:03] launching puck at (-1.93, 4.61) with (134.18, -321.58) force -[04/26/2026 06:12:08] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:12:08] launching puck at (-2.98, 4.01) with (207.76, -279.74) force -[04/26/2026 06:12:14] force = 70 * 0.5986078 = 41.90255 -[04/26/2026 06:12:14] launching puck at (1.86, 0.82) with (-77.82, -34.30) force -[04/26/2026 06:12:19] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:12:19] launching puck at (2.01, 4.58) with (-139.97, -319.10) force -[04/26/2026 06:12:24] force = 70 * 0.7697585 = 53.88309 -[04/26/2026 06:12:24] launching puck at (-2.27, 1.89) with (122.26, -101.70) force -[04/26/2026 06:12:29] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:12:29] launching puck at (-0.91, 4.92) with (63.28, -342.66) force -[04/26/2026 06:12:35] force = 70 * 0.8199111 = 57.39378 -[04/26/2026 06:12:35] launching puck at (2.80, 1.76) with (-160.60, -100.93) force -[04/26/2026 06:12:41] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:12:41] launching puck at (-0.90, 4.92) with (62.57, -342.79) force -[04/26/2026 06:12:46] force = 70 * 0.5116938 = 35.81857 -[04/26/2026 06:12:46] launching puck at (-0.82, 1.38) with (29.40, -49.48) force -[04/26/2026 06:12:56] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:12:56] launching puck at (-4.36, -2.45) with (303.73, 170.78) force -[04/26/2026 06:13:01] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:13:01] launching puck at (2.81, 4.14) with (-195.63, -288.35) force -[04/26/2026 06:13:06] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:13:06] launching puck at (3.76, -3.29) with (-262.33, 229.35) force -[04/26/2026 06:13:16] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:13:16] launching puck at (2.74, 4.18) with (-191.25, -291.28) force -[04/26/2026 06:13:25] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:13:25] launching puck at (-4.79, -1.44) with (333.72, 100.26) force -[04/26/2026 06:13:30] force = 70 * 0.9672365 = 67.70656 -[04/26/2026 06:13:30] launching puck at (3.97, 2.49) with (-268.88, -168.55) force -[04/26/2026 06:13:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:13:36] launching puck at (3.76, -3.29) with (-262.11, 229.60) force -[04/26/2026 06:13:43] force = 70 * 0.9621023 = 67.34716 -[04/26/2026 06:13:43] launching puck at (4.40, 1.43) with (-296.61, -96.38) force -[04/26/2026 06:13:49] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:13:49] launching puck at (4.18, -2.75) with (-290.99, 191.69) force -[04/26/2026 06:13:51] Dedicated match PATCH success: 200 {"ok":true,"id":131} -[04/26/2026 06:13:54] Dedicated match PATCH success: 200 {"ok":true,"id":131,"winner_id":18,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26248.txt b/games/soccar/soccar_Data/26248.txt deleted file mode 100644 index bbb1e54..0000000 --- a/games/soccar/soccar_Data/26248.txt +++ /dev/null @@ -1,107 +0,0 @@ -[04/25/2026 12:52:51] Configured dedicated match reporting for match id 109 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/25/2026 12:52:51] Starting server at port 26248 -[04/25/2026 12:52:55] Dedicated match PATCH success: 200 {"ok":true,"id":109} -[04/25/2026 12:52:55] Game started On Server -[04/25/2026 12:52:55] Dedicated match PATCH success: 200 {"ok":true,"id":109} -[04/25/2026 12:53:04] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:53:04] launching puck at (0.06, -5.00) with (-3.94, 348.43) force -[04/25/2026 12:53:20] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:53:20] launching puck at (-4.56, 2.06) with (317.59, -143.38) force -[04/25/2026 12:53:31] force = 70 * 0.7992557 = 55.9479 -[04/25/2026 12:53:31] launching puck at (0.83, -3.04) with (-46.35, 170.22) force -[04/25/2026 12:53:37] force = 70 * 0.7263691 = 50.84584 -[04/25/2026 12:53:37] launching puck at (2.30, 1.37) with (-117.15, -69.80) force -[04/25/2026 12:53:44] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:53:44] launching puck at (3.14, -3.89) with (-218.71, 271.26) force -[04/25/2026 12:53:49] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:53:49] launching puck at (-4.96, -0.64) with (345.58, 44.62) force -[04/25/2026 12:53:58] force = 70 * 0.9104946 = 63.73462 -[04/25/2026 12:53:58] launching puck at (-0.88, -4.00) with (56.37, 254.64) force -[04/25/2026 12:54:03] force = 70 * 0.7841818 = 54.89272 -[04/25/2026 12:54:03] launching puck at (-2.44, -1.83) with (133.68, 100.61) force -[04/25/2026 12:54:09] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:54:09] launching puck at (-1.63, -4.73) with (113.71, 329.38) force -[04/25/2026 12:54:14] force = 70 * 0.6623821 = 46.36674 -[04/25/2026 12:54:14] launching puck at (1.43, -1.84) with (-66.50, 85.33) force -[04/25/2026 12:54:17] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:54:17] launching puck at (-3.36, -3.71) with (233.88, 258.30) force -[04/25/2026 12:54:21] force = 70 * 0.7389587 = 51.72711 -[04/25/2026 12:54:21] launching puck at (2.23, -1.62) with (-115.43, 83.76) force -[04/25/2026 12:54:25] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:54:25] launching puck at (-4.26, -2.62) with (296.97, 182.29) force -[04/25/2026 12:54:28] force = 70 * 0.5198346 = 36.38842 -[04/25/2026 12:54:28] launching puck at (-1.47, -0.73) with (53.62, 26.57) force -[04/25/2026 12:54:31] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:54:31] launching puck at (1.11, -4.88) with (-77.26, 339.78) force -[04/25/2026 12:54:35] force = 70 * 0.5351999 = 37.46399 -[04/25/2026 12:54:35] launching puck at (-1.68, -0.39) with (62.76, 14.48) force -[04/25/2026 12:54:38] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:54:38] launching puck at (0.34, -4.99) with (-23.95, 347.63) force -[04/25/2026 12:54:42] force = 70 * 0.4749575 = 33.24702 -[04/25/2026 12:54:42] launching puck at (-1.45, -0.16) with (48.07, 5.33) force -[04/25/2026 12:54:44] force = 70 * 0.8679188 = 60.75432 -[04/25/2026 12:54:44] launching puck at (3.42, 1.41) with (-207.51, -85.79) force -[04/25/2026 12:54:49] force = 70 * 0.7065924 = 49.46147 -[04/25/2026 12:54:49] launching puck at (-2.24, -1.25) with (110.99, 61.84) force -[04/25/2026 12:54:55] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:54:55] launching puck at (-4.68, 1.77) with (325.93, -123.25) force -[04/25/2026 12:54:59] force = 70 * 0.5386357 = 37.7045 -[04/25/2026 12:54:59] launching puck at (-0.83, -1.53) with (31.12, 57.60) force -[04/25/2026 12:55:06] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:55:06] launching puck at (-0.96, -4.91) with (66.74, 342.00) force -[04/25/2026 12:55:12] force = 70 * 0.5997815 = 41.9847 -[04/25/2026 12:55:12] launching puck at (-1.96, -0.54) with (82.38, 22.65) force -[04/25/2026 12:55:15] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:55:15] launching puck at (-0.15, -5.00) with (10.80, 348.29) force -[04/25/2026 12:55:19] force = 70 * 0.616568 = 43.15976 -[04/25/2026 12:55:19] launching puck at (0.25, -2.10) with (-10.89, 90.47) force -[04/25/2026 12:55:22] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:55:22] launching puck at (0.38, -4.99) with (-26.14, 347.47) force -[04/25/2026 12:55:28] force = 70 * 0.6706636 = 46.94645 -[04/25/2026 12:55:28] launching puck at (-2.35, -0.35) with (110.27, 16.64) force -[04/25/2026 12:55:31] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:55:31] launching puck at (3.07, -3.95) with (-214.05, 274.96) force -[04/25/2026 12:55:36] force = 70 * 0.8843691 = 61.90583 -[04/25/2026 12:55:36] launching puck at (-3.62, -1.28) with (224.38, 79.13) force -[04/25/2026 12:55:39] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:55:39] launching puck at (-1.79, 4.67) with (125.02, -325.25) force -[04/25/2026 12:55:44] force = 70 * 0.8400843 = 58.8059 -[04/25/2026 12:55:44] launching puck at (-3.07, 1.61) with (180.35, -94.50) force -[04/25/2026 12:55:48] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:55:48] launching puck at (-0.93, -4.91) with (64.88, 342.36) force -[04/25/2026 12:55:52] force = 70 * 0.545392 = 38.17744 -[04/25/2026 12:55:52] launching puck at (-1.50, -0.95) with (57.10, 36.17) force -[04/25/2026 12:55:56] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:55:56] launching puck at (-4.70, 1.70) with (327.68, -118.51) force -[04/25/2026 12:56:00] force = 70 * 0.5740173 = 40.18121 -[04/25/2026 12:56:00] launching puck at (-1.16, -1.52) with (46.59, 61.22) force -[04/25/2026 12:56:06] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:56:06] launching puck at (-4.92, 0.89) with (342.84, -62.27) force -[04/25/2026 12:56:13] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:56:13] launching puck at (2.86, 4.10) with (-199.04, -286.01) force -[04/25/2026 12:56:19] force = 70 * 0.9145837 = 64.02086 -[04/25/2026 12:56:19] launching puck at (2.02, 3.61) with (-129.14, -230.92) force -[04/25/2026 12:56:35] force = 70 * 0.6619066 = 46.33346 -[04/25/2026 12:56:35] launching puck at (-2.31, 0.27) with (107.26, -12.58) force -[04/25/2026 12:56:43] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:56:43] launching puck at (-4.02, 2.98) with (279.82, -207.66) force -[04/25/2026 12:56:51] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:56:51] launching puck at (-0.32, -4.99) with (22.62, 347.72) force -[04/25/2026 12:57:03] force = 70 * 0.4849926 = 33.94948 -[04/25/2026 12:57:03] launching puck at (-1.44, 0.40) with (48.81, -13.68) force -[04/25/2026 12:57:25] force = 70 * 0.1589748 = 11.12824 -[04/25/2026 12:57:25] launching puck at (0.12, 0.79) with (-1.39, -8.84) force -[04/25/2026 12:57:27] force = 70 * 0.9519926 = 66.63948 -[04/25/2026 12:57:27] launching puck at (1.42, -4.29) with (-94.56, 286.08) force -[04/25/2026 12:57:44] force = 70 * 0.9195474 = 64.36832 -[04/25/2026 12:57:44] launching puck at (4.05, -1.03) with (-260.91, 66.35) force -[04/25/2026 12:57:48] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:57:48] launching puck at (4.38, -2.41) with (-305.30, 167.96) force -[04/25/2026 12:57:55] force = 70 * 0.4346936 = 30.42855 -[04/25/2026 12:57:55] launching puck at (0.47, -1.23) with (-14.33, 37.54) force -[04/25/2026 12:58:01] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:58:01] launching puck at (2.98, -4.02) with (-207.37, 280.03) force -[04/25/2026 12:58:21] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:58:21] launching puck at (-2.36, -4.41) with (164.13, 307.38) force -[04/25/2026 12:58:52] force = 70 * 0.9499003 = 66.49303 -[04/25/2026 12:58:52] launching puck at (3.99, 2.07) with (-265.52, -137.79) force diff --git a/games/soccar/soccar_Data/26252.txt b/games/soccar/soccar_Data/26252.txt deleted file mode 100644 index 698ae0b..0000000 --- a/games/soccar/soccar_Data/26252.txt +++ /dev/null @@ -1,3 +0,0 @@ -[04/26/2026 06:45:37] Configured dedicated match reporting for match id 188 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:45:37] Starting server at port 26252 -[04/26/2026 06:45:52] Dedicated match PATCH success: 200 {"ok":true,"id":188} diff --git a/games/soccar/soccar_Data/26257.txt b/games/soccar/soccar_Data/26257.txt deleted file mode 100644 index 3bbd832..0000000 --- a/games/soccar/soccar_Data/26257.txt +++ /dev/null @@ -1,5 +0,0 @@ -[04/24/2026 20:04:51] Configured dedicated match reporting for match id 97 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/24/2026 20:04:51] Starting server at port 26257 -[04/24/2026 20:05:34] Dedicated match PATCH success: 200 {"ok":true,"id":97} -[04/24/2026 20:05:35] Game started On Server -[04/24/2026 20:05:35] Dedicated match PATCH success: 200 {"ok":true,"id":97} diff --git a/games/soccar/soccar_Data/26264.txt b/games/soccar/soccar_Data/26264.txt deleted file mode 100644 index 42e5f5a..0000000 --- a/games/soccar/soccar_Data/26264.txt +++ /dev/null @@ -1,2 +0,0 @@ -[04/26/2026 06:22:16] Configured dedicated match reporting for match id 153 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:22:16] Starting server at port 26264 diff --git a/games/soccar/soccar_Data/26271.txt b/games/soccar/soccar_Data/26271.txt deleted file mode 100644 index de8409b..0000000 --- a/games/soccar/soccar_Data/26271.txt +++ /dev/null @@ -1,3 +0,0 @@ -[04/24/2026 19:51:36] Configured dedicated match reporting for match id 94 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/24/2026 19:51:36] Starting server at port 26271 -[04/24/2026 19:51:53] Dedicated match PATCH success: 200 {"ok":true,"id":94} diff --git a/games/soccar/soccar_Data/26275.txt b/games/soccar/soccar_Data/26275.txt deleted file mode 100644 index d20eb8a..0000000 --- a/games/soccar/soccar_Data/26275.txt +++ /dev/null @@ -1,67 +0,0 @@ -[04/26/2026 06:06:00] Configured dedicated match reporting for match id 126 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:06:00] Starting server at port 26275 -[04/26/2026 06:06:33] Dedicated match PATCH success: 200 {"ok":true,"id":126} -[04/26/2026 06:06:34] Game started On Server -[04/26/2026 06:06:36] Dedicated match PATCH success: 200 {"ok":true,"id":126} -[04/26/2026 06:06:46] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:06:46] launching puck at (-0.04, -5.00) with (3.12, 348.44) force -[04/26/2026 06:06:54] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:06:54] launching puck at (4.03, -2.96) with (-280.75, 206.40) force -[04/26/2026 06:07:00] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:00] launching puck at (1.77, -4.67) with (-123.66, 325.77) force -[04/26/2026 06:07:08] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:08] launching puck at (-1.83, -4.65) with (127.79, 324.17) force -[04/26/2026 06:07:14] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:14] launching puck at (0.08, -5.00) with (-5.72, 348.41) force -[04/26/2026 06:07:21] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:21] launching puck at (0.86, 4.93) with (-59.59, -343.32) force -[04/26/2026 06:07:29] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:29] launching puck at (0.82, -4.93) with (-57.21, 343.72) force -[04/26/2026 06:07:34] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:34] launching puck at (-1.79, 4.67) with (124.83, -325.33) force -[04/26/2026 06:07:45] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:45] launching puck at (-1.44, -4.79) with (100.11, 333.76) force -[04/26/2026 06:07:49] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:49] launching puck at (-4.96, -0.65) with (345.48, 45.45) force -[04/26/2026 06:08:02] force = 70 * 0.6570541 = 45.99379 -[04/26/2026 06:08:02] launching puck at (2.31, 0.01) with (-106.07, -0.29) force -[04/26/2026 06:08:07] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:07] launching puck at (-0.87, 4.92) with (60.73, -343.12) force -[04/26/2026 06:08:12] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:12] launching puck at (2.24, 4.47) with (-156.24, -311.46) force -[04/26/2026 06:08:17] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:17] launching puck at (1.90, 4.62) with (-132.58, -322.25) force -[04/26/2026 06:08:26] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:26] launching puck at (4.34, -2.48) with (-302.69, 172.61) force -[04/26/2026 06:08:31] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:31] launching puck at (2.64, 4.25) with (-184.09, -295.86) force -[04/26/2026 06:08:38] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:38] launching puck at (5.00, 0.13) with (-348.34, -8.80) force -[04/26/2026 06:08:42] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:42] launching puck at (4.60, -1.97) with (-320.36, 137.08) force -[04/26/2026 06:08:48] force = 70 * 0.969283 = 67.84982 -[04/26/2026 06:08:48] launching puck at (-0.87, -4.63) with (58.70, 314.10) force -[04/26/2026 06:08:54] force = 70 * 0.9030666 = 63.21466 -[04/26/2026 06:08:54] launching puck at (3.29, 2.31) with (-208.05, -145.87) force -[04/26/2026 06:09:02] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:09:02] launching puck at (2.47, -4.35) with (-172.01, 303.04) force -[04/26/2026 06:09:08] force = 70 * 0.8743545 = 61.20481 -[04/26/2026 06:09:08] launching puck at (-2.01, 3.17) with (123.05, -193.94) force -[04/26/2026 06:09:14] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:09:14] launching puck at (4.66, 1.81) with (-324.79, -126.21) force -[04/26/2026 06:09:19] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:09:19] launching puck at (-0.08, 5.00) with (5.88, -348.40) force -[04/26/2026 06:09:25] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:09:25] launching puck at (1.51, 4.77) with (-105.15, -332.21) force -[04/26/2026 06:09:31] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:09:31] launching puck at (-1.48, 4.78) with (103.13, -332.84) force -[04/26/2026 06:09:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:09:36] launching puck at (-4.69, -1.75) with (326.52, 121.69) force -[04/26/2026 06:09:47] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:09:47] launching puck at (-0.01, -5.00) with (0.76, 348.45) force -[04/26/2026 06:09:54] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:09:54] launching puck at (3.34, -3.72) with (-232.54, 259.51) force -[04/26/2026 06:10:02] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:10:02] launching puck at (-2.35, -4.41) with (163.76, 307.57) force -[04/26/2026 06:10:03] Dedicated match PATCH success: 200 {"ok":true,"id":126} -[04/26/2026 06:10:06] Dedicated match PATCH success: 200 {"ok":true,"id":126,"winner_id":24,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26291.txt b/games/soccar/soccar_Data/26291.txt deleted file mode 100644 index c43ccc0..0000000 --- a/games/soccar/soccar_Data/26291.txt +++ /dev/null @@ -1,120 +0,0 @@ -[04/24/2026 19:29:33] Configured dedicated match reporting for match id 92 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/24/2026 19:29:33] Starting server at port 26291 -[04/24/2026 19:29:38] Dedicated match PATCH success: 200 {"ok":true,"id":92} -[04/24/2026 19:29:39] Game started On Server -[04/24/2026 19:29:39] Dedicated match PATCH success: 200 {"ok":true,"id":92} -[04/24/2026 19:29:41] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:29:41] launching puck at (-0.24, -4.99) with (16.98, 348.04) force -[04/24/2026 19:29:48] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:29:48] launching puck at (-3.66, 3.41) with (255.10, -237.36) force -[04/24/2026 19:29:54] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:29:54] launching puck at (-0.99, -4.90) with (68.73, 341.61) force -[04/24/2026 19:29:59] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:29:59] launching puck at (-1.18, 4.86) with (82.41, -338.57) force -[04/24/2026 19:30:06] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:30:06] launching puck at (-5.00, 0.06) with (348.43, -3.84) force -[04/24/2026 19:30:11] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:30:11] launching puck at (-2.45, 4.36) with (170.80, -303.72) force -[04/24/2026 19:30:16] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:30:16] launching puck at (-1.68, -4.71) with (116.73, 328.32) force -[04/24/2026 19:30:22] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:30:22] launching puck at (-1.88, 4.63) with (131.31, -322.77) force -[04/24/2026 19:30:29] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:30:29] launching puck at (2.04, -4.56) with (-142.37, 318.04) force -[04/24/2026 19:30:35] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:30:35] launching puck at (-0.30, 4.99) with (20.98, -347.82) force -[04/24/2026 19:30:41] force = 70 * 0.899351 = 62.95457 -[04/24/2026 19:30:41] launching puck at (3.84, -1.06) with (-241.80, 66.58) force -[04/24/2026 19:30:52] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:30:52] launching puck at (2.34, -4.42) with (-162.94, 308.01) force -[04/24/2026 19:30:57] force = 70 * 0.7131259 = 49.91881 -[04/24/2026 19:30:57] launching puck at (2.53, -0.62) with (-126.37, 30.78) force -[04/24/2026 19:31:03] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:31:03] launching puck at (2.14, 4.52) with (-149.30, -314.85) force -[04/24/2026 19:31:13] force = 70 * 0.7542991 = 52.80094 -[04/24/2026 19:31:13] launching puck at (1.77, 2.24) with (-93.35, -118.16) force -[04/24/2026 19:31:18] force = 70 * 0.9270084 = 64.89059 -[04/24/2026 19:31:18] launching puck at (-3.85, 1.83) with (249.65, -118.46) force -[04/24/2026 19:31:22] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:31:22] launching puck at (-4.66, -1.81) with (324.75, 126.33) force -[04/24/2026 19:31:29] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:31:29] launching puck at (0.63, 4.96) with (-43.89, -345.68) force -[04/24/2026 19:31:34] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:31:34] launching puck at (-0.26, 4.99) with (18.03, -347.99) force -[04/24/2026 19:31:40] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:31:40] launching puck at (-0.12, 5.00) with (8.10, -348.36) force -[04/24/2026 19:31:47] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:31:47] launching puck at (1.51, -4.77) with (-105.08, 332.23) force -[04/24/2026 19:31:57] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:31:57] launching puck at (-0.33, 4.99) with (22.82, -347.71) force -[04/24/2026 19:32:03] force = 70 * 0.9610584 = 67.27409 -[04/24/2026 19:32:03] launching puck at (4.61, -0.22) with (-310.41, 15.04) force -[04/24/2026 19:32:07] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:32:07] launching puck at (1.23, 4.85) with (-85.85, -337.71) force -[04/24/2026 19:32:11] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:32:11] launching puck at (1.27, -4.84) with (-88.30, 337.08) force -[04/24/2026 19:32:15] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:32:15] launching puck at (4.83, 1.31) with (-336.27, -91.32) force -[04/24/2026 19:32:20] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:32:20] launching puck at (3.63, -3.44) with (-252.63, 239.99) force -[04/24/2026 19:32:25] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:32:25] launching puck at (4.86, -1.19) with (-338.38, 83.20) force -[04/24/2026 19:32:30] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:32:30] launching puck at (-2.14, -4.52) with (148.87, 315.05) force -[04/24/2026 19:32:37] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:32:37] launching puck at (2.62, 4.26) with (-182.47, -296.86) force -[04/24/2026 19:32:42] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:32:42] launching puck at (-1.67, -4.71) with (116.35, 328.46) force -[04/24/2026 19:32:48] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:32:48] launching puck at (-1.75, -4.68) with (121.99, 326.40) force -[04/24/2026 19:32:55] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:32:55] launching puck at (-0.41, 4.98) with (28.73, -347.27) force -[04/24/2026 19:33:01] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:33:01] launching puck at (-0.25, 4.99) with (17.20, -348.03) force -[04/24/2026 19:33:08] force = 70 * 0.7306991 = 51.14894 -[04/24/2026 19:33:08] launching puck at (0.51, 2.66) with (-25.94, -136.04) force -[04/24/2026 19:33:12] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:33:12] launching puck at (0.62, 4.96) with (-43.29, -345.75) force -[04/24/2026 19:33:17] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:33:17] launching puck at (-2.16, 4.51) with (150.79, -314.13) force -[04/24/2026 19:33:21] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:33:21] launching puck at (-0.04, 5.00) with (3.10, -348.44) force -[04/24/2026 19:33:27] force = 70 * 0.8626057 = 60.3824 -[04/24/2026 19:33:27] launching puck at (-3.65, 0.18) with (220.10, -11.14) force -[04/24/2026 19:33:38] force = 70 * 0.8889005 = 62.22304 -[04/24/2026 19:33:38] launching puck at (1.38, 3.63) with (-85.65, -226.06) force -[04/24/2026 19:33:44] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:33:44] launching puck at (0.10, -5.00) with (-7.23, 348.38) force -[04/24/2026 19:33:54] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:33:54] launching puck at (4.99, 0.34) with (-347.63, -24.01) force -[04/24/2026 19:33:59] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:33:59] launching puck at (-0.13, -5.00) with (9.14, 348.33) force -[04/24/2026 19:34:04] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:34:04] launching puck at (-0.75, 4.94) with (52.27, -344.51) force -[04/24/2026 19:34:09] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:34:09] launching puck at (-4.95, 0.68) with (345.23, -47.27) force -[04/24/2026 19:34:15] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:34:15] launching puck at (0.86, 4.93) with (-59.93, -343.26) force -[04/24/2026 19:34:23] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:34:23] launching puck at (-0.57, -4.97) with (39.57, 346.20) force -[04/24/2026 19:34:30] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:34:30] launching puck at (0.12, 5.00) with (-8.13, -348.36) force -[04/24/2026 19:34:36] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:34:36] launching puck at (3.82, -3.23) with (-265.92, 225.19) force -[04/24/2026 19:34:41] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:34:41] launching puck at (-3.58, 3.49) with (249.36, -243.40) force -[04/24/2026 19:34:46] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:34:46] launching puck at (-1.76, -4.68) with (122.69, 326.14) force -[04/24/2026 19:34:54] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:34:54] launching puck at (-1.87, -4.64) with (130.18, 323.22) force -[04/24/2026 19:34:59] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:34:59] launching puck at (1.04, -4.89) with (-72.83, 340.76) force -[04/24/2026 19:35:06] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:35:06] launching puck at (4.78, 1.45) with (-333.42, -101.24) force -[04/24/2026 19:35:10] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:35:10] launching puck at (4.64, -1.86) with (-323.36, 129.85) force -[04/24/2026 19:35:12] Dedicated match PATCH success: 200 {"ok":true,"id":92} -[04/24/2026 19:35:13] Dedicated match PATCH success: 200 {"ok":true,"id":92,"winner_id":9,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} -[04/26/2026 06:38:05] Configured dedicated match reporting for match id 175 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:38:05] Starting server at port 26291 -[04/26/2026 06:38:50] Dedicated match PATCH success: 200 {"ok":true,"id":175} diff --git a/games/soccar/soccar_Data/26292.txt b/games/soccar/soccar_Data/26292.txt deleted file mode 100644 index 29f551d..0000000 --- a/games/soccar/soccar_Data/26292.txt +++ /dev/null @@ -1,107 +0,0 @@ -[04/26/2026 06:39:17] Configured dedicated match reporting for match id 176 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:39:17] Starting server at port 26292 -[04/26/2026 06:39:23] Game started On Server -[04/26/2026 06:39:24] Dedicated match PATCH success: 200 {"ok":true,"id":176} -[04/26/2026 06:39:24] Dedicated match PATCH success: 200 {"ok":true,"id":176} -[04/26/2026 06:39:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:27] launching puck at (0.02, -5.00) with (-1.56, 348.45) force -[04/26/2026 06:39:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:36] launching puck at (1.60, 4.74) with (-111.80, -330.03) force -[04/26/2026 06:39:42] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:42] launching puck at (2.29, -4.45) with (-159.45, 309.83) force -[04/26/2026 06:39:51] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:51] launching puck at (-0.42, 4.98) with (29.22, -347.23) force -[04/26/2026 06:39:56] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:56] launching puck at (-4.58, -2.00) with (319.38, 139.34) force -[04/26/2026 06:40:05] force = 70 * 0.9117298 = 63.82108 -[04/26/2026 06:40:05] launching puck at (4.05, 0.66) with (-258.48, -42.42) force -[04/26/2026 06:40:15] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:40:15] launching puck at (-0.68, -4.95) with (47.41, 345.21) force -[04/26/2026 06:40:23] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:40:23] launching puck at (-2.07, 4.55) with (144.45, -317.10) force -[04/26/2026 06:40:29] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:40:29] launching puck at (-1.79, -4.67) with (125.03, 325.25) force -[04/26/2026 06:40:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:40:36] launching puck at (-3.44, -3.63) with (239.51, 253.09) force -[04/26/2026 06:40:43] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:40:43] launching puck at (-5.00, -0.14) with (348.31, 9.94) force -[04/26/2026 06:40:50] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:40:50] launching puck at (-2.95, -4.04) with (205.55, 281.37) force -[04/26/2026 06:40:56] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:40:56] launching puck at (-2.86, -4.10) with (199.60, 285.62) force -[04/26/2026 06:41:04] force = 70 * 0.9730068 = 68.11048 -[04/26/2026 06:41:04] launching puck at (1.71, 4.43) with (-116.55, -301.83) force -[04/26/2026 06:41:09] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:41:09] launching puck at (-4.59, -1.99) with (319.72, 138.57) force -[04/26/2026 06:41:15] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:41:15] launching puck at (1.37, 4.81) with (-95.28, -335.17) force -[04/26/2026 06:41:20] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:41:20] launching puck at (-0.03, -5.00) with (1.95, 348.45) force -[04/26/2026 06:41:30] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:41:30] launching puck at (-0.69, 4.95) with (48.12, -345.11) force -[04/26/2026 06:41:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:41:36] launching puck at (-4.88, -1.07) with (340.38, 74.59) force -[04/26/2026 06:41:49] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:41:49] launching puck at (-2.51, 4.32) with (174.93, -301.36) force -[04/26/2026 06:41:54] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:41:54] launching puck at (-3.16, -3.87) with (220.25, 270.02) force -[04/26/2026 06:42:00] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:42:00] launching puck at (-4.99, -0.25) with (348.00, 17.68) force -[04/26/2026 06:42:06] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:42:06] launching puck at (-4.57, 2.03) with (318.53, -141.28) force -[04/26/2026 06:42:13] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:42:13] launching puck at (2.07, -4.55) with (-144.45, 317.10) force -[04/26/2026 06:42:19] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:42:19] launching puck at (1.08, -4.88) with (-75.33, 340.21) force -[04/26/2026 06:42:26] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:42:26] launching puck at (-0.12, 5.00) with (8.51, -348.35) force -[04/26/2026 06:42:33] force = 70 * 0.9738054 = 68.16637 -[04/26/2026 06:42:33] launching puck at (4.02, -2.55) with (-274.05, 173.63) force -[04/26/2026 06:42:39] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:42:39] launching puck at (0.69, 4.95) with (-48.03, -345.13) force -[04/26/2026 06:42:44] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:42:44] launching puck at (-1.48, -4.78) with (103.06, 332.86) force -[04/26/2026 06:42:52] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:42:52] launching puck at (2.13, 4.52) with (-148.67, -315.15) force -[04/26/2026 06:42:58] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:42:58] launching puck at (0.60, -4.96) with (-41.96, 345.92) force -[04/26/2026 06:43:06] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:43:06] launching puck at (0.13, -5.00) with (-8.84, 348.34) force -[04/26/2026 06:43:16] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:43:16] launching puck at (-0.05, 5.00) with (3.77, -348.43) force -[04/26/2026 06:43:22] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:43:22] launching puck at (-3.20, -3.84) with (223.33, 267.47) force -[04/26/2026 06:43:35] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:43:35] launching puck at (0.36, 4.99) with (-24.88, -347.56) force -[04/26/2026 06:43:41] force = 70 * 0.9938475 = 69.56933 -[04/26/2026 06:43:41] launching puck at (4.74, 1.54) with (-329.49, -107.28) force -[04/26/2026 06:43:47] force = 70 * 0.8599769 = 60.19839 -[04/26/2026 06:43:47] launching puck at (1.56, 3.27) with (-94.15, -197.01) force -[04/26/2026 06:43:53] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:43:53] launching puck at (-3.40, -3.67) with (236.87, 255.56) force -[04/26/2026 06:44:00] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:44:00] launching puck at (3.14, 3.89) with (-218.96, -271.06) force -[04/26/2026 06:44:06] force = 70 * 0.9654102 = 67.57871 -[04/26/2026 06:44:06] launching puck at (1.90, 4.26) with (-128.71, -287.94) force -[04/26/2026 06:44:17] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:44:17] launching puck at (2.85, 4.11) with (-198.72, -286.23) force -[04/26/2026 06:44:30] force = 70 * 0.9623039 = 67.36127 -[04/26/2026 06:44:30] launching puck at (4.37, -1.53) with (-294.62, 102.96) force -[04/26/2026 06:44:39] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:44:39] launching puck at (1.13, 4.87) with (-79.01, -339.38) force -[04/26/2026 06:44:46] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:44:46] launching puck at (0.19, -5.00) with (-13.57, 348.19) force -[04/26/2026 06:44:53] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:44:53] launching puck at (-2.87, 4.09) with (200.11, -285.27) force -[04/26/2026 06:44:59] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:44:59] launching puck at (-1.21, -4.85) with (84.32, 338.10) force -[04/26/2026 06:45:08] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:45:08] launching puck at (-4.56, 2.06) with (317.53, -143.50) force -[04/26/2026 06:45:13] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:45:13] launching puck at (-0.63, -4.96) with (44.05, 345.66) force -[04/26/2026 06:45:26] force = 70 * 0.9481202 = 66.36842 -[04/26/2026 06:45:26] launching puck at (3.41, 2.91) with (-226.06, -193.12) force -[04/26/2026 06:45:30] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:45:30] launching puck at (0.60, -4.96) with (-41.80, 345.94) force -[04/26/2026 06:45:30] Dedicated match PATCH success: 200 {"ok":true,"id":176} -[04/26/2026 06:45:31] Dedicated match PATCH success: 200 {"ok":true,"id":176,"winner_id":18,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26293.txt b/games/soccar/soccar_Data/26293.txt deleted file mode 100644 index 0f8dc70..0000000 --- a/games/soccar/soccar_Data/26293.txt +++ /dev/null @@ -1,29 +0,0 @@ -[04/26/2026 06:19:10] Configured dedicated match reporting for match id 146 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:19:10] Starting server at port 26293 -[04/26/2026 06:19:31] Dedicated match PATCH success: 200 {"ok":true,"id":146} -[04/26/2026 06:19:34] Game started On Server -[04/26/2026 06:19:36] Dedicated match PATCH success: 200 {"ok":true,"id":146} -[04/26/2026 06:19:37] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:37] launching puck at (0.26, -4.99) with (-17.81, 348.00) force -[04/26/2026 06:19:44] force = 70 * 0.9774723 = 68.42307 -[04/26/2026 06:19:44] launching puck at (-3.24, -3.54) with (221.86, 242.14) force -[04/26/2026 06:19:59] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:59] launching puck at (0.52, -4.97) with (-36.03, 346.59) force -[04/26/2026 06:20:06] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:06] launching puck at (-4.97, 0.58) with (346.10, -40.39) force -[04/26/2026 06:20:13] force = 70 * 0.7629558 = 53.40691 -[04/26/2026 06:20:13] launching puck at (-2.32, -1.75) with (123.79, 93.71) force -[04/26/2026 06:20:22] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:22] launching puck at (-0.33, -4.99) with (22.73, 347.71) force -[04/26/2026 06:20:28] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:28] launching puck at (0.03, -5.00) with (-2.05, 348.45) force -[04/26/2026 06:20:36] force = 70 * 0.920242 = 64.41694 -[04/26/2026 06:20:36] launching puck at (-1.66, -3.85) with (106.95, 247.77) force -[04/26/2026 06:20:41] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:41] launching puck at (-0.02, -5.00) with (1.64, 348.45) force -[04/26/2026 06:20:45] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:45] launching puck at (-1.22, -4.85) with (85.01, 337.93) force -[04/26/2026 06:20:51] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:51] launching puck at (0.16, -5.00) with (-10.97, 348.28) force -[04/26/2026 06:20:52] Dedicated match PATCH success: 200 {"ok":true,"id":146} -[04/26/2026 06:20:53] Dedicated match PATCH success: 200 {"ok":true,"id":146,"winner_id":9,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26342.txt b/games/soccar/soccar_Data/26342.txt deleted file mode 100644 index cf21c38..0000000 --- a/games/soccar/soccar_Data/26342.txt +++ /dev/null @@ -1,135 +0,0 @@ -[04/26/2026 06:40:42] Configured dedicated match reporting for match id 178 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:40:42] Starting server at port 26342 -[04/26/2026 06:40:47] Dedicated match PATCH success: 200 {"ok":true,"id":178} -[04/26/2026 06:40:51] Game started On Server -[04/26/2026 06:40:52] Dedicated match PATCH success: 200 {"ok":true,"id":178} -[04/26/2026 06:40:54] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:40:54] launching puck at (-0.29, -4.99) with (20.18, 347.87) force -[04/26/2026 06:41:01] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:41:01] launching puck at (-3.19, 3.85) with (222.04, -268.55) force -[04/26/2026 06:41:09] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:41:09] launching puck at (-2.76, -4.17) with (192.26, 290.61) force -[04/26/2026 06:41:18] force = 70 * 0.8970313 = 62.79219 -[04/26/2026 06:41:18] launching puck at (-3.78, -1.20) with (237.07, 75.36) force -[04/26/2026 06:41:23] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:41:23] launching puck at (-2.21, -4.49) with (153.79, 312.68) force -[04/26/2026 06:41:28] force = 70 * 0.7471675 = 52.30173 -[04/26/2026 06:41:28] launching puck at (-0.24, -2.80) with (12.73, 146.28) force -[04/26/2026 06:41:33] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:41:33] launching puck at (-0.49, 4.98) with (33.98, -346.79) force -[04/26/2026 06:41:40] force = 70 * 0.6047299 = 42.33109 -[04/26/2026 06:41:40] launching puck at (1.97, -0.59) with (-83.41, 25.03) force -[04/26/2026 06:41:45] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:41:45] launching puck at (-4.97, 0.51) with (346.64, -35.55) force -[04/26/2026 06:41:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:41:55] launching puck at (4.00, -3.00) with (-278.83, 208.98) force -[04/26/2026 06:42:02] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:42:02] launching puck at (-0.13, -5.00) with (9.17, 348.33) force -[04/26/2026 06:42:09] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:42:09] launching puck at (4.16, 2.78) with (-289.79, -193.50) force -[04/26/2026 06:42:15] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:42:15] launching puck at (-3.14, -3.89) with (218.72, 271.25) force -[04/26/2026 06:42:21] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:42:21] launching puck at (-4.79, -1.42) with (334.16, 98.77) force -[04/26/2026 06:42:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:42:27] launching puck at (-2.58, -4.28) with (180.14, 298.28) force -[04/26/2026 06:42:31] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:42:31] launching puck at (-4.87, 1.12) with (339.66, -77.77) force -[04/26/2026 06:42:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:42:55] launching puck at (-2.12, 4.53) with (147.41, -315.74) force -[04/26/2026 06:43:02] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:43:02] launching puck at (-4.89, -1.03) with (340.99, 71.73) force -[04/26/2026 06:43:06] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:43:06] launching puck at (0.34, 4.99) with (-23.78, -347.64) force -[04/26/2026 06:43:12] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:43:12] launching puck at (2.55, -4.30) with (-177.54, 299.83) force -[04/26/2026 06:43:18] force = 70 * 0.9685495 = 67.79847 -[04/26/2026 06:43:18] launching puck at (4.58, 1.07) with (-310.33, -72.79) force -[04/26/2026 06:43:33] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:43:33] launching puck at (-4.58, -2.01) with (319.03, 140.13) force -[04/26/2026 06:43:49] force = 70 * 0.6884198 = 48.18938 -[04/26/2026 06:43:49] launching puck at (1.23, -2.14) with (-59.37, 103.11) force -[04/26/2026 06:44:00] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:44:00] launching puck at (3.78, -3.27) with (-263.37, 228.15) force -[04/26/2026 06:44:06] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:44:06] launching puck at (0.02, 5.00) with (-1.43, -348.45) force -[04/26/2026 06:44:12] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:44:12] launching puck at (-2.40, 4.38) with (167.53, -305.54) force -[04/26/2026 06:44:20] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:44:20] launching puck at (-2.39, 4.39) with (166.65, -306.02) force -[04/26/2026 06:44:29] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:44:29] launching puck at (-3.15, -3.88) with (219.43, 270.69) force -[04/26/2026 06:44:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:44:36] launching puck at (-3.39, -3.68) with (236.06, 256.31) force -[04/26/2026 06:44:51] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:44:51] launching puck at (-1.60, -4.74) with (111.49, 330.13) force -[04/26/2026 06:45:00] force = 70 * 0.8424637 = 58.97246 -[04/26/2026 06:45:00] launching puck at (-1.32, -3.22) with (78.14, 189.87) force -[04/26/2026 06:45:08] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:45:08] launching puck at (-0.11, -5.00) with (7.84, 348.37) force -[04/26/2026 06:45:15] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:45:15] launching puck at (-2.24, 4.47) with (155.93, -311.62) force -[04/26/2026 06:45:20] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:45:20] launching puck at (-0.60, 4.96) with (41.91, -345.92) force -[04/26/2026 06:45:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:45:27] launching puck at (3.74, 3.32) with (-260.83, -231.06) force -[04/26/2026 06:45:31] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:45:31] launching puck at (4.60, -1.95) with (-320.72, 136.22) force -[04/26/2026 06:45:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:45:36] launching puck at (3.04, 3.97) with (-211.68, -276.79) force -[04/26/2026 06:45:44] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:45:44] launching puck at (0.18, -5.00) with (-12.79, 348.22) force -[04/26/2026 06:45:50] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:45:50] launching puck at (-2.26, 4.46) with (157.42, -310.87) force -[04/26/2026 06:46:08] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:46:08] launching puck at (-1.58, -4.74) with (110.12, 330.60) force -[04/26/2026 06:46:17] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:46:17] launching puck at (-4.12, 2.83) with (287.38, -197.05) force -[04/26/2026 06:46:39] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:46:39] launching puck at (-4.93, -0.82) with (343.75, 57.08) force -[04/26/2026 06:46:45] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:46:45] launching puck at (-0.51, -4.97) with (35.46, 346.64) force -[04/26/2026 06:46:50] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:46:50] launching puck at (-4.38, 2.41) with (305.31, -167.94) force -[04/26/2026 06:46:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:46:55] launching puck at (-2.09, -4.54) with (145.56, 316.59) force -[04/26/2026 06:47:01] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:47:01] launching puck at (-4.95, -0.72) with (344.82, 50.16) force -[04/26/2026 06:47:07] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:47:07] launching puck at (-4.29, -2.56) with (299.14, 178.70) force -[04/26/2026 06:47:12] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:47:12] launching puck at (2.13, 4.52) with (-148.33, -315.31) force -[04/26/2026 06:47:23] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:47:23] launching puck at (1.06, 4.89) with (-73.55, -340.60) force -[04/26/2026 06:47:29] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:47:29] launching puck at (0.21, 5.00) with (-14.76, -348.14) force -[04/26/2026 06:47:40] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:47:40] launching puck at (-3.61, -3.46) with (251.63, 241.05) force -[04/26/2026 06:47:50] force = 70 * 0.6838707 = 47.87095 -[04/26/2026 06:47:50] launching puck at (-2.44, -0.04) with (117.02, 1.69) force -[04/26/2026 06:47:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:47:55] launching puck at (-4.98, -0.48) with (346.85, 33.34) force -[04/26/2026 06:48:09] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:48:09] launching puck at (-1.51, 4.77) with (105.41, -332.13) force -[04/26/2026 06:48:15] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:48:15] launching puck at (-4.91, 0.96) with (341.98, -66.84) force -[04/26/2026 06:48:25] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:48:25] launching puck at (-4.83, -1.29) with (336.74, 89.59) force -[04/26/2026 06:48:35] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:48:35] launching puck at (0.04, 5.00) with (-3.13, -348.44) force -[04/26/2026 06:48:42] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:48:42] launching puck at (-0.52, 4.97) with (36.16, -346.57) force -[04/26/2026 06:48:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:48:55] launching puck at (-0.06, -5.00) with (4.19, 348.43) force -[04/26/2026 06:49:01] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:49:01] launching puck at (-3.44, 3.62) with (240.07, -252.56) force -[04/26/2026 06:49:09] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:49:09] launching puck at (2.04, -4.56) with (-142.34, 318.05) force -[04/26/2026 06:49:15] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:49:15] launching puck at (-0.13, 5.00) with (9.19, -348.33) force -[04/26/2026 06:49:20] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:49:20] launching puck at (-1.74, -4.69) with (121.19, 326.70) force -[04/26/2026 06:49:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:49:27] launching puck at (-2.28, 4.45) with (158.93, -310.10) force -[04/26/2026 06:49:28] Dedicated match PATCH success: 200 {"ok":true,"id":178} -[04/26/2026 06:49:29] Dedicated match PATCH success: 200 {"ok":true,"id":178,"winner_id":22,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26343.txt b/games/soccar/soccar_Data/26343.txt deleted file mode 100644 index f5b5543..0000000 --- a/games/soccar/soccar_Data/26343.txt +++ /dev/null @@ -1,35 +0,0 @@ -[04/25/2026 05:57:56] Configured dedicated match reporting for match id 101 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/25/2026 05:57:56] Starting server at port 26343 -[04/25/2026 05:58:03] Dedicated match PATCH success: 200 {"ok":true,"id":101} -[04/25/2026 05:58:10] Game started On Server -[04/25/2026 05:58:11] Dedicated match PATCH success: 200 {"ok":true,"id":101} -[04/25/2026 05:58:14] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 05:58:14] launching puck at (0.06, -5.00) with (-3.86, 348.43) force -[04/25/2026 05:58:26] force = 70 * 0.9676068 = 67.73248 -[04/25/2026 05:58:26] launching puck at (-2.06, -4.21) with (139.51, 285.47) force -[04/25/2026 05:58:33] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 05:58:33] launching puck at (-4.99, 0.32) with (347.73, -22.43) force -[04/25/2026 05:58:40] force = 70 * 0.9592086 = 67.1446 -[04/25/2026 05:58:40] launching puck at (-0.54, -4.57) with (36.44, 306.67) force -[04/25/2026 05:58:47] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 05:58:47] launching puck at (2.27, -4.45) with (-158.30, 310.42) force -[04/25/2026 05:58:54] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 05:58:54] launching puck at (-4.66, 1.82) with (324.68, -126.50) force -[04/25/2026 05:58:58] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 05:58:58] launching puck at (4.34, -2.49) with (-302.22, 173.44) force -[04/25/2026 05:59:06] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 05:59:06] launching puck at (-0.20, 5.00) with (14.16, -348.17) force -[04/25/2026 05:59:15] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 05:59:15] launching puck at (0.26, -4.99) with (-18.08, 347.98) force -[04/25/2026 05:59:25] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 05:59:25] launching puck at (-3.90, 3.13) with (271.49, -218.43) force -[04/25/2026 05:59:31] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 05:59:31] launching puck at (1.41, -4.80) with (-98.01, 334.39) force -[04/25/2026 05:59:42] force = 70 * 0.9299109 = 65.09377 -[04/25/2026 05:59:42] launching puck at (4.23, -0.70) with (-275.37, 45.71) force -[04/25/2026 05:59:49] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 05:59:49] launching puck at (2.98, -4.01) with (-207.76, 279.74) force -[04/25/2026 05:59:55] force = 70 * 0.98093 = 68.6651 -[04/25/2026 05:59:55] launching puck at (4.26, -2.29) with (-292.61, 157.26) force -[04/25/2026 06:00:17] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:00:17] launching puck at (-4.78, 1.48) with (332.84, -103.15) force diff --git a/games/soccar/soccar_Data/26348.txt b/games/soccar/soccar_Data/26348.txt deleted file mode 100644 index 8e408e6..0000000 --- a/games/soccar/soccar_Data/26348.txt +++ /dev/null @@ -1,2 +0,0 @@ -[04/26/2026 06:51:09] Configured dedicated match reporting for match id 199 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:51:09] Starting server at port 26348 diff --git a/games/soccar/soccar_Data/26357.txt b/games/soccar/soccar_Data/26357.txt deleted file mode 100644 index 2ec5da5..0000000 --- a/games/soccar/soccar_Data/26357.txt +++ /dev/null @@ -1,87 +0,0 @@ -[04/26/2026 06:50:54] Configured dedicated match reporting for match id 198 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:50:54] Starting server at port 26357 -[04/26/2026 06:51:02] Dedicated match PATCH success: 200 {"ok":true,"id":198} -[04/26/2026 06:51:04] Game started On Server -[04/26/2026 06:51:05] Dedicated match PATCH success: 200 {"ok":true,"id":198} -[04/26/2026 06:51:09] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:09] launching puck at (-0.19, -5.00) with (13.34, 348.20) force -[04/26/2026 06:51:15] force = 70 * 0.9845397 = 68.91779 -[04/26/2026 06:51:15] launching puck at (2.36, 4.27) with (-162.35, -294.37) force -[04/26/2026 06:51:21] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:21] launching puck at (-0.26, -4.99) with (17.78, 348.00) force -[04/26/2026 06:51:30] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:30] launching puck at (0.07, 5.00) with (-4.72, -348.42) force -[04/26/2026 06:51:40] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:40] launching puck at (1.68, -4.71) with (-116.80, 328.29) force -[04/26/2026 06:51:46] force = 70 * 0.9640157 = 67.48109 -[04/26/2026 06:51:46] launching puck at (-2.66, 3.82) with (179.47, -257.55) force -[04/26/2026 06:51:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:55] launching puck at (-4.83, -1.30) with (336.54, 90.34) force -[04/26/2026 06:52:00] force = 70 * 0.9011372 = 63.07961 -[04/26/2026 06:52:00] launching puck at (-3.23, 2.36) with (203.77, -148.91) force -[04/26/2026 06:52:07] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:52:07] launching puck at (-5.00, -0.15) with (348.29, 10.60) force -[04/26/2026 06:52:22] force = 70 * 0.9204993 = 64.43495 -[04/26/2026 06:52:22] launching puck at (-1.58, 3.88) with (101.91, -250.15) force -[04/26/2026 06:52:30] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:52:30] launching puck at (-0.57, -4.97) with (39.66, 346.19) force -[04/26/2026 06:52:36] force = 70 * 0.8004643 = 56.0325 -[04/26/2026 06:52:36] launching puck at (0.67, -3.09) with (-37.42, 173.17) force -[04/26/2026 06:52:43] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:52:43] launching puck at (-0.28, 4.99) with (19.50, -347.91) force -[04/26/2026 06:52:50] force = 70 * 0.8059832 = 56.41882 -[04/26/2026 06:52:50] launching puck at (2.23, -2.29) with (-126.08, 129.36) force -[04/26/2026 06:52:56] force = 70 * 0.9829998 = 68.80998 -[04/26/2026 06:52:56] launching puck at (2.55, 4.14) with (-175.27, -284.87) force -[04/26/2026 06:53:28] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:28] launching puck at (-1.53, 4.76) with (106.42, -331.80) force -[04/26/2026 06:53:35] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:35] launching puck at (-0.18, -5.00) with (12.24, 348.24) force -[04/26/2026 06:53:45] force = 70 * 0.9406374 = 65.84461 -[04/26/2026 06:53:45] launching puck at (2.37, 3.71) with (-155.87, -244.23) force -[04/26/2026 06:53:51] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:51] launching puck at (4.65, 1.83) with (-324.27, -127.55) force -[04/26/2026 06:53:55] force = 70 * 0.9452229 = 66.1656 -[04/26/2026 06:53:55] launching puck at (-2.12, 3.91) with (140.52, -258.66) force -[04/26/2026 06:54:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:54:03] launching puck at (-4.05, -2.93) with (282.47, 204.04) force -[04/26/2026 06:54:10] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:54:10] launching puck at (-1.52, 4.76) with (105.72, -332.03) force -[04/26/2026 06:54:15] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:54:15] launching puck at (-3.09, 3.93) with (215.31, -273.97) force -[04/26/2026 06:54:22] force = 70 * 0.6828654 = 47.80058 -[04/26/2026 06:54:22] launching puck at (2.05, 1.33) with (-97.84, -63.43) force -[04/26/2026 06:54:29] force = 70 * 0.9777756 = 68.44429 -[04/26/2026 06:54:29] launching puck at (-4.66, -1.16) with (318.99, 79.45) force -[04/26/2026 06:54:37] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:54:37] launching puck at (-1.76, -4.68) with (122.35, 326.27) force -[04/26/2026 06:54:43] force = 70 * 0.9639341 = 67.47539 -[04/26/2026 06:54:43] launching puck at (-3.29, 3.28) with (222.26, -221.55) force -[04/26/2026 06:54:58] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:54:58] launching puck at (-4.16, -2.78) with (289.82, 193.45) force -[04/26/2026 06:55:04] force = 70 * 0.9922054 = 69.45438 -[04/26/2026 06:55:04] launching puck at (-4.80, 1.28) with (333.11, -88.56) force -[04/26/2026 06:55:15] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:55:15] launching puck at (-0.58, 4.97) with (40.57, -346.08) force -[04/26/2026 06:55:21] force = 70 * 0.9408915 = 65.8624 -[04/26/2026 06:55:21] launching puck at (-4.21, 1.30) with (277.13, -85.40) force -[04/26/2026 06:55:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:55:27] launching puck at (-3.16, -3.88) with (220.00, 270.22) force -[04/26/2026 06:55:34] force = 70 * 0.9417523 = 65.92266 -[04/26/2026 06:55:34] launching puck at (4.33, -0.86) with (-285.25, 56.84) force -[04/26/2026 06:55:43] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:55:43] launching puck at (0.84, -4.93) with (-58.51, 343.51) force -[04/26/2026 06:55:51] force = 70 * 0.829169 = 58.04183 -[04/26/2026 06:55:51] launching puck at (3.13, -1.27) with (-181.51, 73.83) force -[04/26/2026 06:55:58] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:55:58] launching puck at (3.81, 3.24) with (-265.49, -225.69) force -[04/26/2026 06:56:04] force = 70 * 0.8887382 = 62.21167 -[04/26/2026 06:56:04] launching puck at (0.63, 3.83) with (-39.13, -238.42) force -[04/26/2026 06:56:13] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:56:13] launching puck at (-1.20, -4.85) with (83.67, 338.26) force -[04/26/2026 06:56:18] force = 70 * 0.8606772 = 60.24741 -[04/26/2026 06:56:18] launching puck at (-1.98, -3.05) with (119.20, 183.59) force -[04/26/2026 06:56:25] force = 70 * 0.5939147 = 41.57403 -[04/26/2026 06:56:25] launching puck at (1.90, -0.65) with (-79.06, 26.87) force -[04/26/2026 06:56:25] Dedicated match PATCH success: 200 {"ok":true,"id":198} -[04/26/2026 06:56:27] Dedicated match PATCH success: 200 {"ok":true,"id":198,"winner_id":10,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26361.txt b/games/soccar/soccar_Data/26361.txt deleted file mode 100644 index 62b2829..0000000 --- a/games/soccar/soccar_Data/26361.txt +++ /dev/null @@ -1,200 +0,0 @@ -[04/24/2026 19:27:29] Configured dedicated match reporting for match id 91 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/24/2026 19:27:30] Starting server at port 26361 -[04/24/2026 19:27:35] Dedicated match PATCH success: 200 {"ok":true,"id":91} -[04/24/2026 19:27:45] Game started On Server -[04/24/2026 19:27:46] Dedicated match PATCH success: 200 {"ok":true,"id":91} -[04/24/2026 19:27:52] force = 70 * 0.6369891 = 44.58924 -[04/24/2026 19:27:52] launching puck at (2.02, -0.89) with (-89.99, 39.91) force -[04/24/2026 19:27:56] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:27:56] launching puck at (0.26, 4.99) with (-18.10, -347.98) force -[04/24/2026 19:28:02] force = 70 * 0.5424913 = 37.97439 -[04/24/2026 19:28:02] launching puck at (1.22, -1.26) with (-46.46, 47.82) force -[04/24/2026 19:28:07] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:28:07] launching puck at (0.15, 5.00) with (-10.50, -348.29) force -[04/24/2026 19:28:14] force = 70 * 0.7028779 = 49.20145 -[04/24/2026 19:28:14] launching puck at (1.94, 1.66) with (-95.22, -81.54) force -[04/24/2026 19:28:18] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:28:18] launching puck at (0.09, 5.00) with (-6.46, -348.39) force -[04/24/2026 19:28:19] Dedicated match PATCH success: 200 {"ok":true,"id":91} -[04/24/2026 19:28:20] Dedicated match PATCH success: 200 {"ok":true,"id":91,"winner_id":9,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} -[04/25/2026 13:07:25] Configured dedicated match reporting for match id 111 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/25/2026 13:07:25] Starting server at port 26361 -[04/25/2026 13:07:28] Game started On Server -[04/25/2026 13:07:29] Dedicated match PATCH success: 200 {"ok":true,"id":111} -[04/25/2026 13:07:29] Dedicated match PATCH success: 200 {"ok":true,"id":111} -[04/25/2026 13:07:34] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:07:34] launching puck at (-0.02, -5.00) with (1.73, 348.45) force -[04/25/2026 13:07:45] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:07:45] launching puck at (-0.09, -5.00) with (6.15, 348.40) force -[04/25/2026 13:07:50] force = 70 * 0.4923051 = 34.46136 -[04/25/2026 13:07:50] launching puck at (-0.32, -1.49) with (10.96, 51.32) force -[04/25/2026 13:07:57] force = 70 * 0.4743133 = 33.20193 -[04/25/2026 13:07:57] launching puck at (1.30, -0.65) with (-43.08, 21.66) force -[04/25/2026 13:08:00] force = 70 * 0.2522022 = 17.65415 -[04/25/2026 13:08:00] launching puck at (0.47, -0.81) with (-8.23, 14.31) force -[04/25/2026 13:08:04] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:08:04] launching puck at (0.59, 4.96) with (-41.21, -346.01) force -[04/25/2026 13:08:10] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:08:10] launching puck at (-3.55, 3.52) with (247.45, -245.34) force -[04/25/2026 13:08:16] force = 70 * 0.8987271 = 62.91089 -[04/25/2026 13:08:16] launching puck at (3.94, 0.55) with (-247.80, -34.90) force -[04/25/2026 13:08:22] force = 70 * 0.6554978 = 45.88485 -[04/25/2026 13:08:22] launching puck at (-2.29, -0.24) with (104.87, 11.17) force -[04/25/2026 13:08:29] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:08:29] launching puck at (-1.23, -4.85) with (85.73, 337.74) force -[04/25/2026 13:08:38] force = 70 * 0.7465096 = 52.25567 -[04/25/2026 13:08:38] launching puck at (2.68, -0.84) with (-139.82, 43.69) force -[04/25/2026 13:08:43] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:08:43] launching puck at (0.06, 5.00) with (-4.13, -348.43) force -[04/25/2026 13:08:50] force = 70 * 0.7605947 = 53.24163 -[04/25/2026 13:08:50] launching puck at (2.51, 1.43) with (-133.78, -76.23) force -[04/25/2026 13:08:59] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:08:59] launching puck at (-2.16, 4.51) with (150.85, -314.11) force -[04/25/2026 13:09:09] force = 70 * 0.9515882 = 66.61117 -[04/25/2026 13:09:09] launching puck at (4.26, -1.51) with (-283.68, 100.29) force -[04/25/2026 13:09:14] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:09:14] launching puck at (1.16, 4.86) with (-81.18, -338.86) force -[04/25/2026 13:09:28] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:09:28] launching puck at (0.98, 4.90) with (-68.06, -341.74) force -[04/25/2026 13:09:39] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:09:39] launching puck at (-2.84, 4.11) with (198.05, -286.70) force -[04/25/2026 13:09:46] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:09:46] launching puck at (-4.50, -2.17) with (313.80, 151.48) force -[04/25/2026 13:09:57] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:09:57] launching puck at (2.62, -4.26) with (-182.30, 296.96) force -[04/25/2026 13:10:04] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:10:04] launching puck at (4.70, 1.71) with (-327.41, -119.25) force -[04/25/2026 13:10:09] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:10:09] launching puck at (0.33, -4.99) with (-23.06, 347.69) force -[04/25/2026 13:10:16] force = 70 * 0.8436754 = 59.05728 -[04/25/2026 13:10:16] launching puck at (-3.25, 1.29) with (191.66, -76.05) force -[04/25/2026 13:10:20] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:10:20] launching puck at (2.36, -4.41) with (-164.76, 307.04) force -[04/25/2026 13:10:27] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:10:27] launching puck at (2.80, -4.14) with (-195.38, 288.52) force -[04/25/2026 13:10:32] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:10:32] launching puck at (0.45, -4.98) with (-31.52, 347.02) force -[04/25/2026 13:10:38] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:10:38] launching puck at (-3.77, 3.28) with (262.99, -228.60) force -[04/25/2026 13:10:43] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:10:43] launching puck at (1.26, -4.84) with (-87.67, 337.24) force -[04/25/2026 13:10:48] force = 70 * 0.8426212 = 58.98349 -[04/25/2026 13:10:48] launching puck at (-1.05, -3.32) with (61.82, 195.91) force -[04/25/2026 13:10:54] force = 70 * 0.6648005 = 46.53603 -[04/25/2026 13:10:54] launching puck at (-2.35, -0.01) with (109.15, 0.68) force -[04/25/2026 13:10:59] force = 70 * 0.5026913 = 35.18839 -[04/25/2026 13:10:59] launching puck at (-0.47, -1.49) with (16.53, 52.59) force -[04/25/2026 13:11:08] force = 70 * 0.7186973 = 50.30881 -[04/25/2026 13:11:08] launching puck at (-2.18, -1.49) with (109.53, 74.90) force -[04/25/2026 13:11:12] force = 70 * 0.8295853 = 58.07097 -[04/25/2026 13:11:12] launching puck at (3.29, 0.77) with (-191.10, -44.64) force -[04/25/2026 13:11:18] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:11:18] launching puck at (-0.13, -5.00) with (8.92, 348.34) force -[04/25/2026 13:11:23] force = 70 * 0.9444938 = 66.11456 -[04/25/2026 13:11:23] launching puck at (-2.95, -3.32) with (195.13, 219.41) force -[04/25/2026 13:11:29] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:11:29] launching puck at (-2.25, -4.46) with (156.91, 311.12) force -[04/25/2026 13:11:33] force = 70 * 0.8701679 = 60.91175 -[04/25/2026 13:11:33] launching puck at (2.64, -2.61) with (-161.09, 158.97) force -[04/25/2026 13:11:39] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:11:39] launching puck at (-4.52, 2.15) with (314.66, -149.69) force -[04/25/2026 13:11:49] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:11:49] launching puck at (0.82, -4.93) with (-57.46, 343.68) force -[04/25/2026 13:11:54] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:11:54] launching puck at (-0.25, 4.99) with (17.39, -348.02) force -[04/25/2026 13:11:58] force = 70 * 0.9699057 = 67.8934 -[04/25/2026 13:11:58] launching puck at (1.31, -4.53) with (-89.20, 307.53) force -[04/25/2026 13:12:02] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:12:02] launching puck at (-0.04, 5.00) with (2.84, -348.44) force -[04/25/2026 13:12:10] force = 70 * 0.550969 = 38.56783 -[04/25/2026 13:12:10] launching puck at (1.26, -1.29) with (-48.53, 49.58) force -[04/25/2026 13:12:13] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:12:13] launching puck at (4.86, 1.16) with (-338.95, -80.83) force -[04/25/2026 13:12:18] force = 70 * 0.7762938 = 54.34056 -[04/25/2026 13:12:18] launching puck at (-0.67, -2.92) with (36.40, 158.61) force -[04/25/2026 13:12:25] force = 70 * 0.9709535 = 67.96674 -[04/25/2026 13:12:25] launching puck at (-4.73, -0.06) with (321.31, 4.33) force -[04/25/2026 13:12:30] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:12:30] launching puck at (-3.73, 3.33) with (260.02, -231.97) force -[04/25/2026 13:12:34] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:12:34] launching puck at (-4.33, 2.51) with (301.56, -174.58) force -[04/25/2026 13:12:43] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:12:43] launching puck at (-1.65, 4.72) with (114.99, -328.93) force -[04/25/2026 13:12:50] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:12:50] launching puck at (3.78, 3.28) with (-263.22, -228.33) force -[04/25/2026 13:13:00] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:13:00] launching puck at (-0.48, 4.98) with (33.55, -346.83) force -[04/25/2026 13:13:07] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:13:07] launching puck at (-3.28, 3.77) with (228.64, -262.95) force -[04/25/2026 13:13:15] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:13:15] launching puck at (0.05, -5.00) with (-3.57, 348.43) force -[04/25/2026 13:13:22] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:13:22] launching puck at (1.69, 4.71) with (-117.60, -328.01) force -[04/25/2026 13:13:27] force = 70 * 0.5738291 = 40.16804 -[04/25/2026 13:13:27] launching puck at (0.47, -1.85) with (-18.97, 74.49) force -[04/25/2026 13:13:34] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:13:34] launching puck at (4.26, 2.62) with (-296.96, -182.31) force -[04/25/2026 13:13:38] force = 70 * 0.9378517 = 65.64962 -[04/25/2026 13:13:38] launching puck at (0.08, 4.37) with (-5.07, -286.91) force -[04/25/2026 13:13:42] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:13:42] launching puck at (-0.89, 4.92) with (61.68, -342.95) force -[04/25/2026 13:13:48] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:13:48] launching puck at (-3.87, -3.17) with (269.60, 220.76) force -[04/25/2026 13:13:53] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:13:53] launching puck at (-3.07, 3.95) with (213.64, -275.28) force -[04/25/2026 13:14:06] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:14:06] launching puck at (-1.36, -4.81) with (94.66, 335.35) force -[04/25/2026 13:14:12] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:14:12] launching puck at (-2.85, -4.11) with (198.54, 286.36) force -[04/25/2026 13:14:23] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:14:23] launching puck at (1.45, 4.79) with (-100.74, -333.57) force -[04/25/2026 13:14:29] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:14:29] launching puck at (-2.39, -4.39) with (166.44, 306.14) force -[04/25/2026 13:14:36] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:14:36] launching puck at (-3.34, -3.72) with (232.61, 259.45) force -[04/25/2026 13:14:46] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:14:46] launching puck at (-0.44, 4.98) with (30.35, -347.13) force -[04/25/2026 13:14:53] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:14:53] launching puck at (2.79, -4.15) with (-194.54, 289.09) force -[04/25/2026 13:15:03] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:15:03] launching puck at (0.70, 4.95) with (-48.80, -345.02) force -[04/25/2026 13:15:16] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:15:16] launching puck at (1.30, -4.83) with (-90.44, 336.51) force -[04/25/2026 13:15:21] force = 70 * 0.6566216 = 45.96351 -[04/25/2026 13:15:21] launching puck at (-1.94, -1.24) with (89.38, 56.80) force -[04/25/2026 13:15:25] force = 70 * 0.8774804 = 61.42363 -[04/25/2026 13:15:25] launching puck at (-0.34, -3.77) with (21.12, 231.26) force -[04/25/2026 13:15:29] force = 70 * 0.5606543 = 39.2458 -[04/25/2026 13:15:29] launching puck at (-1.81, 0.39) with (70.91, -15.21) force -[04/25/2026 13:15:33] force = 70 * 0.7886163 = 55.20314 -[04/25/2026 13:15:33] launching puck at (-2.47, -1.84) with (136.32, 101.48) force -[04/25/2026 13:15:37] force = 70 * 0.6313046 = 44.19132 -[04/25/2026 13:15:37] launching puck at (-2.17, -0.25) with (95.70, 11.21) force -[04/25/2026 13:15:41] force = 70 * 0.8245705 = 57.71994 -[04/25/2026 13:15:41] launching puck at (-1.65, -2.90) with (95.43, 167.55) force -[04/25/2026 13:15:46] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:15:46] launching puck at (0.59, 4.97) with (-40.92, -346.04) force -[04/25/2026 13:15:51] force = 70 * 0.9173669 = 64.21568 -[04/25/2026 13:15:51] launching puck at (-1.03, -4.03) with (65.99, 258.89) force -[04/25/2026 13:15:57] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:15:57] launching puck at (-3.28, 3.77) with (228.68, -262.91) force -[04/25/2026 13:16:10] force = 70 * 0.2390346 = 16.73242 -[04/25/2026 13:16:10] launching puck at (-0.54, -0.74) with (9.10, 12.31) force -[04/25/2026 13:16:13] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:16:13] launching puck at (0.75, 4.94) with (-52.41, -344.49) force -[04/25/2026 13:16:18] force = 70 * 0.2571564 = 18.00095 -[04/25/2026 13:16:18] launching puck at (-0.46, -0.82) with (8.24, 14.83) force -[04/25/2026 13:16:21] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:16:21] launching puck at (1.00, 4.90) with (-69.53, -341.44) force -[04/25/2026 13:16:26] force = 70 * 0.7727522 = 54.09266 -[04/25/2026 13:16:26] launching puck at (-0.90, -2.83) with (48.57, 153.20) force -[04/25/2026 13:16:30] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:16:30] launching puck at (-2.18, -4.50) with (151.65, 313.72) force -[04/25/2026 13:16:38] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:16:38] launching puck at (-4.95, -0.71) with (344.96, 49.25) force -[04/25/2026 13:16:43] force = 70 * 0.6133164 = 42.93214 -[04/25/2026 13:16:43] launching puck at (1.33, -1.62) with (-56.89, 69.74) force -[04/25/2026 13:16:52] force = 70 * 0.9381137 = 65.66796 -[04/25/2026 13:16:52] launching puck at (-3.17, -3.01) with (208.24, 197.80) force -[04/25/2026 13:16:54] Dedicated match PATCH success: 200 {"ok":true,"id":111} -[04/25/2026 13:16:55] Dedicated match PATCH success: 200 {"ok":true,"id":111,"winner_id":16,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26362.txt b/games/soccar/soccar_Data/26362.txt deleted file mode 100644 index 9a0fd69..0000000 --- a/games/soccar/soccar_Data/26362.txt +++ /dev/null @@ -1,3 +0,0 @@ -[04/26/2026 06:48:48] Configured dedicated match reporting for match id 194 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:48:48] Starting server at port 26362 -[04/26/2026 06:49:26] Dedicated match PATCH success: 200 {"ok":true,"id":194} diff --git a/games/soccar/soccar_Data/26376.txt b/games/soccar/soccar_Data/26376.txt deleted file mode 100644 index e38402d..0000000 --- a/games/soccar/soccar_Data/26376.txt +++ /dev/null @@ -1,3 +0,0 @@ -[04/26/2026 06:08:00] Configured dedicated match reporting for match id 128 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:08:00] Starting server at port 26376 -[04/26/2026 06:08:38] Dedicated match PATCH success: 200 {"ok":true,"id":128} diff --git a/games/soccar/soccar_Data/26383.txt b/games/soccar/soccar_Data/26383.txt deleted file mode 100644 index 209094e..0000000 --- a/games/soccar/soccar_Data/26383.txt +++ /dev/null @@ -1,31 +0,0 @@ -[04/21/2026 10:28:08] Configured dedicated match reporting for match id 87 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/21/2026 10:28:08] Starting server at port 26383 -[04/21/2026 10:28:17] Game started On Server -[04/21/2026 10:28:18] Dedicated match PATCH success: 200 {"ok":true,"id":87} -[04/21/2026 10:28:19] Dedicated match PATCH success: 200 {"ok":true,"id":87} -[04/21/2026 10:28:19] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 10:28:19] launching puck at (-0.02, -5.00) with (1.54, 348.45) force -[04/21/2026 10:28:27] force = 70 * 0.6885447 = 48.19813 -[04/21/2026 10:28:27] launching puck at (0.05, -2.47) with (-2.52, 119.01) force -[04/21/2026 10:28:38] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 10:28:38] launching puck at (-0.11, -5.00) with (7.74, 348.37) force -[04/21/2026 10:28:44] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 10:28:44] launching puck at (4.49, 2.19) with (-313.20, -152.73) force -[04/21/2026 10:28:48] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 10:28:48] launching puck at (-3.69, -3.37) with (257.18, 235.11) force -[04/21/2026 10:28:54] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 10:28:54] launching puck at (-3.72, -3.34) with (259.37, 232.70) force -[04/21/2026 10:28:58] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 10:28:58] launching puck at (-4.96, -0.67) with (345.35, 46.43) force -[04/21/2026 10:29:02] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 10:29:02] launching puck at (-0.09, -5.00) with (5.97, 348.40) force -[04/21/2026 10:29:06] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 10:29:06] launching puck at (3.84, 3.21) with (-267.40, -223.43) force -[04/21/2026 10:29:10] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 10:29:10] launching puck at (-0.60, 4.96) with (42.16, -345.89) force -[04/21/2026 10:29:15] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 10:29:15] launching puck at (-1.29, -4.83) with (90.25, 336.56) force -[04/21/2026 10:29:20] force = 70 * 0.2545742 = 17.82019 -[04/21/2026 10:29:20] launching puck at (-0.94, 0.04) with (16.71, -0.79) force -[04/21/2026 10:29:25] force = 70 * 0.5864961 = 41.05473 -[04/21/2026 10:29:25] launching puck at (-0.64, -1.87) with (26.23, 76.70) force diff --git a/games/soccar/soccar_Data/26388.txt b/games/soccar/soccar_Data/26388.txt deleted file mode 100644 index 283f7a8..0000000 --- a/games/soccar/soccar_Data/26388.txt +++ /dev/null @@ -1,65 +0,0 @@ -[04/26/2026 06:21:13] Configured dedicated match reporting for match id 150 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:21:13] Starting server at port 26388 -[04/26/2026 06:21:22] Dedicated match PATCH success: 200 {"ok":true,"id":150} -[04/26/2026 06:21:24] Game started On Server -[04/26/2026 06:21:25] Dedicated match PATCH success: 200 {"ok":true,"id":150} -[04/26/2026 06:21:31] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:21:31] launching puck at (-0.07, -5.00) with (4.62, 348.42) force -[04/26/2026 06:21:39] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:21:39] launching puck at (-0.52, 4.97) with (36.40, -346.55) force -[04/26/2026 06:21:47] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:21:47] launching puck at (1.05, -4.89) with (-73.19, 340.68) force -[04/26/2026 06:21:53] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:21:53] launching puck at (4.60, 1.96) with (-320.62, -136.46) force -[04/26/2026 06:22:01] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:22:01] launching puck at (-1.15, -4.86) with (80.43, 339.04) force -[04/26/2026 06:22:06] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:22:06] launching puck at (-1.90, 4.62) with (132.56, -322.26) force -[04/26/2026 06:22:13] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:22:13] launching puck at (-3.32, -3.74) with (231.45, 260.48) force -[04/26/2026 06:22:17] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:22:17] launching puck at (-2.47, 4.35) with (172.12, -302.98) force -[04/26/2026 06:22:23] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:22:23] launching puck at (-1.12, -4.87) with (78.37, 339.53) force -[04/26/2026 06:22:28] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:22:28] launching puck at (-3.29, -3.76) with (229.46, 262.23) force -[04/26/2026 06:22:35] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:22:35] launching puck at (-0.50, -4.97) with (35.17, 346.67) force -[04/26/2026 06:22:42] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:22:42] launching puck at (4.15, 2.79) with (-289.05, -194.60) force -[04/26/2026 06:22:57] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:22:57] launching puck at (4.89, 1.03) with (-341.00, -71.71) force -[04/26/2026 06:23:04] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:23:04] launching puck at (-0.37, 4.99) with (25.59, -347.51) force -[04/26/2026 06:23:13] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:23:13] launching puck at (-0.02, -5.00) with (1.54, 348.45) force -[04/26/2026 06:23:20] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:23:20] launching puck at (2.89, -4.08) with (-201.27, 284.44) force -[04/26/2026 06:23:30] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:23:30] launching puck at (1.21, -4.85) with (-84.43, 338.07) force -[04/26/2026 06:23:34] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:23:34] launching puck at (2.77, -4.16) with (-193.28, 289.94) force -[04/26/2026 06:23:44] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:23:44] launching puck at (0.93, -4.91) with (-64.60, 342.41) force -[04/26/2026 06:23:52] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:23:52] launching puck at (-4.93, 0.81) with (343.90, -56.14) force -[04/26/2026 06:24:00] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:24:00] launching puck at (4.23, -2.67) with (-294.48, 186.28) force -[04/26/2026 06:24:06] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:24:06] launching puck at (1.10, 4.88) with (-76.32, -339.99) force -[04/26/2026 06:24:12] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:24:12] launching puck at (4.97, -0.56) with (-346.26, 39.02) force -[04/26/2026 06:24:20] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:24:20] launching puck at (-0.14, 5.00) with (9.76, -348.32) force -[04/26/2026 06:24:32] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:24:32] launching puck at (0.07, -5.00) with (-4.72, 348.42) force -[04/26/2026 06:24:38] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:24:38] launching puck at (2.63, 4.25) with (-183.53, -296.20) force -[04/26/2026 06:24:45] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:24:45] launching puck at (-4.99, -0.34) with (347.67, 23.38) force -[04/26/2026 06:24:50] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:24:50] launching puck at (-1.52, 4.76) with (106.06, -331.92) force -[04/26/2026 06:24:59] force = 70 * 0.7821948 = 54.75364 -[04/26/2026 06:24:59] launching puck at (2.98, -0.56) with (-163.31, 30.57) force -[04/26/2026 06:25:00] Dedicated match PATCH success: 200 {"ok":true,"id":150} -[04/26/2026 06:25:01] Dedicated match PATCH success: 200 {"ok":true,"id":150,"winner_id":5,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26389.txt b/games/soccar/soccar_Data/26389.txt deleted file mode 100644 index 1aac9bc..0000000 --- a/games/soccar/soccar_Data/26389.txt +++ /dev/null @@ -1,33 +0,0 @@ -[04/26/2026 06:18:18] Configured dedicated match reporting for match id 142 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:18:18] Starting server at port 26389 -[04/26/2026 06:18:28] Dedicated match PATCH success: 200 {"ok":true,"id":142} -[04/26/2026 06:18:55] Game started On Server -[04/26/2026 06:18:56] Dedicated match PATCH success: 200 {"ok":true,"id":142} -[04/26/2026 06:19:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:03] launching puck at (0.10, -5.00) with (-6.72, 348.39) force -[04/26/2026 06:19:10] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:10] launching puck at (-2.39, 4.39) with (166.82, -305.93) force -[04/26/2026 06:19:16] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:16] launching puck at (-4.20, -2.71) with (293.04, 188.54) force -[04/26/2026 06:19:22] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:22] launching puck at (1.91, 4.62) with (-133.10, -322.03) force -[04/26/2026 06:19:32] force = 70 * 0.9166063 = 64.16245 -[04/26/2026 06:19:32] launching puck at (-2.77, -3.10) with (177.50, 198.73) force -[04/26/2026 06:19:38] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:38] launching puck at (-4.23, -2.66) with (294.95, 185.54) force -[04/26/2026 06:19:46] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:46] launching puck at (-4.17, 2.76) with (290.74, -192.07) force -[04/26/2026 06:19:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:55] launching puck at (2.05, 4.56) with (-142.91, -317.80) force -[04/26/2026 06:20:02] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:02] launching puck at (3.97, -3.04) with (-276.53, 212.02) force -[04/26/2026 06:20:24] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:24] launching puck at (1.29, -4.83) with (-90.09, 336.61) force -[04/26/2026 06:20:45] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:45] launching puck at (3.97, -3.04) with (-276.41, 212.17) force -[04/26/2026 06:21:05] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:21:05] launching puck at (3.06, -3.96) with (-213.06, 275.73) force -[04/26/2026 06:21:26] force = 70 * 0.8859706 = 62.01794 -[04/26/2026 06:21:26] launching puck at (-2.38, -3.04) with (147.44, 188.44) force -[04/26/2026 06:21:52] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:21:52] launching puck at (0.07, -5.00) with (-5.05, 348.42) force diff --git a/games/soccar/soccar_Data/26390.txt b/games/soccar/soccar_Data/26390.txt deleted file mode 100644 index e554ca4..0000000 --- a/games/soccar/soccar_Data/26390.txt +++ /dev/null @@ -1,4 +0,0 @@ -[04/26/2026 06:30:10] Configured dedicated match reporting for match id 162 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:30:10] Starting server at port 26390 -[04/26/2026 06:30:40] Dedicated match PATCH success: 200 {"ok":true,"id":162} -[04/26/2026 06:31:10] Dedicated match PATCH success: 200 {"ok":true,"id":162} diff --git a/games/soccar/soccar_Data/26398.txt b/games/soccar/soccar_Data/26398.txt deleted file mode 100644 index 3f2cfa8..0000000 --- a/games/soccar/soccar_Data/26398.txt +++ /dev/null @@ -1,7 +0,0 @@ -[04/20/2026 10:23:39] Configured dedicated match reporting for match id 82 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/20/2026 10:23:39] Starting server at port 26398 -[04/20/2026 10:23:51] Game started On Server -[04/20/2026 10:23:52] Dedicated match PATCH success: 200 {"ok":true,"id":82} -[04/20/2026 10:23:52] Dedicated match PATCH success: 200 {"ok":true,"id":82} -[04/20/2026 10:24:02] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 10:24:02] launching puck at (0.02, -5.00) with (-1.62, 348.45) force diff --git a/games/soccar/soccar_Data/26402.txt b/games/soccar/soccar_Data/26402.txt deleted file mode 100644 index a8c00e4..0000000 --- a/games/soccar/soccar_Data/26402.txt +++ /dev/null @@ -1,2 +0,0 @@ -[04/26/2026 18:34:06] Configured dedicated match reporting for match id 207 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 18:34:06] Starting server at port 26402 diff --git a/games/soccar/soccar_Data/26410.txt b/games/soccar/soccar_Data/26410.txt deleted file mode 100644 index bb0a1d4..0000000 --- a/games/soccar/soccar_Data/26410.txt +++ /dev/null @@ -1,59 +0,0 @@ -[04/26/2026 06:10:22] Configured dedicated match reporting for match id 132 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:10:22] Starting server at port 26410 -[04/26/2026 06:10:31] Game started On Server -[04/26/2026 06:10:31] Dedicated match PATCH success: 200 {"ok":true,"id":132} -[04/26/2026 06:10:31] Dedicated match PATCH success: 200 {"ok":true,"id":132} -[04/26/2026 06:10:38] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:10:38] launching puck at (-0.03, -5.00) with (2.04, 348.45) force -[04/26/2026 06:10:49] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:10:49] launching puck at (-0.97, 4.90) with (67.87, -341.78) force -[04/26/2026 06:10:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:10:55] launching puck at (-0.73, -4.95) with (50.84, 344.72) force -[04/26/2026 06:11:02] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:02] launching puck at (4.21, 2.70) with (-293.34, -188.07) force -[04/26/2026 06:11:07] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:07] launching puck at (3.83, -3.21) with (-266.99, 223.91) force -[04/26/2026 06:11:20] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:20] launching puck at (-0.01, 5.00) with (0.86, -348.45) force -[04/26/2026 06:11:28] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:28] launching puck at (-2.59, -4.28) with (180.25, 298.21) force -[04/26/2026 06:11:37] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:37] launching puck at (-4.72, -1.64) with (329.22, 114.18) force -[04/26/2026 06:11:41] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:41] launching puck at (-0.36, -4.99) with (25.11, 347.55) force -[04/26/2026 06:11:47] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:47] launching puck at (-2.44, 4.36) with (169.96, -304.19) force -[04/26/2026 06:11:52] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:52] launching puck at (-0.73, 4.95) with (50.62, -344.76) force -[04/26/2026 06:12:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:12:03] launching puck at (-2.24, 4.47) with (156.35, -311.41) force -[04/26/2026 06:12:09] force = 70 * 0.9906002 = 69.34202 -[04/26/2026 06:12:09] launching puck at (-4.82, 1.08) with (334.57, -75.07) force -[04/26/2026 06:12:22] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:12:22] launching puck at (-0.46, 4.98) with (31.78, -347.00) force -[04/26/2026 06:12:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:12:27] launching puck at (-2.86, -4.10) with (199.54, 285.66) force -[04/26/2026 06:12:34] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:12:34] launching puck at (-2.05, 4.56) with (143.00, -317.76) force -[04/26/2026 06:12:40] force = 70 * 0.9677589 = 67.74313 -[04/26/2026 06:12:40] launching puck at (-4.56, 1.10) with (309.09, -74.33) force -[04/26/2026 06:12:47] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:12:47] launching puck at (0.77, 4.94) with (-53.47, -344.33) force -[04/26/2026 06:12:52] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:12:52] launching puck at (-4.31, -2.53) with (300.57, 176.29) force -[04/26/2026 06:13:00] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:13:00] launching puck at (1.55, 4.76) with (-107.70, -331.39) force -[04/26/2026 06:13:05] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:13:05] launching puck at (-4.27, 2.60) with (297.60, -181.25) force -[04/26/2026 06:13:11] force = 70 * 0.9519653 = 66.63757 -[04/26/2026 06:13:11] launching puck at (2.39, 3.84) with (-159.42, -255.64) force -[04/26/2026 06:13:17] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:13:17] launching puck at (-0.05, -5.00) with (3.65, 348.43) force -[04/26/2026 06:13:40] force = 70 * 0.9901443 = 69.3101 -[04/26/2026 06:13:40] launching puck at (4.68, 1.58) with (-324.29, -109.81) force -[04/26/2026 06:14:00] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:00] launching puck at (0.08, -5.00) with (-5.80, 348.40) force -[04/26/2026 06:14:21] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:21] launching puck at (1.29, -4.83) with (-90.20, 336.58) force -[04/26/2026 06:14:41] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:41] launching puck at (-2.13, -4.52) with (148.51, 315.22) force diff --git a/games/soccar/soccar_Data/26418.txt b/games/soccar/soccar_Data/26418.txt deleted file mode 100644 index 3d227eb..0000000 --- a/games/soccar/soccar_Data/26418.txt +++ /dev/null @@ -1,2 +0,0 @@ -[04/26/2026 06:03:13] Configured dedicated match reporting for match id 121 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:03:13] Starting server at port 26418 diff --git a/games/soccar/soccar_Data/26441.txt b/games/soccar/soccar_Data/26441.txt deleted file mode 100644 index fe72f8d..0000000 --- a/games/soccar/soccar_Data/26441.txt +++ /dev/null @@ -1,113 +0,0 @@ -[04/25/2026 06:01:42] Configured dedicated match reporting for match id 102 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/25/2026 06:01:42] Starting server at port 26441 -[04/25/2026 06:01:46] Dedicated match PATCH success: 200 {"ok":true,"id":102} -[04/25/2026 06:01:54] Game started On Server -[04/25/2026 06:01:54] Dedicated match PATCH success: 200 {"ok":true,"id":102} -[04/25/2026 06:01:58] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:01:58] launching puck at (0.86, -4.93) with (-59.99, 343.25) force -[04/25/2026 06:02:08] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:02:08] launching puck at (-3.18, 3.86) with (221.66, -268.86) force -[04/25/2026 06:02:14] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:02:14] launching puck at (-4.24, -2.65) with (295.67, 184.39) force -[04/25/2026 06:02:21] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:02:21] launching puck at (-4.97, -0.52) with (346.59, 35.99) force -[04/25/2026 06:02:26] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:02:26] launching puck at (2.55, -4.30) with (-177.71, 299.73) force -[04/25/2026 06:02:33] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:02:33] launching puck at (-2.20, 4.49) with (153.25, -312.95) force -[04/25/2026 06:02:42] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:02:42] launching puck at (-4.82, -1.35) with (335.61, 93.75) force -[04/25/2026 06:02:51] force = 70 * 0.9086941 = 63.60859 -[04/25/2026 06:02:51] launching puck at (0.27, -4.07) with (-17.31, 258.59) force -[04/25/2026 06:02:58] force = 70 * 0.8871362 = 62.09954 -[04/25/2026 06:02:58] launching puck at (-3.86, 0.19) with (239.97, -11.56) force -[04/25/2026 06:03:05] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:03:05] launching puck at (0.61, 4.96) with (-42.48, -345.85) force -[04/25/2026 06:03:12] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:03:12] launching puck at (-2.05, 4.56) with (143.17, -317.68) force -[04/25/2026 06:03:23] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:03:23] launching puck at (-3.81, -3.24) with (265.65, 225.50) force -[04/25/2026 06:03:29] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:03:29] launching puck at (0.01, -5.00) with (-0.75, 348.45) force -[04/25/2026 06:03:40] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:03:40] launching puck at (-4.86, 1.17) with (338.86, -81.20) force -[04/25/2026 06:03:44] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:03:44] launching puck at (-0.70, -4.95) with (48.61, 345.05) force -[04/25/2026 06:03:55] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:03:55] launching puck at (-1.98, -4.59) with (137.79, 320.05) force -[04/25/2026 06:03:59] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:03:59] launching puck at (-0.81, -4.93) with (56.68, 343.81) force -[04/25/2026 06:04:11] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:04:11] launching puck at (3.16, -3.87) with (-220.24, 270.02) force -[04/25/2026 06:04:15] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:04:15] launching puck at (5.00, -0.15) with (-348.30, 10.26) force -[04/25/2026 06:04:23] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:04:23] launching puck at (-1.66, 4.72) with (115.62, -328.71) force -[04/25/2026 06:04:28] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:04:28] launching puck at (1.60, 4.74) with (-111.28, -330.21) force -[04/25/2026 06:04:35] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:04:35] launching puck at (-0.58, 4.97) with (40.12, -346.14) force -[04/25/2026 06:04:42] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:04:42] launching puck at (-0.11, -5.00) with (7.88, 348.36) force -[04/25/2026 06:04:50] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:04:50] launching puck at (4.84, 1.24) with (-337.64, -86.12) force -[04/25/2026 06:04:57] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:04:57] launching puck at (0.90, -4.92) with (-62.38, 342.82) force -[04/25/2026 06:05:04] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:05:04] launching puck at (0.37, -4.99) with (-25.92, 347.49) force -[04/25/2026 06:05:09] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:05:09] launching puck at (0.66, -4.96) with (-46.15, 345.38) force -[04/25/2026 06:05:18] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:05:18] launching puck at (2.80, 4.14) with (-194.94, -288.82) force -[04/25/2026 06:05:22] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:05:22] launching puck at (2.61, -4.26) with (-182.09, 297.09) force -[04/25/2026 06:05:29] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:05:29] launching puck at (4.67, 1.77) with (-325.77, -123.68) force -[04/25/2026 06:05:34] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:05:34] launching puck at (0.54, -4.97) with (-37.35, 346.45) force -[04/25/2026 06:05:40] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:05:40] launching puck at (4.30, -2.55) with (-299.60, 177.93) force -[04/25/2026 06:05:46] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:05:46] launching puck at (2.37, -4.40) with (-165.47, 306.66) force -[04/25/2026 06:05:53] force = 70 * 0.734533 = 51.4173 -[04/25/2026 06:05:53] launching puck at (-1.03, -2.53) with (52.77, 130.10) force -[04/25/2026 06:05:58] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:05:58] launching puck at (4.98, -0.47) with (-346.91, 32.76) force -[04/25/2026 06:06:24] force = 70 * 0.9866582 = 69.06608 -[04/25/2026 06:06:24] launching puck at (-0.16, 4.90) with (11.18, -338.33) force -[04/25/2026 06:06:35] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:06:35] launching puck at (4.76, -1.53) with (-331.70, 106.76) force -[04/25/2026 06:06:39] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:06:39] launching puck at (-4.72, 1.65) with (328.92, -115.04) force -[04/25/2026 06:06:53] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:06:53] launching puck at (0.42, 4.98) with (-29.12, -347.23) force -[04/25/2026 06:06:59] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:06:59] launching puck at (-0.59, -4.97) with (41.07, 346.02) force -[04/25/2026 06:07:06] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:07:06] launching puck at (1.23, -4.85) with (-85.91, 337.70) force -[04/25/2026 06:07:13] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:07:13] launching puck at (1.06, -4.89) with (-73.80, 340.55) force -[04/25/2026 06:07:20] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:07:20] launching puck at (1.90, -4.63) with (-132.34, 322.35) force -[04/25/2026 06:07:24] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:07:24] launching puck at (1.04, -4.89) with (-72.60, 340.81) force -[04/25/2026 06:07:31] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:07:31] launching puck at (4.88, 1.10) with (-339.92, -76.62) force -[04/25/2026 06:07:35] force = 70 * 0.9826961 = 68.78873 -[04/25/2026 06:07:35] launching puck at (-1.34, 4.67) with (92.02, -321.22) force -[04/25/2026 06:07:45] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:07:45] launching puck at (0.93, 4.91) with (-64.65, -342.40) force -[04/25/2026 06:07:51] force = 70 * 0.8961992 = 62.73395 -[04/25/2026 06:07:51] launching puck at (3.79, 1.12) with (-237.83, -70.40) force -[04/25/2026 06:08:00] force = 70 * 0.8287807 = 58.01465 -[04/25/2026 06:08:00] launching puck at (2.23, 2.53) with (-129.45, -146.75) force -[04/25/2026 06:08:11] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:08:11] launching puck at (4.59, -1.99) with (-319.58, 138.89) force -[04/25/2026 06:08:18] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:08:18] launching puck at (-1.47, 4.78) with (102.45, -333.05) force -[04/25/2026 06:08:23] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:08:23] launching puck at (0.92, 4.91) with (-64.06, -342.51) force -[04/25/2026 06:08:33] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:08:33] launching puck at (1.00, 4.90) with (-69.97, -341.36) force -[04/25/2026 06:08:34] Dedicated match PATCH success: 200 {"ok":true,"id":102} -[04/25/2026 06:08:35] Dedicated match PATCH success: 200 {"ok":true,"id":102,"winner_id":11,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26448.txt b/games/soccar/soccar_Data/26448.txt deleted file mode 100644 index 5e8f912..0000000 --- a/games/soccar/soccar_Data/26448.txt +++ /dev/null @@ -1,2 +0,0 @@ -[04/26/2026 05:58:34] Configured dedicated match reporting for match id 115 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 05:58:34] Starting server at port 26448 diff --git a/games/soccar/soccar_Data/26466.txt b/games/soccar/soccar_Data/26466.txt deleted file mode 100644 index 32f790d..0000000 --- a/games/soccar/soccar_Data/26466.txt +++ /dev/null @@ -1,73 +0,0 @@ -[04/25/2026 07:42:15] Configured dedicated match reporting for match id 105 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/25/2026 07:42:15] Starting server at port 26466 -[04/25/2026 07:42:20] Dedicated match PATCH success: 200 {"ok":true,"id":105} -[04/25/2026 07:42:21] Game started On Server -[04/25/2026 07:42:22] Dedicated match PATCH success: 200 {"ok":true,"id":105} -[04/25/2026 07:42:24] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 07:42:24] launching puck at (1.97, 4.60) with (-137.13, -320.33) force -[04/25/2026 07:42:31] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 07:42:31] launching puck at (-0.18, 5.00) with (12.54, -348.23) force -[04/25/2026 07:42:37] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 07:42:37] launching puck at (0.18, -5.00) with (-12.37, 348.23) force -[04/25/2026 07:42:44] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 07:42:44] launching puck at (-3.10, 3.92) with (216.01, -273.43) force -[04/25/2026 07:42:49] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 07:42:49] launching puck at (-5.00, -0.20) with (348.17, 14.10) force -[04/25/2026 07:42:55] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 07:42:55] launching puck at (-4.84, 1.25) with (337.31, -87.41) force -[04/25/2026 07:43:02] force = 70 * 0.9482162 = 66.37514 -[04/25/2026 07:43:02] launching puck at (-4.47, -0.25) with (296.95, 16.63) force -[04/25/2026 07:43:10] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 07:43:10] launching puck at (0.44, 4.98) with (-30.92, -347.08) force -[04/25/2026 07:43:17] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 07:43:17] launching puck at (0.11, -5.00) with (-7.34, 348.38) force -[04/25/2026 07:43:27] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 07:43:27] launching puck at (3.58, 3.49) with (-249.77, -242.97) force -[04/25/2026 07:43:32] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 07:43:32] launching puck at (3.29, -3.77) with (-229.17, 262.49) force -[04/25/2026 07:43:41] force = 70 * 0.9806746 = 68.64722 -[04/25/2026 07:43:41] launching puck at (3.82, -2.96) with (-262.37, 203.29) force -[04/25/2026 07:43:49] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 07:43:49] launching puck at (0.07, 5.00) with (-4.89, -348.42) force -[04/25/2026 07:43:57] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 07:43:57] launching puck at (1.11, -4.87) with (-77.67, 339.69) force -[04/25/2026 07:44:03] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 07:44:03] launching puck at (-1.18, 4.86) with (82.34, -338.59) force -[04/25/2026 07:44:09] force = 70 * 0.8538533 = 59.76973 -[04/25/2026 07:44:09] launching puck at (-3.49, -0.79) with (208.49, 46.92) force -[04/25/2026 07:44:10] Dedicated match PATCH success: 200 {"ok":true,"id":105} -[04/25/2026 07:44:11] Dedicated match PATCH success: 200 {"ok":true,"id":105,"winner_id":14,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} -[04/26/2026 06:20:11] Configured dedicated match reporting for match id 148 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:20:11] Starting server at port 26466 -[04/26/2026 06:20:26] Game started On Server -[04/26/2026 06:20:26] Dedicated match PATCH success: 200 {"ok":true,"id":148} -[04/26/2026 06:20:26] Dedicated match PATCH success: 200 {"ok":true,"id":148} -[04/26/2026 06:20:35] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:35] launching puck at (-0.10, -5.00) with (6.84, 348.39) force -[04/26/2026 06:20:59] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:59] launching puck at (-0.08, -5.00) with (5.50, 348.41) force -[04/26/2026 06:21:25] force = 70 * 0.5955167 = 41.68617 -[04/26/2026 06:21:25] launching puck at (-1.34, -1.51) with (55.87, 62.77) force -[04/26/2026 06:21:53] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:21:53] launching puck at (0.00, -5.00) with (-0.12, 348.45) force -[04/26/2026 06:22:19] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:22:19] launching puck at (-0.18, -5.00) with (12.84, 348.22) force -[04/26/2026 06:22:43] force = 70 * 0.8980125 = 62.86088 -[04/26/2026 06:22:43] launching puck at (-2.45, -3.13) with (154.00, 196.46) force -[04/26/2026 06:23:14] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:23:14] launching puck at (-0.06, -5.00) with (4.11, 348.43) force -[04/26/2026 06:23:45] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:23:45] launching puck at (-0.78, -4.94) with (54.13, 344.22) force -[04/26/2026 06:24:16] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:24:16] launching puck at (-0.70, -4.95) with (48.68, 345.04) force -[04/26/2026 06:24:47] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:24:47] launching puck at (-0.87, -4.92) with (60.93, 343.08) force -[04/26/2026 06:25:17] Configured dedicated match reporting for match id 159 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:25:17] Starting server at port 26466 -[04/26/2026 06:25:59] Dedicated match PATCH success: 200 {"ok":true,"id":159} -[04/26/2026 06:26:00] Game started On Server -[04/26/2026 06:26:03] Dedicated match PATCH success: 200 {"ok":true,"id":159} -[04/26/2026 06:26:05] force = 70 * 0.435309 = 30.47163 -[04/26/2026 06:26:05] launching puck at (0.65, 1.15) with (-19.76, -35.12) force -[04/26/2026 06:26:25] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:26:26] launching puck at (0.04, -5.00) with (-2.73, 348.44) force diff --git a/games/soccar/soccar_Data/26474.txt b/games/soccar/soccar_Data/26474.txt deleted file mode 100644 index 348b8db..0000000 --- a/games/soccar/soccar_Data/26474.txt +++ /dev/null @@ -1,3 +0,0 @@ -[04/26/2026 06:23:37] Configured dedicated match reporting for match id 156 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:23:37] Starting server at port 26474 -[04/26/2026 06:23:55] Dedicated match PATCH success: 200 {"ok":true,"id":156} diff --git a/games/soccar/soccar_Data/26486.txt b/games/soccar/soccar_Data/26486.txt deleted file mode 100644 index 78b763b..0000000 --- a/games/soccar/soccar_Data/26486.txt +++ /dev/null @@ -1,65 +0,0 @@ -[04/26/2026 06:30:09] Configured dedicated match reporting for match id 161 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:30:09] Starting server at port 26486 -[04/26/2026 06:30:14] Game started On Server -[04/26/2026 06:30:15] Dedicated match PATCH success: 200 {"ok":true,"id":161} -[04/26/2026 06:30:15] Dedicated match PATCH success: 200 {"ok":true,"id":161} -[04/26/2026 06:30:20] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:30:20] launching puck at (0.30, -4.99) with (-21.04, 347.82) force -[04/26/2026 06:30:25] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:30:25] launching puck at (-1.04, 4.89) with (72.17, -340.90) force -[04/26/2026 06:30:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:30:36] launching puck at (-4.99, -0.37) with (347.49, 25.89) force -[04/26/2026 06:30:41] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:30:41] launching puck at (-0.22, 5.00) with (15.31, -348.12) force -[04/26/2026 06:30:50] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:30:50] launching puck at (5.00, 0.11) with (-348.37, -7.47) force -[04/26/2026 06:30:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:30:55] launching puck at (1.27, 4.84) with (-88.64, -336.99) force -[04/26/2026 06:31:00] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:31:00] launching puck at (0.61, -4.96) with (-42.83, 345.81) force -[04/26/2026 06:31:05] force = 70 * 0.9615602 = 67.30921 -[04/26/2026 06:31:05] launching puck at (4.56, 0.80) with (-306.62, -53.81) force -[04/26/2026 06:31:09] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:31:09] launching puck at (-1.28, -4.83) with (89.07, 336.88) force -[04/26/2026 06:31:17] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:31:17] launching puck at (0.02, 5.00) with (-1.62, -348.45) force -[04/26/2026 06:31:23] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:31:23] launching puck at (-2.95, 4.04) with (205.57, -281.35) force -[04/26/2026 06:31:28] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:31:28] launching puck at (-1.11, 4.88) with (77.43, -339.74) force -[04/26/2026 06:31:37] force = 70 * 0.941475 = 65.90325 -[04/26/2026 06:31:37] launching puck at (4.41, 0.05) with (-290.56, -3.30) force -[04/26/2026 06:31:43] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:31:43] launching puck at (-3.27, 3.78) with (228.15, -263.38) force -[04/26/2026 06:31:53] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:31:53] launching puck at (-0.02, -5.00) with (1.08, 348.45) force -[04/26/2026 06:32:01] force = 70 * 0.9621928 = 67.35349 -[04/26/2026 06:32:01] launching puck at (-4.54, -0.94) with (305.45, 63.48) force -[04/26/2026 06:32:07] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:32:07] launching puck at (0.04, 5.00) with (-2.95, -348.44) force -[04/26/2026 06:32:16] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:32:16] launching puck at (2.55, -4.30) with (-177.44, 299.89) force -[04/26/2026 06:32:23] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:32:23] launching puck at (2.79, 4.15) with (-194.29, -289.26) force -[04/26/2026 06:32:33] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:32:33] launching puck at (2.69, -4.21) with (-187.49, 293.71) force -[04/26/2026 06:32:37] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:32:37] launching puck at (3.81, 3.24) with (-265.30, -225.91) force -[04/26/2026 06:32:54] force = 70 * 0.9141145 = 63.98801 -[04/26/2026 06:32:54] launching puck at (-3.35, -2.41) with (214.60, 154.00) force -[04/26/2026 06:32:59] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:32:59] launching puck at (-3.52, 3.55) with (245.23, -247.55) force -[04/26/2026 06:33:08] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:33:08] launching puck at (-1.30, 4.83) with (90.91, -336.38) force -[04/26/2026 06:33:14] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:33:14] launching puck at (-3.73, 3.33) with (259.91, -232.09) force -[04/26/2026 06:33:18] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:33:18] launching puck at (-2.62, -4.26) with (182.68, 296.73) force -[04/26/2026 06:33:23] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:33:23] launching puck at (-4.83, 1.28) with (336.91, -88.93) force -[04/26/2026 06:33:26] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:33:26] launching puck at (2.24, -4.47) with (-156.45, 311.35) force -[04/26/2026 06:33:33] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:33:33] launching puck at (2.91, 4.07) with (-202.55, -283.53) force -[04/26/2026 06:33:33] Dedicated match PATCH success: 200 {"ok":true,"id":161} -[04/26/2026 06:33:34] Dedicated match PATCH success: 200 {"ok":true,"id":161,"winner_id":30,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26498.txt b/games/soccar/soccar_Data/26498.txt deleted file mode 100644 index 2625a76..0000000 --- a/games/soccar/soccar_Data/26498.txt +++ /dev/null @@ -1,29 +0,0 @@ -[04/26/2026 06:16:55] Configured dedicated match reporting for match id 140 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:16:55] Starting server at port 26498 -[04/26/2026 06:17:09] Game started On Server -[04/26/2026 06:17:10] Dedicated match PATCH success: 200 {"ok":true,"id":140} -[04/26/2026 06:17:10] Dedicated match PATCH success: 200 {"ok":true,"id":140} -[04/26/2026 06:17:14] force = 70 * 0.9207622 = 64.45335 -[04/26/2026 06:17:14] launching puck at (0.37, 4.18) with (-23.74, -269.32) force -[04/26/2026 06:17:22] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:22] launching puck at (0.04, 5.00) with (-2.99, -348.44) force -[04/26/2026 06:17:31] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:31] launching puck at (0.48, 4.98) with (-33.65, -346.82) force -[04/26/2026 06:17:39] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:39] launching puck at (0.46, 4.98) with (-32.25, -346.96) force -[04/26/2026 06:17:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:55] launching puck at (0.08, 5.00) with (-5.68, -348.41) force -[04/26/2026 06:18:02] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:18:02] launching puck at (1.93, 4.61) with (-134.54, -321.43) force -[04/26/2026 06:18:07] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:18:07] launching puck at (-3.64, 3.43) with (253.57, -239.01) force -[04/26/2026 06:18:14] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:18:14] launching puck at (0.34, 4.99) with (-23.68, -347.65) force -[04/26/2026 06:18:20] force = 70 * 0.9439294 = 66.07506 -[04/26/2026 06:18:20] launching puck at (-4.31, -1.06) with (284.58, 69.96) force -[04/26/2026 06:18:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:18:27] launching puck at (0.00, 5.00) with (0.03, -348.45) force -[04/26/2026 06:18:33] force = 70 * 0.9313873 = 65.19711 -[04/26/2026 06:18:33] launching puck at (4.29, -0.34) with (-279.72, 21.94) force -[04/26/2026 06:18:33] Dedicated match PATCH success: 200 {"ok":true,"id":140} -[04/26/2026 06:18:35] Dedicated match PATCH success: 200 {"ok":true,"id":140,"winner_id":19,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26521.txt b/games/soccar/soccar_Data/26521.txt deleted file mode 100644 index 29bde9a..0000000 --- a/games/soccar/soccar_Data/26521.txt +++ /dev/null @@ -1,3 +0,0 @@ -[04/26/2026 06:20:09] Configured dedicated match reporting for match id 147 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:20:09] Starting server at port 26521 -[04/26/2026 06:20:27] Dedicated match PATCH success: 200 {"ok":true,"id":147} diff --git a/games/soccar/soccar_Data/26530.txt b/games/soccar/soccar_Data/26530.txt deleted file mode 100644 index 2d72b72..0000000 --- a/games/soccar/soccar_Data/26530.txt +++ /dev/null @@ -1,59 +0,0 @@ -[04/21/2026 20:48:45] Configured dedicated match reporting for match id 90 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/21/2026 20:48:45] Starting server at port 26530 -[04/21/2026 20:48:50] Game started On Server -[04/21/2026 20:48:50] Dedicated match PATCH success: 200 {"ok":true,"id":90} -[04/21/2026 20:48:50] Dedicated match PATCH success: 200 {"ok":true,"id":90} -[04/21/2026 20:48:52] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 20:48:52] launching puck at (-0.14, -5.00) with (9.71, 348.32) force -[04/21/2026 20:48:57] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 20:48:57] launching puck at (-2.64, 4.24) with (184.26, -295.75) force -[04/21/2026 20:49:02] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 20:49:02] launching puck at (-1.79, -4.67) with (125.06, 325.24) force -[04/21/2026 20:49:08] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 20:49:08] launching puck at (-2.76, 4.17) with (192.51, -290.45) force -[04/21/2026 20:49:15] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 20:49:15] launching puck at (-1.28, -4.83) with (89.17, 336.85) force -[04/21/2026 20:49:20] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 20:49:20] launching puck at (4.77, -1.51) with (-332.19, 105.22) force -[04/21/2026 20:49:24] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 20:49:24] launching puck at (4.94, -0.77) with (-344.31, 53.56) force -[04/21/2026 20:49:32] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 20:49:32] launching puck at (-2.58, 4.28) with (179.77, -298.50) force -[04/21/2026 20:49:38] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 20:49:38] launching puck at (-0.51, -4.97) with (35.23, 346.67) force -[04/21/2026 20:49:44] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 20:49:44] launching puck at (1.51, 4.77) with (-105.42, -332.12) force -[04/21/2026 20:49:49] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 20:49:49] launching puck at (-3.95, -3.06) with (275.33, 213.58) force -[04/21/2026 20:49:55] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 20:49:55] launching puck at (-4.08, 2.89) with (284.44, -201.27) force -[04/21/2026 20:49:59] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 20:49:59] launching puck at (-3.78, -3.27) with (263.77, 227.69) force -[04/21/2026 20:50:07] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 20:50:07] launching puck at (2.70, 4.21) with (-188.49, -293.07) force -[04/21/2026 20:50:14] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 20:50:14] launching puck at (-0.16, -5.00) with (11.25, 348.27) force -[04/21/2026 20:50:19] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 20:50:19] launching puck at (-2.78, 4.16) with (193.66, -289.68) force -[04/21/2026 20:50:24] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 20:50:24] launching puck at (-4.22, -2.68) with (294.22, 186.69) force -[04/21/2026 20:50:31] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 20:50:31] launching puck at (-1.71, 4.70) with (119.52, -327.32) force -[04/21/2026 20:50:44] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 20:50:44] launching puck at (-0.24, -4.99) with (16.38, 348.07) force -[04/21/2026 20:50:49] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 20:50:49] launching puck at (0.51, -4.97) with (-35.25, 346.67) force -[04/21/2026 20:50:54] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 20:50:54] launching puck at (0.07, 5.00) with (-5.07, -348.42) force -[04/21/2026 20:51:03] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 20:51:03] launching puck at (2.41, -4.38) with (-168.14, 305.20) force -[04/21/2026 20:51:10] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 20:51:10] launching puck at (-1.78, 4.67) with (124.34, -325.51) force -[04/21/2026 20:51:16] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 20:51:16] launching puck at (-3.98, 3.03) with (277.36, -210.93) force -[04/21/2026 20:51:22] force = 70 * 0.9955804 = 69.69063 -[04/21/2026 20:51:22] launching puck at (-2.02, 4.57) with (140.92, -318.68) force -[04/21/2026 20:51:34] force = 70 * 0.7962044 = 55.73431 -[04/21/2026 20:51:34] launching puck at (-1.85, 2.53) with (103.20, -140.76) force -[04/21/2026 20:51:35] Dedicated match PATCH success: 200 {"ok":true,"id":90} -[04/21/2026 20:51:37] Dedicated match PATCH success: 200 {"ok":true,"id":90,"winner_id":6,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26535.txt b/games/soccar/soccar_Data/26535.txt deleted file mode 100644 index 330b40d..0000000 --- a/games/soccar/soccar_Data/26535.txt +++ /dev/null @@ -1,138 +0,0 @@ -[04/26/2026 06:25:17] Configured dedicated match reporting for match id 158 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:25:17] Starting server at port 26535 -[04/26/2026 06:26:08] Game started On Server -[04/26/2026 06:26:12] Dedicated match PATCH success: 200 {"ok":true,"id":158} -[04/26/2026 06:26:13] Dedicated match PATCH success: 200 {"ok":true,"id":158} -[04/26/2026 06:26:15] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:26:16] launching puck at (0.53, -4.97) with (-36.87, 346.50) force -[04/26/2026 06:50:10] Configured dedicated match reporting for match id 196 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:50:10] Starting server at port 26535 -[04/26/2026 06:50:15] Game started On Server -[04/26/2026 06:50:15] Dedicated match PATCH success: 200 {"ok":true,"id":196} -[04/26/2026 06:50:16] Dedicated match PATCH success: 200 {"ok":true,"id":196} -[04/26/2026 06:50:19] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:50:19] launching puck at (-1.77, -4.68) with (123.22, 325.94) force -[04/26/2026 06:50:24] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:50:24] launching puck at (1.80, 4.66) with (-125.59, -325.03) force -[04/26/2026 06:50:30] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:50:30] launching puck at (-1.55, -4.75) with (108.27, 331.21) force -[04/26/2026 06:50:35] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:50:35] launching puck at (2.85, 4.11) with (-198.83, -286.16) force -[04/26/2026 06:50:40] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:50:40] launching puck at (4.13, -2.82) with (-287.75, 196.52) force -[04/26/2026 06:50:46] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:50:46] launching puck at (-3.96, 3.05) with (276.23, -212.41) force -[04/26/2026 06:50:53] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:50:53] launching puck at (-2.85, -4.11) with (198.57, 286.34) force -[04/26/2026 06:51:00] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:00] launching puck at (0.01, 5.00) with (-0.46, -348.45) force -[04/26/2026 06:51:05] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:05] launching puck at (3.61, 3.46) with (-251.73, -240.93) force -[04/26/2026 06:51:13] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:13] launching puck at (-1.35, 4.81) with (94.22, -335.47) force -[04/26/2026 06:51:21] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:21] launching puck at (5.00, 0.06) with (-348.42, -4.51) force -[04/26/2026 06:51:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:27] launching puck at (1.18, 4.86) with (-82.27, -338.60) force -[04/26/2026 06:51:34] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:34] launching puck at (5.00, 0.07) with (-348.42, -4.60) force -[04/26/2026 06:51:40] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:40] launching puck at (-0.04, 5.00) with (2.60, -348.44) force -[04/26/2026 06:51:45] force = 70 * 0.973995 = 68.17965 -[04/26/2026 06:51:45] launching puck at (-4.58, 1.30) with (312.20, -88.95) force -[04/26/2026 06:51:54] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:54] launching puck at (-2.99, 4.01) with (208.35, -279.30) force -[04/26/2026 06:51:59] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:59] launching puck at (-3.97, 3.03) with (276.98, -211.43) force -[04/26/2026 06:52:07] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:52:07] launching puck at (-4.94, -0.77) with (344.31, 53.60) force -[04/26/2026 06:52:12] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:52:12] launching puck at (-1.52, -4.76) with (106.18, 331.88) force -[04/26/2026 06:52:23] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:52:23] launching puck at (-2.46, 4.35) with (171.60, -303.27) force -[04/26/2026 06:52:29] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:52:29] launching puck at (-1.70, 4.70) with (118.35, -327.74) force -[04/26/2026 06:52:38] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:52:38] launching puck at (0.36, 4.99) with (-24.76, -347.57) force -[04/26/2026 06:52:42] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:52:42] launching puck at (-2.00, -4.58) with (139.10, 319.49) force -[04/26/2026 06:52:49] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:52:49] launching puck at (-2.03, 4.57) with (141.58, -318.40) force -[04/26/2026 06:52:54] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:52:54] launching puck at (-3.74, 3.32) with (260.81, -231.07) force -[04/26/2026 06:53:08] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:08] launching puck at (-3.14, 3.89) with (218.90, -271.12) force -[04/26/2026 06:53:13] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:13] launching puck at (-3.16, 3.88) with (219.87, -270.32) force -[04/26/2026 06:53:21] force = 70 * 0.9615794 = 67.31055 -[04/26/2026 06:53:21] launching puck at (-1.15, 4.48) with (77.08, -301.63) force -[04/26/2026 06:53:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:27] launching puck at (-0.30, 4.99) with (20.81, -347.83) force -[04/26/2026 06:53:33] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:33] launching puck at (4.67, 1.77) with (-325.77, -123.66) force -[04/26/2026 06:53:40] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:40] launching puck at (2.06, 4.55) with (-143.75, -317.42) force -[04/26/2026 06:53:45] force = 70 * 0.9485022 = 66.39516 -[04/26/2026 06:53:45] launching puck at (3.77, 2.43) with (-250.17, -161.40) force -[04/26/2026 06:53:53] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:53] launching puck at (2.64, 4.25) with (-183.91, -295.97) force -[04/26/2026 06:53:57] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:57] launching puck at (4.56, -2.05) with (-317.96, 142.55) force -[04/26/2026 06:54:05] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:54:05] launching puck at (4.92, 0.90) with (-342.74, -62.81) force -[04/26/2026 06:54:11] force = 70 * 0.8057402 = 56.40182 -[04/26/2026 06:54:11] launching puck at (2.86, -1.44) with (-161.22, 81.12) force -[04/26/2026 06:54:18] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:54:18] launching puck at (2.15, 4.51) with (-149.99, -314.52) force -[04/26/2026 06:54:23] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:54:23] launching puck at (2.21, -4.48) with (-154.06, 312.55) force -[04/26/2026 06:54:30] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:54:30] launching puck at (-0.38, 4.99) with (26.47, -347.45) force -[04/26/2026 06:54:34] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:54:34] launching puck at (3.96, 3.05) with (-276.10, -212.58) force -[04/26/2026 06:54:42] force = 70 * 0.9590296 = 67.13207 -[04/26/2026 06:54:42] launching puck at (3.36, 3.14) with (-225.46, -210.78) force -[04/26/2026 06:54:47] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:54:47] launching puck at (0.90, -4.92) with (-62.47, 342.81) force -[04/26/2026 06:54:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:54:55] launching puck at (-3.22, 3.83) with (224.39, -266.59) force -[04/26/2026 06:55:05] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:55:05] launching puck at (-2.55, -4.30) with (177.69, 299.74) force -[04/26/2026 06:55:11] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:55:11] launching puck at (1.45, 4.79) with (-101.04, -333.48) force -[04/26/2026 06:55:17] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:55:17] launching puck at (2.59, -4.27) with (-180.76, 297.90) force -[04/26/2026 06:55:26] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:55:26] launching puck at (-1.12, 4.87) with (77.88, -339.64) force -[04/26/2026 06:55:31] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:55:31] launching puck at (-2.32, -4.43) with (161.85, 308.59) force -[04/26/2026 06:55:40] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:55:40] launching puck at (-1.97, 4.59) with (137.42, -320.21) force -[04/26/2026 06:55:46] force = 70 * 0.850017 = 59.50119 -[04/26/2026 06:55:46] launching puck at (-3.46, -0.76) with (206.00, 44.93) force -[04/26/2026 06:55:54] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:55:54] launching puck at (-1.85, 4.64) with (129.15, -323.64) force -[04/26/2026 06:55:58] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:55:58] launching puck at (-1.36, -4.81) with (95.02, 335.25) force -[04/26/2026 06:56:05] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:56:05] launching puck at (2.43, 4.37) with (-169.10, -304.67) force -[04/26/2026 06:56:11] force = 70 * 0.8058954 = 56.41268 -[04/26/2026 06:56:11] launching puck at (2.06, 2.45) with (-116.35, -138.10) force -[04/26/2026 06:56:21] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:56:21] launching puck at (1.12, 4.87) with (-77.81, -339.66) force -[04/26/2026 06:56:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:56:27] launching puck at (1.95, -4.60) with (-136.17, 320.74) force -[04/26/2026 06:56:35] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:56:35] launching puck at (-0.19, 5.00) with (13.39, -348.20) force -[04/26/2026 06:56:39] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:56:39] launching puck at (3.05, -3.96) with (-212.58, 276.10) force -[04/26/2026 06:56:47] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:56:47] launching puck at (-0.36, 4.99) with (25.36, -347.53) force -[04/26/2026 06:56:52] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:56:52] launching puck at (0.30, -4.99) with (-21.08, 347.82) force -[04/26/2026 06:56:59] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:56:59] launching puck at (1.90, 4.62) with (-132.47, -322.29) force -[04/26/2026 06:57:05] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:57:05] launching puck at (0.97, 4.90) with (-67.79, -341.80) force -[04/26/2026 06:57:05] Dedicated match PATCH success: 200 {"ok":true,"id":196} -[04/26/2026 06:57:06] Dedicated match PATCH success: 200 {"ok":true,"id":196,"winner_id":17,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26537.txt b/games/soccar/soccar_Data/26537.txt deleted file mode 100644 index 41c5b29..0000000 --- a/games/soccar/soccar_Data/26537.txt +++ /dev/null @@ -1,2 +0,0 @@ -[04/24/2026 19:56:24] Configured dedicated match reporting for match id 96 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/24/2026 19:56:24] Starting server at port 26537 diff --git a/games/soccar/soccar_Data/26548.txt b/games/soccar/soccar_Data/26548.txt deleted file mode 100644 index 432f95e..0000000 --- a/games/soccar/soccar_Data/26548.txt +++ /dev/null @@ -1,3 +0,0 @@ -[04/26/2026 06:20:31] Configured dedicated match reporting for match id 149 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:20:31] Starting server at port 26548 -[04/26/2026 06:21:29] Dedicated match PATCH success: 200 {"ok":true,"id":149} diff --git a/games/soccar/soccar_Data/26550.txt b/games/soccar/soccar_Data/26550.txt deleted file mode 100644 index dfe593a..0000000 --- a/games/soccar/soccar_Data/26550.txt +++ /dev/null @@ -1,77 +0,0 @@ -[04/26/2026 06:41:45] Configured dedicated match reporting for match id 181 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:41:45] Starting server at port 26550 -[04/26/2026 06:42:08] Dedicated match PATCH success: 200 {"ok":true,"id":181} -[04/26/2026 06:42:08] Game started On Server -[04/26/2026 06:42:09] Dedicated match PATCH success: 200 {"ok":true,"id":181} -[04/26/2026 06:42:10] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:42:10] launching puck at (0.17, -5.00) with (-11.81, 348.25) force -[04/26/2026 06:42:19] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:42:19] launching puck at (2.67, 4.23) with (-185.90, -294.72) force -[04/26/2026 06:42:24] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:42:24] launching puck at (4.18, -2.74) with (-291.32, 191.19) force -[04/26/2026 06:42:32] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:42:32] launching puck at (0.06, 5.00) with (-4.13, -348.43) force -[04/26/2026 06:42:38] force = 70 * 0.9612594 = 67.28816 -[04/26/2026 06:42:38] launching puck at (-3.13, -3.40) with (210.46, 228.95) force -[04/26/2026 06:42:46] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:42:46] launching puck at (0.82, 4.93) with (-57.34, -343.70) force -[04/26/2026 06:42:51] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:42:51] launching puck at (0.61, -4.96) with (-42.51, 345.85) force -[04/26/2026 06:43:00] force = 70 * 0.8109771 = 56.7684 -[04/26/2026 06:43:00] launching puck at (3.23, 0.24) with (-183.31, -13.78) force -[04/26/2026 06:43:06] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:43:06] launching puck at (3.79, -3.26) with (-264.14, 227.26) force -[04/26/2026 06:43:20] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:43:20] launching puck at (-1.29, 4.83) with (89.78, -336.69) force -[04/26/2026 06:43:25] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:43:25] launching puck at (-1.58, -4.75) with (109.78, 330.71) force -[04/26/2026 06:43:40] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:43:40] launching puck at (2.34, -4.42) with (-162.85, 308.06) force -[04/26/2026 06:43:45] force = 70 * 0.9782938 = 68.48057 -[04/26/2026 06:43:45] launching puck at (3.19, -3.60) with (-218.63, 246.26) force -[04/26/2026 06:43:53] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:43:53] launching puck at (0.07, 5.00) with (-4.61, -348.42) force -[04/26/2026 06:43:59] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:43:59] launching puck at (1.65, -4.72) with (-115.05, 328.91) force -[04/26/2026 06:44:10] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:44:10] launching puck at (-2.65, 4.24) with (185.03, -295.27) force -[04/26/2026 06:44:15] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:44:15] launching puck at (-1.57, -4.75) with (109.44, 330.82) force -[04/26/2026 06:44:43] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:44:43] launching puck at (-2.67, -4.23) with (186.20, 294.53) force -[04/26/2026 06:44:58] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:44:58] launching puck at (-5.00, -0.18) with (348.22, 12.67) force -[04/26/2026 06:45:04] force = 70 * 0.906949 = 63.48643 -[04/26/2026 06:45:04] launching puck at (2.83, -2.91) with (-179.63, 184.61) force -[04/26/2026 06:45:18] force = 70 * 0.8598857 = 60.192 -[04/26/2026 06:45:18] launching puck at (-3.38, -1.31) with (203.48, 79.01) force -[04/26/2026 06:45:24] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:45:24] launching puck at (-2.08, -4.54) with (145.24, 316.74) force -[04/26/2026 06:45:41] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:45:41] launching puck at (-4.93, -0.84) with (343.54, 58.34) force -[04/26/2026 06:45:46] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:45:46] launching puck at (-1.56, -4.75) with (108.71, 331.06) force -[04/26/2026 06:45:59] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:45:59] launching puck at (-0.28, 4.99) with (19.20, -347.92) force -[04/26/2026 06:46:07] force = 70 * 0.9266698 = 64.86689 -[04/26/2026 06:46:07] launching puck at (4.12, -1.05) with (-267.49, 68.01) force -[04/26/2026 06:46:32] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:46:32] launching puck at (0.83, -4.93) with (-58.01, 343.59) force -[04/26/2026 06:46:53] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:46:53] launching puck at (1.88, -4.63) with (-131.17, 322.82) force -[04/26/2026 06:47:15] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:47:15] launching puck at (0.44, -4.98) with (-30.62, 347.10) force -[04/26/2026 06:47:37] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:47:37] launching puck at (-3.63, -3.44) with (253.01, 239.59) force -[04/26/2026 06:47:59] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:47:59] launching puck at (-4.25, -2.63) with (296.23, 183.48) force -[04/26/2026 06:48:19] force = 70 * 0.8048692 = 56.34085 -[04/26/2026 06:48:19] launching puck at (2.45, 2.05) with (-138.12, -115.31) force -[04/26/2026 06:48:39] force = 70 * 0.9621809 = 67.35266 -[04/26/2026 06:48:39] launching puck at (-4.21, -1.93) with (283.47, 130.25) force -[04/26/2026 06:49:02] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:49:02] launching puck at (-2.18, -4.50) with (151.77, 313.66) force -[04/26/2026 06:49:23] force = 70 * 0.6979662 = 48.85763 -[04/26/2026 06:49:23] launching puck at (1.82, -1.75) with (-88.81, 85.34) force -[04/26/2026 06:49:23] Dedicated match PATCH success: 200 {"ok":true,"id":181} -[04/26/2026 06:49:24] Dedicated match PATCH success: 200 {"ok":true,"id":181,"winner_id":20,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26552.txt b/games/soccar/soccar_Data/26552.txt deleted file mode 100644 index c3be7c0..0000000 --- a/games/soccar/soccar_Data/26552.txt +++ /dev/null @@ -1,2 +0,0 @@ -[04/26/2026 18:35:16] Configured dedicated match reporting for match id 209 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 18:35:16] Starting server at port 26552 diff --git a/games/soccar/soccar_Data/26556.txt b/games/soccar/soccar_Data/26556.txt deleted file mode 100644 index 62062fe..0000000 --- a/games/soccar/soccar_Data/26556.txt +++ /dev/null @@ -1,139 +0,0 @@ -[04/25/2026 12:59:05] Configured dedicated match reporting for match id 110 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/25/2026 12:59:05] Starting server at port 26556 -[04/25/2026 12:59:07] Game started On Server -[04/25/2026 12:59:08] Dedicated match PATCH success: 200 {"ok":true,"id":110} -[04/25/2026 12:59:08] Dedicated match PATCH success: 200 {"ok":true,"id":110} -[04/25/2026 12:59:13] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:59:13] launching puck at (0.37, -4.99) with (-25.62, 347.51) force -[04/25/2026 12:59:33] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:59:33] launching puck at (-2.36, -4.41) with (164.61, 307.12) force -[04/25/2026 13:00:07] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:00:07] launching puck at (-4.24, -2.65) with (295.47, 184.72) force -[04/25/2026 13:00:12] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:00:12] launching puck at (0.17, -5.00) with (-11.96, 348.25) force -[04/25/2026 13:00:27] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:00:27] launching puck at (-0.36, -4.99) with (25.43, 347.52) force -[04/25/2026 13:00:34] force = 70 * 0.8771622 = 61.40136 -[04/25/2026 13:00:34] launching puck at (-3.70, -0.78) with (226.92, 48.11) force -[04/25/2026 13:00:38] force = 70 * 0.8691573 = 60.84101 -[04/25/2026 13:00:38] launching puck at (3.65, -0.65) with (-222.07, 39.32) force -[04/25/2026 13:00:45] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:00:45] launching puck at (-1.73, -4.69) with (120.81, 326.84) force -[04/25/2026 13:00:51] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:00:51] launching puck at (2.40, -4.39) with (-166.98, 305.84) force -[04/25/2026 13:01:04] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:01:04] launching puck at (0.00, 5.00) with (0.05, -348.45) force -[04/25/2026 13:01:12] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:01:12] launching puck at (2.73, 4.19) with (-190.25, -291.93) force -[04/25/2026 13:01:19] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:01:19] launching puck at (0.19, 5.00) with (-13.37, -348.20) force -[04/25/2026 13:01:25] force = 70 * 0.7276182 = 50.93327 -[04/25/2026 13:01:25] launching puck at (2.47, 1.06) with (-125.82, -54.15) force -[04/25/2026 13:01:29] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:01:29] launching puck at (-2.02, 4.57) with (140.96, -318.67) force -[04/25/2026 13:01:34] force = 70 * 0.8812693 = 61.68885 -[04/25/2026 13:01:34] launching puck at (3.81, -0.27) with (-234.75, 16.68) force -[04/25/2026 13:01:37] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:01:37] launching puck at (0.63, -4.96) with (-43.70, 345.70) force -[04/25/2026 13:01:45] force = 70 * 0.7782228 = 54.4756 -[04/25/2026 13:01:45] launching puck at (2.31, 1.93) with (-125.82, -104.95) force -[04/25/2026 13:01:50] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:01:50] launching puck at (1.13, 4.87) with (-78.61, -339.47) force -[04/25/2026 13:01:55] force = 70 * 0.7226018 = 50.58212 -[04/25/2026 13:01:55] launching puck at (2.65, -0.24) with (-133.99, 12.30) force -[04/25/2026 13:01:59] force = 70 * 0.989074 = 69.23518 -[04/25/2026 13:01:59] launching puck at (0.92, -4.84) with (-63.39, 335.25) force -[04/25/2026 13:02:04] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:02:04] launching puck at (0.07, -5.00) with (-5.18, 348.41) force -[04/25/2026 13:02:09] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:02:09] launching puck at (4.86, -1.17) with (-338.78, 81.52) force -[04/25/2026 13:02:14] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:02:14] launching puck at (4.23, -2.67) with (-294.82, 185.74) force -[04/25/2026 13:02:35] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:02:35] launching puck at (-2.73, -4.19) with (190.55, 291.74) force -[04/25/2026 13:02:42] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:02:42] launching puck at (0.43, 4.98) with (-29.66, -347.19) force -[04/25/2026 13:02:52] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:02:52] launching puck at (4.29, -2.57) with (-298.97, 178.99) force -[04/25/2026 13:02:58] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:02:58] launching puck at (2.24, 4.47) with (-156.05, -311.56) force -[04/25/2026 13:03:05] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:03:05] launching puck at (-2.33, 4.42) with (162.66, -308.16) force -[04/25/2026 13:03:13] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:03:13] launching puck at (0.68, 4.95) with (-47.63, -345.18) force -[04/25/2026 13:03:19] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:03:19] launching puck at (2.03, -4.57) with (-141.73, 318.33) force -[04/25/2026 13:03:23] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:03:23] launching puck at (-2.08, -4.54) with (145.26, 316.73) force -[04/25/2026 13:03:30] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:03:30] launching puck at (2.43, -4.37) with (-169.30, 304.56) force -[04/25/2026 13:03:39] force = 70 * 0.8638232 = 60.46762 -[04/25/2026 13:03:39] launching puck at (1.56, 3.31) with (-94.48, -200.15) force -[04/25/2026 13:03:44] force = 70 * 0.5864146 = 41.04902 -[04/25/2026 13:03:44] launching puck at (1.95, -0.28) with (-80.24, 11.32) force -[04/25/2026 13:03:49] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:03:49] launching puck at (-4.55, -2.07) with (317.10, 144.46) force -[04/25/2026 13:03:54] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:03:54] launching puck at (3.37, -3.70) with (-234.72, 257.54) force -[04/25/2026 13:03:58] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:03:58] launching puck at (0.40, -4.98) with (-27.67, 347.35) force -[04/25/2026 13:04:03] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:04:03] launching puck at (-0.57, 4.97) with (39.44, -346.21) force -[04/25/2026 13:04:15] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:04:15] launching puck at (2.56, 4.29) with (-178.74, -299.12) force -[04/25/2026 13:04:19] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:04:19] launching puck at (-2.03, 4.57) with (141.42, -318.46) force -[04/25/2026 13:04:26] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:04:26] launching puck at (0.25, 4.99) with (-17.50, -348.01) force -[04/25/2026 13:04:32] force = 70 * 0.6649945 = 46.54962 -[04/25/2026 13:04:32] launching puck at (2.26, 0.63) with (-105.27, -29.12) force -[04/25/2026 13:04:36] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:04:36] launching puck at (-2.23, -4.48) with (155.32, 311.92) force -[04/25/2026 13:04:40] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:04:40] launching puck at (2.73, 4.19) with (-190.04, -292.07) force -[04/25/2026 13:04:46] force = 70 * 0.6441975 = 45.09382 -[04/25/2026 13:04:46] launching puck at (-2.13, 0.70) with (96.13, -31.39) force -[04/25/2026 13:04:52] force = 70 * 0.7188267 = 50.31787 -[04/25/2026 13:04:52] launching puck at (2.64, -0.04) with (-132.73, 1.91) force -[04/25/2026 13:04:56] force = 70 * 0.7786619 = 54.50633 -[04/25/2026 13:04:56] launching puck at (-2.84, 1.01) with (154.60, -55.03) force -[04/25/2026 13:05:02] force = 70 * 0.8891995 = 62.24397 -[04/25/2026 13:05:02] launching puck at (3.76, 0.97) with (-234.34, -60.40) force -[04/25/2026 13:05:06] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:05:06] launching puck at (-2.94, -4.04) with (205.09, 281.70) force -[04/25/2026 13:05:11] force = 70 * 0.9841756 = 68.89229 -[04/25/2026 13:05:11] launching puck at (3.17, 3.70) with (-218.56, -254.89) force -[04/25/2026 13:05:15] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:05:15] launching puck at (3.73, 3.33) with (-260.02, -231.97) force -[04/25/2026 13:05:20] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:05:20] launching puck at (-2.55, -4.30) with (177.70, 299.74) force -[04/25/2026 13:05:28] force = 70 * 0.7264597 = 50.85218 -[04/25/2026 13:05:28] launching puck at (1.56, 2.18) with (-79.41, -110.92) force -[04/25/2026 13:05:38] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:05:38] launching puck at (2.09, 4.54) with (-145.77, -316.50) force -[04/25/2026 13:05:46] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:05:46] launching puck at (1.16, 4.86) with (-80.81, -338.95) force -[04/25/2026 13:05:59] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:05:59] launching puck at (1.39, 4.80) with (-96.81, -334.73) force -[04/25/2026 13:06:08] force = 70 * 0.9155039 = 64.08527 -[04/25/2026 13:06:08] launching puck at (-3.02, -2.84) with (193.41, 181.78) force -[04/25/2026 13:06:14] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:06:14] launching puck at (0.14, -5.00) with (-9.93, 348.31) force -[04/25/2026 13:06:21] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:06:21] launching puck at (-0.04, 5.00) with (2.50, -348.44) force -[04/25/2026 13:06:28] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:06:28] launching puck at (-1.60, -4.74) with (111.83, 330.02) force -[04/25/2026 13:06:32] force = 70 * 0.8847956 = 61.93569 -[04/25/2026 13:06:32] launching puck at (0.70, -3.78) with (-43.33, 234.31) force -[04/25/2026 13:06:39] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:06:39] launching puck at (-5.00, 0.08) with (348.41, -5.41) force -[04/25/2026 13:06:43] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:06:43] launching puck at (1.27, -4.84) with (-88.40, 337.05) force -[04/25/2026 13:06:48] force = 70 * 0.9437081 = 66.05957 -[04/25/2026 13:06:48] launching puck at (-4.34, -0.91) with (286.61, 60.03) force -[04/25/2026 13:06:56] force = 70 * 0.9541514 = 66.7906 -[04/25/2026 13:06:56] launching puck at (-1.57, 4.26) with (104.86, -284.85) force -[04/25/2026 13:07:05] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 13:07:05] launching puck at (0.12, -5.00) with (-8.19, 348.36) force -[04/25/2026 13:07:06] Dedicated match PATCH success: 200 {"ok":true,"id":110} -[04/25/2026 13:07:07] Dedicated match PATCH success: 200 {"ok":true,"id":110,"winner_id":15,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26577.txt b/games/soccar/soccar_Data/26577.txt deleted file mode 100644 index 1bd1b30..0000000 --- a/games/soccar/soccar_Data/26577.txt +++ /dev/null @@ -1,85 +0,0 @@ -[04/26/2026 06:09:58] Configured dedicated match reporting for match id 130 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:09:58] Starting server at port 26577 -[04/26/2026 06:10:19] Dedicated match PATCH success: 200 {"ok":true,"id":130} -[04/26/2026 06:10:21] Game started On Server -[04/26/2026 06:10:23] Dedicated match PATCH success: 200 {"ok":true,"id":130} -[04/26/2026 06:10:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:10:27] launching puck at (1.39, 4.80) with (-97.13, -334.64) force -[04/26/2026 06:10:35] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:10:35] launching puck at (-1.99, 4.59) with (138.62, -319.70) force -[04/26/2026 06:10:56] force = 70 * 0.7399008 = 51.79306 -[04/26/2026 06:10:56] launching puck at (2.75, 0.31) with (-142.20, -15.98) force -[04/26/2026 06:11:08] force = 70 * 0.4146042 = 29.02229 -[04/26/2026 06:11:08] launching puck at (1.14, 0.54) with (-33.16, -15.63) force -[04/26/2026 06:11:16] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:16] launching puck at (0.30, 4.99) with (-21.01, -347.82) force -[04/26/2026 06:11:37] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:37] launching puck at (2.62, 4.26) with (-182.64, -296.75) force -[04/26/2026 06:12:00] force = 70 * 0.9719877 = 68.03914 -[04/26/2026 06:12:00] launching puck at (-3.96, 2.61) with (269.22, -177.48) force -[04/26/2026 06:12:12] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:12:12] launching puck at (-0.76, 4.94) with (52.72, -344.44) force -[04/26/2026 06:12:21] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:12:21] launching puck at (0.85, 4.93) with (-58.90, -343.44) force -[04/26/2026 06:12:28] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:12:28] launching puck at (-0.52, 4.97) with (36.21, -346.57) force -[04/26/2026 06:12:34] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:12:34] launching puck at (-2.70, 4.21) with (188.21, -293.25) force -[04/26/2026 06:12:44] force = 70 * 0.9054495 = 63.38146 -[04/26/2026 06:12:44] launching puck at (-0.08, 4.04) with (5.24, -256.18) force -[04/26/2026 06:12:51] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:12:51] launching puck at (3.77, 3.28) with (-262.74, -228.88) force -[04/26/2026 06:13:00] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:13:00] launching puck at (-3.74, 3.32) with (260.61, -231.31) force -[04/26/2026 06:13:08] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:13:08] launching puck at (1.66, 4.72) with (-115.48, -328.76) force -[04/26/2026 06:13:16] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:13:16] launching puck at (-0.75, 4.94) with (52.39, -344.49) force -[04/26/2026 06:13:22] force = 70 * 0.4178215 = 29.24751 -[04/26/2026 06:13:22] launching puck at (0.38, -1.21) with (-11.07, 35.52) force -[04/26/2026 06:13:33] force = 70 * 0.9276971 = 64.9388 -[04/26/2026 06:13:33] launching puck at (-3.57, -2.34) with (231.77, 151.68) force -[04/26/2026 06:13:39] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:13:39] launching puck at (4.06, 2.92) with (-282.94, -203.38) force -[04/26/2026 06:13:45] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:13:45] launching puck at (0.87, 4.92) with (-60.83, -343.10) force -[04/26/2026 06:13:52] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:13:52] launching puck at (2.50, 4.33) with (-173.98, -301.91) force -[04/26/2026 06:13:58] force = 70 * 0.7493066 = 52.45146 -[04/26/2026 06:13:58] launching puck at (-0.56, 2.76) with (29.40, -145.00) force -[04/26/2026 06:14:06] force = 70 * 0.7645192 = 53.51634 -[04/26/2026 06:14:06] launching puck at (-1.91, -2.21) with (102.08, 118.13) force -[04/26/2026 06:14:13] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:13] launching puck at (-0.08, 5.00) with (5.31, -348.41) force -[04/26/2026 06:14:19] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:19] launching puck at (3.07, 3.95) with (-213.78, -275.17) force -[04/26/2026 06:14:25] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:25] launching puck at (4.99, 0.34) with (-347.65, -23.61) force -[04/26/2026 06:14:29] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:29] launching puck at (1.06, 4.89) with (-73.57, -340.60) force -[04/26/2026 06:14:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:36] launching puck at (0.04, 5.00) with (-2.44, -348.44) force -[04/26/2026 06:14:43] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:43] launching puck at (-0.73, 4.95) with (50.85, -344.72) force -[04/26/2026 06:14:50] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:50] launching puck at (0.73, 4.95) with (-50.55, -344.77) force -[04/26/2026 06:14:59] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:59] launching puck at (-0.90, 4.92) with (62.99, -342.71) force -[04/26/2026 06:15:05] force = 70 * 0.760055 = 53.20385 -[04/26/2026 06:15:05] launching puck at (-1.77, 2.28) with (94.16, -121.45) force -[04/26/2026 06:15:12] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:15:12] launching puck at (-0.44, 4.98) with (30.69, -347.10) force -[04/26/2026 06:15:22] force = 70 * 0.9585153 = 67.09607 -[04/26/2026 06:15:22] launching puck at (-3.89, 2.44) with (260.95, -163.80) force -[04/26/2026 06:15:28] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:15:28] launching puck at (2.84, 4.11) with (-198.03, -286.71) force -[04/26/2026 06:15:33] force = 70 * 0.7862565 = 55.03796 -[04/26/2026 06:15:33] launching puck at (-2.96, -0.77) with (163.08, 42.55) force -[04/26/2026 06:15:37] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:15:37] launching puck at (1.11, 4.87) with (-77.56, -339.71) force -[04/26/2026 06:15:43] force = 70 * 0.702185 = 49.15295 -[04/26/2026 06:15:43] launching puck at (-1.10, -2.30) with (53.83, 112.87) force -[04/26/2026 06:15:48] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:15:48] launching puck at (3.05, 3.96) with (-212.76, -275.96) force -[04/26/2026 06:15:49] Dedicated match PATCH success: 200 {"ok":true,"id":130} -[04/26/2026 06:15:51] Dedicated match PATCH success: 200 {"ok":true,"id":130,"winner_id":19,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26578.txt b/games/soccar/soccar_Data/26578.txt deleted file mode 100644 index afa3f97..0000000 --- a/games/soccar/soccar_Data/26578.txt +++ /dev/null @@ -1,2 +0,0 @@ -[04/26/2026 06:41:00] Configured dedicated match reporting for match id 180 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:41:00] Starting server at port 26578 diff --git a/games/soccar/soccar_Data/26593.txt b/games/soccar/soccar_Data/26593.txt deleted file mode 100644 index 1219d21..0000000 --- a/games/soccar/soccar_Data/26593.txt +++ /dev/null @@ -1,79 +0,0 @@ -[04/26/2026 06:44:44] Configured dedicated match reporting for match id 185 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:44:44] Starting server at port 26593 -[04/26/2026 06:44:58] Game started On Server -[04/26/2026 06:44:58] Dedicated match PATCH success: 200 {"ok":true,"id":185} -[04/26/2026 06:44:58] Dedicated match PATCH success: 200 {"ok":true,"id":185} -[04/26/2026 06:45:03] force = 70 * 0.6653411 = 46.57388 -[04/26/2026 06:45:03] launching puck at (-1.77, -1.55) with (82.29, 72.04) force -[04/26/2026 06:45:10] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:45:10] launching puck at (-0.10, 5.00) with (6.71, -348.39) force -[04/26/2026 06:45:16] force = 70 * 0.9314551 = 65.20186 -[04/26/2026 06:45:16] launching puck at (2.44, -3.54) with (-159.33, 231.03) force -[04/26/2026 06:45:24] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:45:24] launching puck at (0.74, 4.94) with (-51.81, -344.58) force -[04/26/2026 06:45:30] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:45:30] launching puck at (-0.03, -5.00) with (2.31, 348.45) force -[04/26/2026 06:45:39] force = 70 * 0.7456378 = 52.19465 -[04/26/2026 06:45:39] launching puck at (0.80, 2.68) with (-41.91, -139.90) force -[04/26/2026 06:45:47] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:45:47] launching puck at (0.13, -5.00) with (-9.06, 348.34) force -[04/26/2026 06:45:52] force = 70 * 0.5997403 = 41.98182 -[04/26/2026 06:45:52] launching puck at (-0.43, 1.99) with (18.02, -83.50) force -[04/26/2026 06:45:59] force = 70 * 0.7228992 = 50.60294 -[04/26/2026 06:45:59] launching puck at (-2.52, 0.85) with (127.73, -42.76) force -[04/26/2026 06:46:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:46:03] launching puck at (-4.27, -2.60) with (297.78, 180.96) force -[04/26/2026 06:46:08] force = 70 * 0.7161238 = 50.12866 -[04/26/2026 06:46:08] launching puck at (0.67, -2.54) with (-33.44, 127.15) force -[04/26/2026 06:46:15] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:46:15] launching puck at (0.14, 5.00) with (-9.69, -348.32) force -[04/26/2026 06:46:22] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:46:22] launching puck at (1.52, -4.76) with (-105.85, 331.99) force -[04/26/2026 06:46:28] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:46:28] launching puck at (-4.13, 2.82) with (287.91, -196.28) force -[04/26/2026 06:46:33] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:46:33] launching puck at (-1.93, -4.61) with (134.67, 321.38) force -[04/26/2026 06:46:41] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:46:41] launching puck at (-4.98, 0.45) with (347.06, -31.15) force -[04/26/2026 06:46:46] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:46:46] launching puck at (-2.63, -4.25) with (183.48, 296.24) force -[04/26/2026 06:46:52] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:46:52] launching puck at (-0.08, 5.00) with (5.51, -348.41) force -[04/26/2026 06:47:00] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:47:00] launching puck at (3.48, -3.59) with (-242.29, 250.43) force -[04/26/2026 06:47:09] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:47:09] launching puck at (-0.33, 4.99) with (22.97, -347.70) force -[04/26/2026 06:47:16] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:47:16] launching puck at (2.91, 4.06) with (-202.89, -283.29) force -[04/26/2026 06:47:23] force = 70 * 0.7991641 = 55.94149 -[04/26/2026 06:47:23] launching puck at (-2.19, 2.27) with (122.58, -126.80) force -[04/26/2026 06:47:28] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:47:28] launching puck at (-2.62, -4.26) with (182.37, 296.92) force -[04/26/2026 06:47:33] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:47:33] launching puck at (-3.91, 3.12) with (272.40, -217.29) force -[04/26/2026 06:47:39] force = 70 * 0.5586194 = 39.10336 -[04/26/2026 06:47:39] launching puck at (0.06, 1.84) with (-2.54, -71.81) force -[04/26/2026 06:47:45] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:47:45] launching puck at (4.66, 1.82) with (-324.63, -126.62) force -[04/26/2026 06:47:49] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:47:49] launching puck at (-1.83, -4.65) with (127.50, 324.29) force -[04/26/2026 06:47:54] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:47:54] launching puck at (3.34, 3.72) with (-232.76, -259.32) force -[04/26/2026 06:48:01] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:48:01] launching puck at (-1.69, -4.71) with (117.49, 328.05) force -[04/26/2026 06:48:08] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:48:08] launching puck at (-0.86, 4.93) with (59.92, -343.26) force -[04/26/2026 06:48:13] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:48:13] launching puck at (1.89, 4.63) with (-131.77, -322.58) force -[04/26/2026 06:48:18] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:48:18] launching puck at (-2.04, 4.56) with (142.30, -318.07) force -[04/26/2026 06:48:24] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:48:24] launching puck at (-4.70, -1.70) with (327.62, 118.67) force -[04/26/2026 06:48:30] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:48:30] launching puck at (2.71, -4.20) with (-189.07, 292.70) force -[04/26/2026 06:48:35] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:48:35] launching puck at (-4.66, -1.82) with (324.57, 126.78) force -[04/26/2026 06:48:36] Dedicated match PATCH success: 200 {"ok":true,"id":185} -[04/26/2026 06:48:37] Dedicated match PATCH success: 200 {"ok":true,"id":185,"winner_id":31,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} -[04/26/2026 18:34:06] Configured dedicated match reporting for match id 208 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 18:34:06] Starting server at port 26593 diff --git a/games/soccar/soccar_Data/26597.txt b/games/soccar/soccar_Data/26597.txt deleted file mode 100644 index fb12d7a..0000000 --- a/games/soccar/soccar_Data/26597.txt +++ /dev/null @@ -1,2 +0,0 @@ -[04/26/2026 18:35:16] Configured dedicated match reporting for match id 210 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 18:35:16] Starting server at port 26597 diff --git a/games/soccar/soccar_Data/26599.txt b/games/soccar/soccar_Data/26599.txt deleted file mode 100644 index 1d030d2..0000000 --- a/games/soccar/soccar_Data/26599.txt +++ /dev/null @@ -1,2 +0,0 @@ -[04/26/2026 05:57:33] Configured dedicated match reporting for match id 114 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 05:57:33] Starting server at port 26599 diff --git a/games/soccar/soccar_Data/26600.txt b/games/soccar/soccar_Data/26600.txt deleted file mode 100644 index c27ba40..0000000 --- a/games/soccar/soccar_Data/26600.txt +++ /dev/null @@ -1,125 +0,0 @@ -[04/26/2026 06:36:53] Configured dedicated match reporting for match id 172 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:36:53] Starting server at port 26600 -[04/26/2026 06:36:59] Game started On Server -[04/26/2026 06:36:59] Dedicated match PATCH success: 200 {"ok":true,"id":172} -[04/26/2026 06:36:59] Dedicated match PATCH success: 200 {"ok":true,"id":172} -[04/26/2026 06:37:04] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:04] launching puck at (-0.18, -5.00) with (12.57, 348.23) force -[04/26/2026 06:37:12] force = 70 * 0.5292975 = 37.05082 -[04/26/2026 06:37:12] launching puck at (0.41, 1.64) with (-15.03, -60.79) force -[04/26/2026 06:37:22] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:22] launching puck at (0.95, -4.91) with (-65.90, 342.16) force -[04/26/2026 06:37:38] force = 70 * 0.9150925 = 64.05648 -[04/26/2026 06:37:38] launching puck at (1.08, 3.99) with (-69.40, -255.80) force -[04/26/2026 06:37:45] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:45] launching puck at (2.02, -4.57) with (-141.10, 318.61) force -[04/26/2026 06:37:51] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:51] launching puck at (4.35, 2.47) with (-303.09, -171.91) force -[04/26/2026 06:37:56] force = 70 * 0.608005 = 42.56035 -[04/26/2026 06:37:56] launching puck at (-1.69, -1.20) with (71.83, 51.16) force -[04/26/2026 06:38:04] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:38:04] launching puck at (-0.36, -4.99) with (25.04, 347.55) force -[04/26/2026 06:38:11] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:38:11] launching puck at (1.24, -4.84) with (-86.42, 337.57) force -[04/26/2026 06:38:20] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:38:20] launching puck at (0.09, 5.00) with (-6.23, -348.40) force -[04/26/2026 06:38:26] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:38:26] launching puck at (-3.12, -3.91) with (217.29, 272.41) force -[04/26/2026 06:38:33] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:38:33] launching puck at (-1.31, 4.83) with (91.31, -336.28) force -[04/26/2026 06:38:38] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:38:38] launching puck at (-4.04, -2.95) with (281.46, 205.42) force -[04/26/2026 06:38:45] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:38:45] launching puck at (-2.10, 4.54) with (146.34, -316.23) force -[04/26/2026 06:38:51] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:38:51] launching puck at (0.21, -5.00) with (-14.92, 348.13) force -[04/26/2026 06:38:59] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:38:59] launching puck at (-3.25, 3.80) with (226.24, -265.02) force -[04/26/2026 06:39:06] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:06] launching puck at (1.74, -4.69) with (-121.39, 326.63) force -[04/26/2026 06:39:17] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:17] launching puck at (-0.86, 4.93) with (59.91, -343.26) force -[04/26/2026 06:39:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:27] launching puck at (-0.49, -4.98) with (34.32, 346.76) force -[04/26/2026 06:39:34] force = 70 * 0.9609458 = 67.26621 -[04/26/2026 06:39:34] launching puck at (0.60, 4.58) with (-40.37, -308.02) force -[04/26/2026 06:39:40] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:40] launching puck at (2.18, -4.50) with (-151.74, 313.68) force -[04/26/2026 06:39:47] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:47] launching puck at (3.72, 3.34) with (-259.55, -232.49) force -[04/26/2026 06:39:56] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:56] launching puck at (0.10, -5.00) with (-6.70, 348.39) force -[04/26/2026 06:40:01] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:40:01] launching puck at (4.32, -2.52) with (-301.09, 175.39) force -[04/26/2026 06:40:09] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:40:09] launching puck at (1.92, -4.62) with (-133.53, 321.85) force -[04/26/2026 06:40:15] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:40:15] launching puck at (4.99, -0.34) with (-347.64, 23.72) force -[04/26/2026 06:40:23] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:40:23] launching puck at (1.59, -4.74) with (-110.77, 330.38) force -[04/26/2026 06:40:28] force = 70 * 0.9701644 = 67.91151 -[04/26/2026 06:40:28] launching puck at (2.96, 3.67) with (-201.07, -249.57) force -[04/26/2026 06:40:39] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:40:39] launching puck at (3.42, 3.64) with (-238.68, -253.87) force -[04/26/2026 06:40:46] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:40:46] launching puck at (4.23, -2.67) with (-294.70, 185.93) force -[04/26/2026 06:40:56] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:40:56] launching puck at (-0.01, 5.00) with (0.60, -348.45) force -[04/26/2026 06:41:02] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:41:02] launching puck at (-0.03, 5.00) with (1.89, -348.45) force -[04/26/2026 06:41:10] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:41:10] launching puck at (2.43, 4.37) with (-169.30, -304.56) force -[04/26/2026 06:41:18] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:41:18] launching puck at (-0.03, 5.00) with (2.15, -348.45) force -[04/26/2026 06:41:24] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:41:24] launching puck at (4.20, -2.71) with (-292.93, 188.72) force -[04/26/2026 06:41:33] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:41:33] launching puck at (4.60, 1.97) with (-320.41, -136.95) force -[04/26/2026 06:41:39] force = 70 * 0.8368196 = 58.57738 -[04/26/2026 06:41:39] launching puck at (-3.24, 1.14) with (189.89, -66.77) force -[04/26/2026 06:41:47] force = 70 * 0.6931829 = 48.5228 -[04/26/2026 06:41:47] launching puck at (-2.43, -0.54) with (118.14, 26.37) force -[04/26/2026 06:41:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:41:55] launching puck at (-3.76, -3.30) with (261.82, 229.93) force -[04/26/2026 06:42:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:42:03] launching puck at (1.54, 4.76) with (-107.22, -331.55) force -[04/26/2026 06:42:09] force = 70 * 0.6074567 = 42.52197 -[04/26/2026 06:42:09] launching puck at (-1.59, -1.32) with (67.77, 56.13) force -[04/26/2026 06:42:18] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:42:18] launching puck at (-0.14, 5.00) with (9.77, -348.32) force -[04/26/2026 06:42:24] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:42:24] launching puck at (-1.48, -4.78) with (103.09, 332.86) force -[04/26/2026 06:42:30] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:42:30] launching puck at (0.31, -4.99) with (-21.29, 347.80) force -[04/26/2026 06:42:38] force = 70 * 0.7286484 = 51.00539 -[04/26/2026 06:42:38] launching puck at (-2.69, 0.23) with (136.99, -11.61) force -[04/26/2026 06:42:45] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:42:45] launching puck at (-0.44, 4.98) with (30.67, -347.10) force -[04/26/2026 06:42:50] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:42:50] launching puck at (-4.17, -2.76) with (290.62, 192.25) force -[04/26/2026 06:42:57] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:42:57] launching puck at (-2.75, 4.17) with (191.74, -290.96) force -[04/26/2026 06:43:07] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:43:07] launching puck at (-0.26, -4.99) with (17.93, 347.99) force -[04/26/2026 06:43:13] force = 70 * 0.9812132 = 68.68492 -[04/26/2026 06:43:13] launching puck at (3.55, 3.29) with (-244.00, -225.88) force -[04/26/2026 06:43:25] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:43:25] launching puck at (4.93, 0.83) with (-343.60, -57.97) force -[04/26/2026 06:43:32] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:43:32] launching puck at (3.81, 3.23) with (-265.71, -225.43) force -[04/26/2026 06:43:39] force = 70 * 0.9804469 = 68.63128 -[04/26/2026 06:43:39] launching puck at (-4.27, -2.27) with (292.93, 155.55) force -[04/26/2026 06:43:46] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:43:46] launching puck at (3.13, 3.90) with (-218.17, -271.70) force -[04/26/2026 06:43:55] force = 70 * 0.8868206 = 62.07744 -[04/26/2026 06:43:55] launching puck at (3.44, -1.77) with (-213.33, 109.93) force -[04/26/2026 06:44:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:44:03] launching puck at (2.30, 4.44) with (-160.35, -309.36) force -[04/26/2026 06:44:12] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:44:12] launching puck at (4.94, 0.77) with (-344.25, -53.98) force -[04/26/2026 06:44:18] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:44:18] launching puck at (2.37, 4.40) with (-165.29, -306.76) force -[04/26/2026 06:44:24] force = 70 * 0.7453493 = 52.17445 -[04/26/2026 06:44:24] launching puck at (-2.75, -0.49) with (143.60, 25.74) force -[04/26/2026 06:44:24] Dedicated match PATCH success: 200 {"ok":true,"id":172} -[04/26/2026 06:44:25] Dedicated match PATCH success: 200 {"ok":true,"id":172,"winner_id":27,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26603.txt b/games/soccar/soccar_Data/26603.txt deleted file mode 100644 index 700fb20..0000000 --- a/games/soccar/soccar_Data/26603.txt +++ /dev/null @@ -1,127 +0,0 @@ -[04/25/2026 06:22:30] Configured dedicated match reporting for match id 104 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/25/2026 06:22:30] Starting server at port 26603 -[04/25/2026 06:22:34] Game started On Server -[04/25/2026 06:22:35] Dedicated match PATCH success: 200 {"ok":true,"id":104} -[04/25/2026 06:22:35] Dedicated match PATCH success: 200 {"ok":true,"id":104} -[04/25/2026 06:22:40] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:22:40] launching puck at (4.88, -1.09) with (-340.05, 76.07) force -[04/25/2026 06:22:46] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:22:46] launching puck at (-4.42, 2.33) with (308.18, -162.61) force -[04/25/2026 06:22:53] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:22:53] launching puck at (-5.00, -0.01) with (348.45, 0.46) force -[04/25/2026 06:23:00] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:23:00] launching puck at (1.84, 4.65) with (-128.48, -323.90) force -[04/25/2026 06:23:06] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:23:06] launching puck at (-2.97, -4.02) with (207.02, 280.29) force -[04/25/2026 06:23:11] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:23:11] launching puck at (-4.05, 2.93) with (282.21, -204.39) force -[04/25/2026 06:23:18] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:23:18] launching puck at (-2.87, 4.09) with (199.99, -285.35) force -[04/25/2026 06:23:26] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:23:26] launching puck at (-0.41, -4.98) with (28.76, 347.26) force -[04/25/2026 06:23:33] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:23:33] launching puck at (-0.05, 5.00) with (3.83, -348.43) force -[04/25/2026 06:23:40] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:23:40] launching puck at (-1.95, -4.60) with (135.87, 320.87) force -[04/25/2026 06:23:46] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:23:46] launching puck at (-1.96, 4.60) with (136.35, -320.67) force -[04/25/2026 06:23:51] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:23:51] launching puck at (-2.64, 4.25) with (183.95, -295.94) force -[04/25/2026 06:23:56] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:23:56] launching puck at (-3.08, 3.94) with (214.52, -274.59) force -[04/25/2026 06:24:09] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:24:09] launching puck at (0.10, -5.00) with (-6.66, 348.39) force -[04/25/2026 06:24:16] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:24:16] launching puck at (4.45, 2.28) with (-310.13, -158.86) force -[04/25/2026 06:24:21] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:24:21] launching puck at (-2.83, -4.12) with (197.11, 287.34) force -[04/25/2026 06:24:30] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:24:30] launching puck at (-1.85, 4.64) with (129.04, -323.68) force -[04/25/2026 06:24:36] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:24:36] launching puck at (-0.79, 4.94) with (54.87, -344.11) force -[04/25/2026 06:24:47] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:24:47] launching puck at (-1.57, 4.75) with (109.36, -330.85) force -[04/25/2026 06:24:56] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:24:56] launching puck at (-3.67, -3.40) with (255.70, 236.72) force -[04/25/2026 06:25:03] force = 70 * 0.7540545 = 52.78381 -[04/25/2026 06:25:04] launching puck at (-2.35, -1.62) with (123.96, 85.27) force -[04/25/2026 06:25:09] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:25:09] launching puck at (-4.90, 0.97) with (341.80, -67.77) force -[04/25/2026 06:25:20] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:25:20] launching puck at (-1.11, 4.87) with (77.52, -339.72) force -[04/25/2026 06:25:25] force = 70 * 0.8940094 = 62.58066 -[04/25/2026 06:25:25] launching puck at (3.62, -1.54) with (-226.60, 96.09) force -[04/25/2026 06:25:37] force = 70 * 0.6972005 = 48.80404 -[04/25/2026 06:25:37] launching puck at (2.18, -1.25) with (-106.47, 61.24) force -[04/25/2026 06:25:43] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:25:43] launching puck at (0.49, -4.98) with (-33.81, 346.81) force -[04/25/2026 06:25:51] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:25:51] launching puck at (-2.53, -4.31) with (176.37, 300.52) force -[04/25/2026 06:25:55] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:25:55] launching puck at (-2.61, -4.26) with (181.96, 297.17) force -[04/25/2026 06:26:00] force = 70 * 0.9329842 = 65.3089 -[04/25/2026 06:26:00] launching puck at (0.52, -4.29) with (-34.24, 280.06) force -[04/25/2026 06:26:05] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:26:05] launching puck at (-2.95, -4.03) with (205.93, 281.09) force -[04/25/2026 06:26:10] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:26:10] launching puck at (-2.94, -4.04) with (205.12, 281.68) force -[04/25/2026 06:26:14] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:26:14] launching puck at (2.95, -4.03) with (-205.87, 281.14) force -[04/25/2026 06:26:18] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:26:18] launching puck at (0.40, -4.98) with (-28.21, 347.31) force -[04/25/2026 06:26:25] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:26:25] launching puck at (-4.93, -0.85) with (343.32, 59.58) force -[04/25/2026 06:26:38] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:26:38] launching puck at (1.02, -4.90) with (-70.84, 341.18) force -[04/25/2026 06:26:43] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:26:43] launching puck at (3.60, -3.47) with (-250.73, 241.98) force -[04/25/2026 06:26:47] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:26:47] launching puck at (2.70, 4.21) with (-187.84, -293.49) force -[04/25/2026 06:26:53] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:26:53] launching puck at (-0.84, -4.93) with (58.88, 343.44) force -[04/25/2026 06:26:58] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:26:58] launching puck at (4.77, -1.51) with (-332.29, 104.91) force -[04/25/2026 06:27:02] force = 70 * 0.7547099 = 52.82969 -[04/25/2026 06:27:02] launching puck at (-2.57, -1.25) with (135.63, 65.93) force -[04/25/2026 06:27:11] force = 70 * 0.7943966 = 55.60777 -[04/25/2026 06:27:11] launching puck at (1.44, -2.77) with (-79.97, 153.89) force -[04/25/2026 06:27:17] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:27:17] launching puck at (-2.42, -4.38) with (168.56, 304.97) force -[04/25/2026 06:27:24] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:27:24] launching puck at (-0.63, 4.96) with (44.19, -345.64) force -[04/25/2026 06:27:31] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:27:31] launching puck at (0.24, 4.99) with (-16.84, -348.05) force -[04/25/2026 06:27:36] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:27:36] launching puck at (1.35, 4.82) with (-93.81, -335.59) force -[04/25/2026 06:27:54] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:27:54] launching puck at (4.83, -1.29) with (-336.62, 90.05) force -[04/25/2026 06:28:04] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:28:04] launching puck at (2.23, 4.47) with (-155.53, -311.82) force -[04/25/2026 06:28:10] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:28:10] launching puck at (1.28, 4.83) with (-89.00, -336.89) force -[04/25/2026 06:28:18] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:28:18] launching puck at (-4.52, 2.14) with (314.93, -149.12) force -[04/25/2026 06:28:23] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:28:23] launching puck at (-1.02, -4.89) with (71.14, 341.11) force -[04/25/2026 06:28:30] force = 70 * 0.9855144 = 68.98601 -[04/25/2026 06:28:30] launching puck at (-4.87, -0.39) with (336.17, 26.92) force -[04/25/2026 06:28:35] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:28:35] launching puck at (1.19, -4.86) with (-83.04, 338.41) force -[04/25/2026 06:28:44] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:28:44] launching puck at (-0.07, 5.00) with (5.20, -348.41) force -[04/25/2026 06:28:50] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:28:50] launching puck at (-2.15, -4.51) with (149.85, 314.59) force -[04/25/2026 06:28:56] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:28:56] launching puck at (1.04, 4.89) with (-72.23, -340.89) force -[04/25/2026 06:29:00] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:29:00] launching puck at (1.64, 4.72) with (-114.03, -329.27) force -[04/25/2026 06:29:06] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:29:06] launching puck at (4.81, 1.35) with (-335.55, -93.94) force -[04/25/2026 06:29:13] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:29:13] launching puck at (2.30, 4.44) with (-160.22, -309.43) force -[04/25/2026 06:29:18] force = 70 * 0.9309825 = 65.16877 -[04/25/2026 06:29:18] launching puck at (-0.01, -4.30) with (0.74, 280.18) force -[04/25/2026 06:29:24] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 06:29:24] launching puck at (-0.13, -5.00) with (8.80, 348.34) force -[04/25/2026 06:29:26] Dedicated match PATCH success: 200 {"ok":true,"id":104} -[04/25/2026 06:29:28] Dedicated match PATCH success: 200 {"ok":true,"id":104,"winner_id":5,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26616.txt b/games/soccar/soccar_Data/26616.txt deleted file mode 100644 index 0c36a4e..0000000 --- a/games/soccar/soccar_Data/26616.txt +++ /dev/null @@ -1,105 +0,0 @@ -[04/26/2026 06:06:00] Configured dedicated match reporting for match id 125 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:06:00] Starting server at port 26616 -[04/26/2026 06:06:12] Dedicated match PATCH success: 200 {"ok":true,"id":125} -[04/26/2026 06:06:20] Game started On Server -[04/26/2026 06:06:21] Dedicated match PATCH success: 200 {"ok":true,"id":125} -[04/26/2026 06:06:26] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:06:26] launching puck at (4.91, -0.93) with (-342.32, 65.11) force -[04/26/2026 06:06:33] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:06:33] launching puck at (-2.06, 4.55) with (143.80, -317.40) force -[04/26/2026 06:06:38] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:06:38] launching puck at (-3.16, -3.88) with (220.15, 270.10) force -[04/26/2026 06:06:51] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:06:51] launching puck at (-1.29, 4.83) with (90.09, -336.61) force -[04/26/2026 06:06:56] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:06:56] launching puck at (4.56, -2.05) with (-317.76, 142.99) force -[04/26/2026 06:07:04] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:04] launching puck at (0.42, -4.98) with (-29.58, 347.20) force -[04/26/2026 06:07:10] force = 70 * 0.9852365 = 68.96656 -[04/26/2026 06:07:10] launching puck at (1.76, 4.56) with (-121.60, -314.23) force -[04/26/2026 06:07:18] force = 70 * 0.9119079 = 63.83355 -[04/26/2026 06:07:18] launching puck at (-0.06, -4.11) with (3.51, 262.08) force -[04/26/2026 06:07:24] force = 70 * 0.9454098 = 66.17868 -[04/26/2026 06:07:24] launching puck at (0.32, -4.44) with (-20.89, 293.81) force -[04/26/2026 06:07:30] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:30] launching puck at (-0.29, 4.99) with (19.88, -347.89) force -[04/26/2026 06:07:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:36] launching puck at (4.66, 1.82) with (-324.54, -126.86) force -[04/26/2026 06:07:44] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:44] launching puck at (1.48, 4.78) with (-102.96, -332.89) force -[04/26/2026 06:07:49] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:49] launching puck at (1.20, 4.86) with (-83.31, -338.35) force -[04/26/2026 06:07:58] force = 70 * 0.7560191 = 52.92134 -[04/26/2026 06:07:58] launching puck at (-2.43, -1.51) with (128.56, 80.16) force -[04/26/2026 06:08:06] force = 70 * 0.8781888 = 61.47322 -[04/26/2026 06:08:06] launching puck at (-3.62, 1.13) with (222.26, -69.27) force -[04/26/2026 06:08:13] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:13] launching puck at (-1.94, 4.61) with (134.87, -321.30) force -[04/26/2026 06:08:18] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:18] launching puck at (-4.96, -0.62) with (345.79, 42.98) force -[04/26/2026 06:08:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:27] launching puck at (-5.00, -0.08) with (348.41, 5.50) force -[04/26/2026 06:08:32] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:32] launching puck at (-2.27, -4.46) with (158.02, 310.56) force -[04/26/2026 06:08:40] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:40] launching puck at (-3.95, 3.07) with (275.17, -213.77) force -[04/26/2026 06:08:45] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:45] launching puck at (-3.65, 3.42) with (254.13, -238.41) force -[04/26/2026 06:08:52] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:52] launching puck at (-2.17, 4.50) with (151.33, -313.88) force -[04/26/2026 06:08:56] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:56] launching puck at (-2.73, -4.19) with (190.16, 291.99) force -[04/26/2026 06:09:04] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:09:04] launching puck at (1.27, -4.84) with (-88.61, 337.00) force -[04/26/2026 06:09:09] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:09:09] launching puck at (-2.57, -4.29) with (179.39, 298.73) force -[04/26/2026 06:09:16] force = 70 * 0.9829764 = 68.80835 -[04/26/2026 06:09:16] launching puck at (-4.83, 0.58) with (332.06, -39.90) force -[04/26/2026 06:09:20] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:09:20] launching puck at (-0.53, 4.97) with (36.81, -346.50) force -[04/26/2026 06:09:29] force = 70 * 0.8695593 = 60.86916 -[04/26/2026 06:09:29] launching puck at (3.71, 0.03) with (-225.83, -1.90) force -[04/26/2026 06:09:37] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:09:37] launching puck at (4.92, -0.90) with (-342.78, 62.61) force -[04/26/2026 06:09:42] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:09:42] launching puck at (-2.16, 4.51) with (150.74, -314.16) force -[04/26/2026 06:09:48] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:09:48] launching puck at (-1.28, -4.83) with (89.03, 336.89) force -[04/26/2026 06:09:53] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:09:53] launching puck at (-3.10, 3.93) with (215.76, -273.62) force -[04/26/2026 06:10:01] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:10:01] launching puck at (-4.99, 0.28) with (347.91, -19.49) force -[04/26/2026 06:10:06] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:10:06] launching puck at (1.19, 4.86) with (-82.89, -338.45) force -[04/26/2026 06:10:10] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:10:10] launching puck at (-1.13, -4.87) with (78.82, 339.42) force -[04/26/2026 06:10:22] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:10:22] launching puck at (-0.63, -4.96) with (43.85, 345.68) force -[04/26/2026 06:10:27] force = 70 * 0.7366324 = 51.56427 -[04/26/2026 06:10:27] launching puck at (2.69, -0.56) with (-138.52, 28.62) force -[04/26/2026 06:10:42] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:10:42] launching puck at (-1.55, 4.75) with (107.96, -331.31) force -[04/26/2026 06:10:46] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:10:46] launching puck at (-2.07, -4.55) with (144.52, 317.07) force -[04/26/2026 06:10:52] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:10:52] launching puck at (-3.50, 3.57) with (244.15, -248.62) force -[04/26/2026 06:10:57] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:10:57] launching puck at (1.37, -4.81) with (-95.34, 335.16) force -[04/26/2026 06:11:02] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:02] launching puck at (3.27, 3.78) with (-227.77, -263.71) force -[04/26/2026 06:11:08] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:08] launching puck at (-2.10, -4.54) with (146.45, 316.19) force -[04/26/2026 06:11:14] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:14] launching puck at (3.63, 3.44) with (-253.10, -239.50) force -[04/26/2026 06:11:23] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:23] launching puck at (-0.30, -4.99) with (21.25, 347.80) force -[04/26/2026 06:11:29] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:29] launching puck at (0.68, -4.95) with (-47.33, 345.22) force -[04/26/2026 06:11:33] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:33] launching puck at (-0.07, -5.00) with (5.21, 348.41) force -[04/26/2026 06:11:44] force = 70 * 0.9953174 = 69.67222 -[04/26/2026 06:11:44] launching puck at (4.49, 2.20) with (-312.53, -153.43) force -[04/26/2026 06:11:49] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:11:49] launching puck at (-1.84, -4.65) with (128.06, 324.07) force -[04/26/2026 06:11:50] Dedicated match PATCH success: 200 {"ok":true,"id":125} -[04/26/2026 06:11:51] Dedicated match PATCH success: 200 {"ok":true,"id":125,"winner_id":5,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26628.txt b/games/soccar/soccar_Data/26628.txt deleted file mode 100644 index 0c4b22b..0000000 --- a/games/soccar/soccar_Data/26628.txt +++ /dev/null @@ -1,115 +0,0 @@ -[04/25/2026 12:28:58] Configured dedicated match reporting for match id 106 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/25/2026 12:28:58] Starting server at port 26628 -[04/25/2026 12:29:04] Dedicated match PATCH success: 200 {"ok":true,"id":106} -[04/25/2026 12:29:04] Game started On Server -[04/25/2026 12:29:04] Dedicated match PATCH success: 200 {"ok":true,"id":106} -[04/25/2026 12:29:13] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:29:13] launching puck at (4.54, -2.10) with (-316.36, 146.06) force -[04/25/2026 12:29:20] force = 70 * 0.9859713 = 69.01799 -[04/25/2026 12:29:20] launching puck at (1.90, 4.51) with (-131.21, -311.22) force -[04/25/2026 12:29:29] force = 70 * 0.78755 = 55.1285 -[04/25/2026 12:29:29] launching puck at (0.34, 3.05) with (-18.86, -168.25) force -[04/25/2026 12:29:36] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:29:36] launching puck at (2.41, 4.38) with (-167.70, -305.45) force -[04/25/2026 12:29:44] force = 70 * 0.892847 = 62.49929 -[04/25/2026 12:29:44] launching puck at (3.90, 0.39) with (-243.90, -24.44) force -[04/25/2026 12:29:51] force = 70 * 0.7350693 = 51.45485 -[04/25/2026 12:29:51] launching puck at (-2.71, 0.34) with (139.55, -17.62) force -[04/25/2026 12:29:59] force = 70 * 0.9655439 = 67.58807 -[04/25/2026 12:29:59] launching puck at (-4.64, -0.53) with (313.53, 35.54) force -[04/25/2026 12:30:06] force = 70 * 0.5153602 = 36.07522 -[04/25/2026 12:30:06] launching puck at (1.61, 0.17) with (-58.25, -6.09) force -[04/25/2026 12:30:12] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:30:12] launching puck at (-2.62, -4.26) with (182.94, 296.57) force -[04/25/2026 12:30:18] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:30:18] launching puck at (-0.79, 4.94) with (55.04, -344.08) force -[04/25/2026 12:30:25] force = 70 * 0.8011439 = 56.08007 -[04/25/2026 12:30:25] launching puck at (3.16, -0.12) with (-177.47, 6.48) force -[04/25/2026 12:30:29] force = 70 * 0.7320545 = 51.24381 -[04/25/2026 12:30:29] launching puck at (0.29, 2.70) with (-14.62, -138.39) force -[04/25/2026 12:30:38] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:30:38] launching puck at (-3.05, 3.97) with (212.26, -276.34) force -[04/25/2026 12:30:44] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:30:44] launching puck at (-1.33, 4.82) with (92.70, -335.90) force -[04/25/2026 12:30:50] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:30:50] launching puck at (-0.69, -4.95) with (47.75, 345.17) force -[04/25/2026 12:30:55] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:30:55] launching puck at (-3.74, 3.32) with (260.60, -231.31) force -[04/25/2026 12:31:03] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:31:03] launching puck at (-0.86, -4.93) with (59.96, 343.26) force -[04/25/2026 12:31:16] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:31:16] launching puck at (0.18, 5.00) with (-12.40, -348.23) force -[04/25/2026 12:31:23] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:31:23] launching puck at (-0.07, -5.00) with (4.87, 348.42) force -[04/25/2026 12:31:30] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:31:30] launching puck at (-2.39, 4.39) with (166.42, -306.14) force -[04/25/2026 12:31:39] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:31:39] launching puck at (-1.18, -4.86) with (82.51, 338.54) force -[04/25/2026 12:31:48] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:31:48] launching puck at (3.84, 3.20) with (-267.57, -223.22) force -[04/25/2026 12:31:53] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:31:53] launching puck at (3.32, -3.74) with (-231.15, 260.75) force -[04/25/2026 12:31:59] force = 70 * 0.6183572 = 43.285 -[04/25/2026 12:31:59] launching puck at (1.10, -1.81) with (-47.61, 78.43) force -[04/25/2026 12:32:13] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:32:13] launching puck at (1.06, -4.89) with (-74.21, 340.46) force -[04/25/2026 12:32:18] force = 70 * 0.5523059 = 38.66142 -[04/25/2026 12:32:18] launching puck at (-1.80, -0.10) with (69.70, 3.83) force -[04/25/2026 12:32:27] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:32:27] launching puck at (1.39, -4.80) with (-96.81, 334.74) force -[04/25/2026 12:32:32] force = 70 * 0.8035907 = 56.25135 -[04/25/2026 12:32:32] launching puck at (0.08, -3.18) with (-4.55, 179.07) force -[04/25/2026 12:32:43] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:32:43] launching puck at (0.14, 5.00) with (-9.52, -348.32) force -[04/25/2026 12:32:49] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:32:49] launching puck at (0.68, -4.95) with (-47.66, 345.18) force -[04/25/2026 12:32:55] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:32:55] launching puck at (4.96, 0.61) with (-345.87, -42.36) force -[04/25/2026 12:33:00] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:33:00] launching puck at (0.45, -4.98) with (-31.54, 347.02) force -[04/25/2026 12:33:05] force = 70 * 0.9827378 = 68.79164 -[04/25/2026 12:33:05] launching puck at (4.83, -0.53) with (-332.17, 36.64) force -[04/25/2026 12:33:10] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:33:10] launching puck at (-0.84, -4.93) with (58.89, 343.44) force -[04/25/2026 12:33:19] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:33:19] launching puck at (-0.87, 4.92) with (60.50, -343.16) force -[04/25/2026 12:33:25] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:33:25] launching puck at (2.57, -4.29) with (-178.94, 299.00) force -[04/25/2026 12:33:33] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:33:33] launching puck at (3.22, 3.82) with (-224.55, -266.45) force -[04/25/2026 12:33:41] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:33:41] launching puck at (4.33, 2.50) with (-301.68, -174.38) force -[04/25/2026 12:33:49] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:33:49] launching puck at (0.94, 4.91) with (-65.27, -342.29) force -[04/25/2026 12:33:57] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:33:57] launching puck at (-1.69, -4.71) with (117.71, 327.97) force -[04/25/2026 12:34:03] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:34:03] launching puck at (-4.94, 0.80) with (343.92, -56.00) force -[04/25/2026 12:34:08] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:34:08] launching puck at (4.61, -1.94) with (-321.17, 135.17) force -[04/25/2026 12:34:18] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:34:18] launching puck at (2.27, 4.45) with (-158.47, -310.33) force -[04/25/2026 12:34:24] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:34:24] launching puck at (1.11, -4.88) with (-77.24, 339.79) force -[04/25/2026 12:34:33] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:34:33] launching puck at (2.56, 4.29) with (-178.46, -299.29) force -[04/25/2026 12:34:43] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:34:43] launching puck at (3.07, 3.95) with (-213.91, -275.07) force -[04/25/2026 12:34:55] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:34:55] launching puck at (-1.02, 4.89) with (71.27, -341.09) force -[04/25/2026 12:35:01] force = 70 * 0.8984573 = 62.89201 -[04/25/2026 12:35:01] launching puck at (-3.66, -1.56) with (229.97, 98.08) force -[04/25/2026 12:35:11] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:35:11] launching puck at (3.41, 3.66) with (-237.71, -254.78) force -[04/25/2026 12:35:16] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:35:16] launching puck at (-4.93, -0.83) with (343.58, 58.08) force -[04/25/2026 12:35:22] force = 70 * 0.9395385 = 65.76769 -[04/25/2026 12:35:22] launching puck at (-4.34, 0.67) with (285.25, -44.07) force -[04/25/2026 12:35:36] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:35:36] launching puck at (0.40, 4.98) with (-27.58, -347.36) force -[04/25/2026 12:35:47] force = 70 * 0.8854407 = 61.98085 -[04/25/2026 12:35:47] launching puck at (-3.81, -0.55) with (236.35, 34.25) force -[04/25/2026 12:35:53] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:35:53] launching puck at (-0.59, -4.97) with (40.92, 346.04) force -[04/25/2026 12:35:54] Dedicated match PATCH success: 200 {"ok":true,"id":106} -[04/25/2026 12:35:55] Dedicated match PATCH success: 200 {"ok":true,"id":106,"winner_id":15,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26630.txt b/games/soccar/soccar_Data/26630.txt deleted file mode 100644 index 5ba6906..0000000 --- a/games/soccar/soccar_Data/26630.txt +++ /dev/null @@ -1,57 +0,0 @@ -[04/26/2026 06:33:22] Configured dedicated match reporting for match id 166 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:33:22] Starting server at port 26630 -[04/26/2026 06:33:42] Dedicated match PATCH success: 200 {"ok":true,"id":166} -[04/26/2026 06:33:46] Game started On Server -[04/26/2026 06:33:47] Dedicated match PATCH success: 200 {"ok":true,"id":166} -[04/26/2026 06:33:50] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:33:50] launching puck at (0.06, -5.00) with (-4.02, 348.43) force -[04/26/2026 06:33:56] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:33:56] launching puck at (3.06, 3.96) with (-213.06, -275.72) force -[04/26/2026 06:34:07] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:34:07] launching puck at (-0.03, -5.00) with (2.20, 348.45) force -[04/26/2026 06:34:13] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:34:13] launching puck at (2.82, 4.13) with (-196.26, -287.93) force -[04/26/2026 06:34:23] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:34:23] launching puck at (-1.46, -4.78) with (102.07, 333.17) force -[04/26/2026 06:34:29] force = 70 * 0.9082583 = 63.57808 -[04/26/2026 06:34:29] launching puck at (-3.70, 1.70) with (234.98, -108.37) force -[04/26/2026 06:34:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:34:36] launching puck at (0.27, -4.99) with (-19.05, 347.93) force -[04/26/2026 06:34:42] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:34:42] launching puck at (0.12, -5.00) with (-8.50, 348.35) force -[04/26/2026 06:34:51] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:34:51] launching puck at (4.95, -0.72) with (-344.83, 50.14) force -[04/26/2026 06:35:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:03] launching puck at (-0.23, -4.99) with (15.77, 348.10) force -[04/26/2026 06:35:08] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:08] launching puck at (-3.02, -3.99) with (210.39, 277.77) force -[04/26/2026 06:35:13] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:13] launching puck at (-0.95, -4.91) with (66.24, 342.10) force -[04/26/2026 06:35:19] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:19] launching puck at (-3.90, -3.13) with (271.80, 218.05) force -[04/26/2026 06:35:29] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:29] launching puck at (0.53, 4.97) with (-37.08, -346.47) force -[04/26/2026 06:35:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:36] launching puck at (-1.50, -4.77) with (104.63, 332.37) force -[04/26/2026 06:35:40] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:40] launching puck at (-4.19, 2.72) with (292.23, -189.80) force -[04/26/2026 06:35:45] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:45] launching puck at (2.17, -4.51) with (-151.09, 313.99) force -[04/26/2026 06:35:50] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:50] launching puck at (0.40, 4.98) with (-27.71, -347.35) force -[04/26/2026 06:35:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:55] launching puck at (4.18, -2.74) with (-291.65, 190.68) force -[04/26/2026 06:36:02] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:02] launching puck at (0.13, 5.00) with (-9.23, -348.33) force -[04/26/2026 06:36:08] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:08] launching puck at (4.94, -0.76) with (-344.41, 52.91) force -[04/26/2026 06:36:18] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:18] launching puck at (-0.16, -5.00) with (11.07, 348.28) force -[04/26/2026 06:36:23] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:23] launching puck at (-2.62, 4.26) with (182.87, -296.61) force -[04/26/2026 06:36:29] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:29] launching puck at (-4.29, -2.57) with (298.99, 178.95) force -[04/26/2026 06:36:38] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:38] launching puck at (0.66, 4.96) with (-46.25, -345.37) force -[04/26/2026 06:36:39] Dedicated match PATCH success: 200 {"ok":true,"id":166} -[04/26/2026 06:36:40] Dedicated match PATCH success: 200 {"ok":true,"id":166,"winner_id":9,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26633.txt b/games/soccar/soccar_Data/26633.txt deleted file mode 100644 index 9169ef2..0000000 --- a/games/soccar/soccar_Data/26633.txt +++ /dev/null @@ -1,212 +0,0 @@ -[04/26/2026 06:44:44] Configured dedicated match reporting for match id 186 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:44:44] Starting server at port 26633 -[04/26/2026 06:44:57] Dedicated match PATCH success: 200 {"ok":true,"id":186} -[04/26/2026 06:44:57] Game started On Server -[04/26/2026 06:44:58] Dedicated match PATCH success: 200 {"ok":true,"id":186} -[04/26/2026 06:45:05] force = 70 * 0.904685 = 63.32795 -[04/26/2026 06:45:05] launching puck at (-0.07, -4.03) with (4.61, 255.50) force -[04/26/2026 06:45:11] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:45:11] launching puck at (-0.11, 5.00) with (7.94, -348.36) force -[04/26/2026 06:45:25] force = 70 * 0.8331816 = 58.32271 -[04/26/2026 06:45:25] launching puck at (-2.34, -2.48) with (136.29, 144.64) force -[04/26/2026 06:45:31] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:45:31] launching puck at (-3.48, 3.59) with (242.86, -249.88) force -[04/26/2026 06:45:38] force = 70 * 0.9762892 = 68.34024 -[04/26/2026 06:45:38] launching puck at (-4.79, -0.12) with (327.01, 8.46) force -[04/26/2026 06:45:47] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:45:47] launching puck at (-5.00, -0.03) with (348.45, 2.34) force -[04/26/2026 06:45:52] force = 70 * 0.7749018 = 54.24313 -[04/26/2026 06:45:52] launching puck at (-1.97, 2.24) with (107.07, -121.49) force -[04/26/2026 06:45:58] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:45:58] launching puck at (0.47, 4.98) with (-32.72, -346.91) force -[04/26/2026 06:46:09] force = 70 * 0.8811866 = 61.68306 -[04/26/2026 06:46:09] launching puck at (0.13, -3.81) with (-8.22, 235.13) force -[04/26/2026 06:46:14] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:46:14] launching puck at (3.46, 3.61) with (-241.13, -251.54) force -[04/26/2026 06:46:21] force = 70 * 0.7918462 = 55.42923 -[04/26/2026 06:46:21] launching puck at (-1.14, -2.88) with (63.06, 159.90) force -[04/26/2026 06:46:29] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:46:29] launching puck at (-2.93, -4.05) with (204.45, 282.17) force -[04/26/2026 06:46:34] force = 70 * 0.7047283 = 49.33098 -[04/26/2026 06:46:34] launching puck at (2.23, -1.26) with (-109.96, 61.93) force -[04/26/2026 06:46:40] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:46:40] launching puck at (1.43, 4.79) with (-99.53, -333.94) force -[04/26/2026 06:46:47] force = 70 * 0.733534 = 51.34738 -[04/26/2026 06:46:47] launching puck at (-1.04, -2.52) with (53.48, 129.27) force -[04/26/2026 06:46:53] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:46:53] launching puck at (4.53, -2.13) with (-315.35, 148.23) force -[04/26/2026 06:47:00] force = 70 * 0.8362532 = 58.53772 -[04/26/2026 06:47:00] launching puck at (1.78, -2.93) with (-104.14, 171.79) force -[04/26/2026 06:47:04] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:47:04] launching puck at (-0.83, 4.93) with (58.05, -343.58) force -[04/26/2026 06:47:09] force = 70 * 0.8055742 = 56.39019 -[04/26/2026 06:47:09] launching puck at (1.89, -2.58) with (-106.69, 145.44) force -[04/26/2026 06:47:14] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:47:14] launching puck at (1.60, 4.74) with (-111.51, -330.13) force -[04/26/2026 06:47:24] force = 70 * 0.9099622 = 63.69735 -[04/26/2026 06:47:24] launching puck at (1.86, -3.64) with (-118.65, 231.71) force -[04/26/2026 06:47:32] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:47:32] launching puck at (1.34, 4.82) with (-93.40, -335.70) force -[04/26/2026 06:47:37] force = 70 * 0.8813099 = 61.6917 -[04/26/2026 06:47:37] launching puck at (0.60, -3.77) with (-37.18, 232.42) force -[04/26/2026 06:47:43] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:47:43] launching puck at (3.13, 3.90) with (-218.43, -271.50) force -[04/26/2026 06:47:48] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:47:48] launching puck at (2.75, -4.17) with (-191.81, 290.91) force -[04/26/2026 06:47:54] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:47:54] launching puck at (3.81, 3.23) with (-265.72, -225.42) force -[04/26/2026 06:47:59] force = 70 * 0.7986774 = 55.90742 -[04/26/2026 06:47:59] launching puck at (1.56, 2.74) with (-87.19, -152.95) force -[04/26/2026 06:48:05] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:48:05] launching puck at (-0.62, 4.96) with (42.94, -345.80) force -[04/26/2026 06:48:10] force = 70 * 0.9621235 = 67.34865 -[04/26/2026 06:48:10] launching puck at (4.11, 2.14) with (-276.71, -143.93) force -[04/26/2026 06:48:15] force = 70 * 0.8480281 = 59.36197 -[04/26/2026 06:48:15] launching puck at (-2.38, 2.60) with (141.44, -154.38) force -[04/26/2026 06:48:22] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:48:22] launching puck at (0.05, -5.00) with (-3.34, 348.44) force -[04/26/2026 06:48:28] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:48:28] launching puck at (2.71, 4.20) with (-188.95, -292.78) force -[04/26/2026 06:48:33] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:48:33] launching puck at (2.39, -4.39) with (-166.83, 305.92) force -[04/26/2026 06:48:40] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:48:40] launching puck at (4.08, 2.90) with (-284.05, -201.83) force -[04/26/2026 06:48:46] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:48:46] launching puck at (3.45, -3.62) with (-240.58, 252.07) force -[04/26/2026 06:48:52] force = 70 * 0.8659146 = 60.61402 -[04/26/2026 06:48:52] launching puck at (-3.58, 0.85) with (216.97, -51.36) force -[04/26/2026 06:48:58] force = 70 * 0.9044967 = 63.31477 -[04/26/2026 06:48:58] launching puck at (0.16, -4.03) with (-10.18, 255.17) force -[04/26/2026 06:49:06] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:49:06] launching puck at (4.65, 1.83) with (-324.23, -127.64) force -[04/26/2026 06:49:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:49:36] launching puck at (-2.88, 4.08) with (200.98, -284.65) force -[04/26/2026 06:49:51] Configured dedicated match reporting for match id 195 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:49:51] Starting server at port 26633 -[04/26/2026 06:49:56] Game started On Server -[04/26/2026 06:49:57] Dedicated match PATCH success: 200 {"ok":true,"id":195} -[04/26/2026 06:49:57] Dedicated match PATCH success: 200 {"ok":true,"id":195} -[04/26/2026 06:50:00] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:50:00] launching puck at (0.12, -5.00) with (-8.65, 348.35) force -[04/26/2026 06:50:12] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:50:12] launching puck at (-4.90, -1.01) with (341.34, 70.06) force -[04/26/2026 06:50:16] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:50:16] launching puck at (1.12, -4.87) with (-77.77, 339.66) force -[04/26/2026 06:50:25] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:50:25] launching puck at (-0.27, 4.99) with (18.83, -347.94) force -[04/26/2026 06:50:31] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:50:31] launching puck at (2.23, -4.48) with (-155.38, 311.89) force -[04/26/2026 06:50:43] force = 70 * 0.5872237 = 41.10566 -[04/26/2026 06:50:43] launching puck at (0.26, -1.96) with (-10.88, 80.57) force -[04/26/2026 06:50:49] force = 70 * 0.8927202 = 62.49042 -[04/26/2026 06:50:49] launching puck at (2.03, -3.36) with (-126.71, 209.71) force -[04/26/2026 06:50:53] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:50:53] launching puck at (1.89, -4.63) with (-131.95, 322.51) force -[04/26/2026 06:50:58] force = 70 * 0.7058463 = 49.40924 -[04/26/2026 06:50:58] launching puck at (0.85, -2.42) with (-41.98, 119.55) force -[04/26/2026 06:51:06] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:06] launching puck at (4.18, -2.74) with (-291.57, 190.81) force -[04/26/2026 06:51:11] force = 70 * 0.7305197 = 51.13638 -[04/26/2026 06:51:11] launching puck at (0.29, -2.69) with (-14.77, 137.61) force -[04/26/2026 06:51:16] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:16] launching puck at (-2.44, -4.36) with (170.06, 304.14) force -[04/26/2026 06:51:21] force = 70 * 0.9954919 = 69.68443 -[04/26/2026 06:51:21] launching puck at (-0.26, -4.99) with (18.23, 347.88) force -[04/26/2026 06:51:25] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:25] launching puck at (0.02, 5.00) with (-1.13, -348.45) force -[04/26/2026 06:51:33] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:33] launching puck at (0.96, -4.91) with (-66.92, 341.97) force -[04/26/2026 06:51:39] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:39] launching puck at (-3.10, -3.92) with (216.01, 273.42) force -[04/26/2026 06:51:46] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:46] launching puck at (-0.21, -5.00) with (14.86, 348.14) force -[04/26/2026 06:51:52] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:52] launching puck at (4.23, 2.67) with (-294.57, -186.14) force -[04/26/2026 06:51:58] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:58] launching puck at (-4.02, -2.98) with (280.02, 207.38) force -[04/26/2026 06:52:06] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:52:06] launching puck at (2.82, 4.13) with (-196.22, -287.95) force -[04/26/2026 06:52:15] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:52:15] launching puck at (2.43, 4.37) with (-169.50, -304.45) force -[04/26/2026 06:52:22] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:52:22] launching puck at (3.58, 3.49) with (-249.67, -243.08) force -[04/26/2026 06:52:28] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:52:28] launching puck at (1.24, 4.84) with (-86.50, -337.55) force -[04/26/2026 06:52:39] force = 70 * 0.9526721 = 66.68704 -[04/26/2026 06:52:39] launching puck at (0.47, -4.50) with (-31.41, 300.37) force -[04/26/2026 06:52:44] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:52:44] launching puck at (0.29, -4.99) with (-20.36, 347.86) force -[04/26/2026 06:52:52] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:52:52] launching puck at (0.12, 5.00) with (-8.59, -348.35) force -[04/26/2026 06:52:57] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:52:57] launching puck at (3.60, -3.47) with (-251.18, 241.52) force -[04/26/2026 06:53:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:03] launching puck at (2.86, 4.10) with (-199.20, -285.90) force -[04/26/2026 06:53:09] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:09] launching puck at (1.56, 4.75) with (-108.50, -331.13) force -[04/26/2026 06:53:18] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:18] launching puck at (1.23, 4.85) with (-86.05, -337.66) force -[04/26/2026 06:53:26] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:26] launching puck at (0.21, -5.00) with (-14.86, 348.14) force -[04/26/2026 06:53:31] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:31] launching puck at (-3.30, 3.75) with (230.18, -261.61) force -[04/26/2026 06:53:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:36] launching puck at (3.42, -3.65) with (-238.10, 254.42) force -[04/26/2026 06:53:43] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:43] launching puck at (-0.23, 4.99) with (15.74, -348.10) force -[04/26/2026 06:53:52] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:52] launching puck at (-2.57, -4.29) with (179.33, 298.76) force -[04/26/2026 06:54:02] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:54:02] launching puck at (-3.66, -3.41) with (255.11, 237.36) force -[04/26/2026 06:54:08] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:54:08] launching puck at (-4.14, 2.80) with (288.74, -195.05) force -[04/26/2026 06:54:14] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:54:14] launching puck at (0.16, 5.00) with (-10.90, -348.28) force -[04/26/2026 06:54:21] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:54:21] launching puck at (0.09, 5.00) with (-5.99, -348.40) force -[04/26/2026 06:54:29] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:54:29] launching puck at (-0.25, 4.99) with (17.73, -348.00) force -[04/26/2026 06:54:33] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:54:33] launching puck at (-5.00, 0.03) with (348.45, -2.28) force -[04/26/2026 06:54:38] force = 70 * 0.9157265 = 64.10086 -[04/26/2026 06:54:38] launching puck at (-0.93, -4.04) with (59.80, 258.82) force -[04/26/2026 06:54:46] force = 70 * 0.9556674 = 66.89671 -[04/26/2026 06:54:46] launching puck at (-3.77, -2.56) with (252.50, 171.30) force -[04/26/2026 06:54:54] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:54:54] launching puck at (-1.02, 4.90) with (70.94, -341.15) force -[04/26/2026 06:54:58] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:54:58] launching puck at (-1.59, -4.74) with (110.81, 330.37) force -[04/26/2026 06:55:04] force = 70 * 0.8805237 = 61.63666 -[04/26/2026 06:55:04] launching puck at (-0.75, -3.73) with (46.18, 230.14) force -[04/26/2026 06:55:10] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:55:10] launching puck at (0.33, 4.99) with (-22.68, -347.71) force -[04/26/2026 06:55:24] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:55:24] launching puck at (-2.01, -4.58) with (140.06, 319.06) force -[04/26/2026 06:55:29] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:55:29] launching puck at (-0.33, -4.99) with (22.67, 347.72) force -[04/26/2026 06:55:39] force = 70 * 0.691452 = 48.40164 -[04/26/2026 06:55:39] launching puck at (-0.62, -2.41) with (29.85, 116.54) force -[04/26/2026 06:55:44] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:55:44] launching puck at (0.61, -4.96) with (-42.82, 345.81) force -[04/26/2026 06:55:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:55:55] launching puck at (-1.36, -4.81) with (94.68, 335.34) force -[04/26/2026 06:56:00] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:56:00] launching puck at (2.57, -4.29) with (-179.05, 298.94) force -[04/26/2026 06:56:14] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:56:14] launching puck at (4.57, 2.03) with (-318.56, -141.21) force -[04/26/2026 06:56:20] force = 70 * 0.9359491 = 65.51643 -[04/26/2026 06:56:20] launching puck at (-2.46, -3.59) with (161.33, 235.02) force -[04/26/2026 06:56:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:56:27] launching puck at (0.04, 5.00) with (-2.67, -348.44) force -[04/26/2026 06:56:34] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:56:34] launching puck at (0.85, -4.93) with (-59.39, 343.35) force -[04/26/2026 06:56:40] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:56:40] launching puck at (-3.19, -3.85) with (222.10, 268.50) force -[04/26/2026 06:56:46] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:56:46] launching puck at (1.83, -4.65) with (-127.23, 324.39) force -[04/26/2026 06:56:51] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:56:51] launching puck at (-2.19, 4.50) with (152.50, -313.31) force -[04/26/2026 06:56:56] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:56:56] launching puck at (1.04, -4.89) with (-72.42, 340.84) force -[04/26/2026 06:56:57] Dedicated match PATCH success: 200 {"ok":true,"id":195} -[04/26/2026 06:56:58] Dedicated match PATCH success: 200 {"ok":true,"id":195,"winner_id":20,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26634.txt b/games/soccar/soccar_Data/26634.txt deleted file mode 100644 index e5624a9..0000000 --- a/games/soccar/soccar_Data/26634.txt +++ /dev/null @@ -1,3 +0,0 @@ -[04/26/2026 06:04:38] Configured dedicated match reporting for match id 123 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:04:38] Starting server at port 26634 -[04/26/2026 06:05:15] Dedicated match PATCH success: 200 {"ok":true,"id":123} diff --git a/games/soccar/soccar_Data/26643.txt b/games/soccar/soccar_Data/26643.txt deleted file mode 100644 index 2803b11..0000000 --- a/games/soccar/soccar_Data/26643.txt +++ /dev/null @@ -1,3 +0,0 @@ -[04/26/2026 06:51:55] Configured dedicated match reporting for match id 200 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:51:55] Starting server at port 26643 -[04/26/2026 06:52:49] Dedicated match PATCH success: 200 {"ok":true,"id":200} diff --git a/games/soccar/soccar_Data/26654.txt b/games/soccar/soccar_Data/26654.txt deleted file mode 100644 index 20bf37e..0000000 --- a/games/soccar/soccar_Data/26654.txt +++ /dev/null @@ -1,41 +0,0 @@ -[04/26/2026 06:12:19] Configured dedicated match reporting for match id 133 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:12:19] Starting server at port 26654 -[04/26/2026 06:12:36] Dedicated match PATCH success: 200 {"ok":true,"id":133} -[04/26/2026 06:12:39] Game started On Server -[04/26/2026 06:12:40] Dedicated match PATCH success: 200 {"ok":true,"id":133} -[04/26/2026 06:12:43] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:12:43] launching puck at (2.94, 4.04) with (-204.85, -281.88) force -[04/26/2026 06:13:16] force = 70 * 0.9732162 = 68.12514 -[04/26/2026 06:13:16] launching puck at (-1.08, -4.63) with (73.68, 315.29) force -[04/26/2026 06:13:21] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:13:21] launching puck at (1.57, -4.75) with (-109.55, 330.78) force -[04/26/2026 06:13:25] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:13:25] launching puck at (-0.96, -4.91) with (66.83, 341.98) force -[04/26/2026 06:13:31] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:13:31] launching puck at (0.60, -4.96) with (-41.70, 345.95) force -[04/26/2026 06:13:36] force = 70 * 0.8262421 = 57.83694 -[04/26/2026 06:13:36] launching puck at (-1.09, -3.17) with (63.02, 183.43) force -[04/26/2026 06:13:49] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:13:49] launching puck at (4.98, -0.45) with (-347.03, 31.49) force -[04/26/2026 06:13:54] force = 70 * 0.5586128 = 39.1029 -[04/26/2026 06:13:54] launching puck at (-1.20, 1.39) with (47.07, -54.30) force -[04/26/2026 06:14:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:03] launching puck at (-1.28, -4.83) with (89.16, 336.85) force -[04/26/2026 06:14:11] force = 70 * 0.719425 = 50.35975 -[04/26/2026 06:14:11] launching puck at (-0.16, -2.64) with (7.96, 132.79) force -[04/26/2026 06:14:16] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:16] launching puck at (-0.46, -4.98) with (32.09, 346.97) force -[04/26/2026 06:14:24] force = 70 * 0.517617 = 36.23319 -[04/26/2026 06:14:24] launching puck at (-0.67, 1.49) with (24.32, -53.98) force -[04/26/2026 06:14:29] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:29] launching puck at (0.15, -5.00) with (-10.13, 348.31) force -[04/26/2026 06:14:43] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:43] launching puck at (-0.29, -4.99) with (20.48, 347.85) force -[04/26/2026 06:14:47] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:47] launching puck at (1.67, -4.71) with (-116.29, 328.48) force -[04/26/2026 06:14:55] force = 70 * 0.8244815 = 57.71371 -[04/26/2026 06:14:55] launching puck at (-0.72, -3.26) with (41.52, 188.23) force -[04/26/2026 06:15:00] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:15:00] launching puck at (0.10, -5.00) with (-6.85, 348.39) force -[04/26/2026 06:15:01] Dedicated match PATCH success: 200 {"ok":true,"id":133} -[04/26/2026 06:15:03] Dedicated match PATCH success: 200 {"ok":true,"id":133,"winner_id":5,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26658.txt b/games/soccar/soccar_Data/26658.txt deleted file mode 100644 index d520a5a..0000000 --- a/games/soccar/soccar_Data/26658.txt +++ /dev/null @@ -1,77 +0,0 @@ -[04/26/2026 06:22:16] Configured dedicated match reporting for match id 154 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:22:16] Starting server at port 26658 -[04/26/2026 06:22:42] Game started On Server -[04/26/2026 06:22:42] Dedicated match PATCH success: 200 {"ok":true,"id":154} -[04/26/2026 06:22:42] Dedicated match PATCH success: 200 {"ok":true,"id":154} -[04/26/2026 06:22:45] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:22:45] launching puck at (-0.26, -4.99) with (18.28, 347.97) force -[04/26/2026 06:22:52] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:22:52] launching puck at (-4.71, 1.69) with (327.91, -117.87) force -[04/26/2026 06:22:59] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:22:59] launching puck at (-3.83, -3.21) with (267.11, 223.77) force -[04/26/2026 06:23:06] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:23:06] launching puck at (-1.81, -4.66) with (125.94, 324.90) force -[04/26/2026 06:23:17] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:23:17] launching puck at (2.04, -4.57) with (-142.02, 318.20) force -[04/26/2026 06:23:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:23:27] launching puck at (2.34, 4.42) with (-162.76, -308.10) force -[04/26/2026 06:23:38] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:23:38] launching puck at (4.89, -1.03) with (-340.97, 71.83) force -[04/26/2026 06:23:43] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:23:43] launching puck at (-2.13, 4.52) with (148.33, -315.30) force -[04/26/2026 06:23:49] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:23:49] launching puck at (-4.81, -1.38) with (334.98, 95.97) force -[04/26/2026 06:23:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:23:55] launching puck at (-3.83, 3.21) with (267.13, -223.74) force -[04/26/2026 06:24:02] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:24:02] launching puck at (-4.79, -1.42) with (334.08, 99.05) force -[04/26/2026 06:24:07] force = 70 * 0.8200096 = 57.40068 -[04/26/2026 06:24:07] launching puck at (1.24, -3.06) with (-71.18, 175.90) force -[04/26/2026 06:24:16] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:24:16] launching puck at (0.79, -4.94) with (-54.87, 344.11) force -[04/26/2026 06:24:22] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:24:22] launching puck at (4.96, 0.60) with (-345.97, -41.56) force -[04/26/2026 06:24:27] force = 70 * 0.5233993 = 36.63795 -[04/26/2026 06:24:27] launching puck at (-0.88, -1.41) with (32.37, 51.55) force -[04/26/2026 06:24:33] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:24:33] launching puck at (-4.33, -2.51) with (301.48, 174.72) force -[04/26/2026 06:24:41] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:24:41] launching puck at (-1.71, -4.70) with (119.37, 327.37) force -[04/26/2026 06:24:47] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:24:47] launching puck at (1.96, 4.60) with (-136.34, -320.67) force -[04/26/2026 06:24:53] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:24:53] launching puck at (1.94, -4.61) with (-135.22, 321.15) force -[04/26/2026 06:24:58] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:24:58] launching puck at (3.38, 3.68) with (-235.59, -256.74) force -[04/26/2026 06:25:04] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:25:04] launching puck at (2.56, -4.29) with (-178.61, 299.20) force -[04/26/2026 06:25:10] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:25:10] launching puck at (2.36, 4.41) with (-164.40, -307.23) force -[04/26/2026 06:25:18] force = 70 * 0.7853675 = 54.97573 -[04/26/2026 06:25:18] launching puck at (-1.01, 2.88) with (55.50, -158.58) force -[04/26/2026 06:25:24] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:25:24] launching puck at (0.93, 4.91) with (-64.94, -342.35) force -[04/26/2026 06:25:29] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:25:29] launching puck at (3.91, -3.11) with (-272.74, 216.87) force -[04/26/2026 06:25:35] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:25:35] launching puck at (4.47, 2.25) with (-311.23, -156.71) force -[04/26/2026 06:25:42] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:25:42] launching puck at (-3.92, -3.10) with (273.39, 216.04) force -[04/26/2026 06:25:48] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:25:48] launching puck at (-1.97, 4.60) with (137.33, -320.25) force -[04/26/2026 06:25:54] force = 70 * 0.6647609 = 46.53327 -[04/26/2026 06:25:54] launching puck at (-0.55, 2.28) with (25.71, -106.06) force -[04/26/2026 06:26:02] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:26:02] launching puck at (-3.11, 3.92) with (216.67, -272.90) force -[04/26/2026 06:26:07] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:26:07] launching puck at (-0.16, -5.00) with (11.48, 348.26) force -[04/26/2026 06:26:13] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:26:13] launching puck at (-2.39, 4.39) with (166.66, -306.02) force -[04/26/2026 06:26:18] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:26:18] launching puck at (-1.65, 4.72) with (115.10, -328.89) force -[04/26/2026 06:26:25] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:26:25] launching puck at (0.30, 4.99) with (-20.87, -347.83) force -[04/26/2026 06:26:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:26:36] launching puck at (-4.77, 1.50) with (332.34, -104.74) force -[04/26/2026 06:27:29] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:27:34] launching puck at (-0.39, 4.98) with (27.09, -347.40) force diff --git a/games/soccar/soccar_Data/26668.txt b/games/soccar/soccar_Data/26668.txt deleted file mode 100644 index 9e181cc..0000000 --- a/games/soccar/soccar_Data/26668.txt +++ /dev/null @@ -1,4 +0,0 @@ -[04/26/2026 06:24:58] Configured dedicated match reporting for match id 157 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:24:58] Starting server at port 26668 -[04/26/2026 06:25:04] Dedicated match PATCH success: 200 {"ok":true,"id":157} -[04/26/2026 06:26:00] Dedicated match PATCH success: 200 {"ok":true,"id":157} diff --git a/games/soccar/soccar_Data/26672.txt b/games/soccar/soccar_Data/26672.txt deleted file mode 100644 index c6c343b..0000000 --- a/games/soccar/soccar_Data/26672.txt +++ /dev/null @@ -1,91 +0,0 @@ -[04/26/2026 06:36:10] Configured dedicated match reporting for match id 171 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:36:10] Starting server at port 26672 -[04/26/2026 06:36:15] Dedicated match PATCH success: 200 {"ok":true,"id":171} -[04/26/2026 06:36:18] Game started On Server -[04/26/2026 06:36:19] Dedicated match PATCH success: 200 {"ok":true,"id":171} -[04/26/2026 06:36:21] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:21] launching puck at (-0.02, -5.00) with (1.38, 348.45) force -[04/26/2026 06:36:30] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:30] launching puck at (4.28, 2.59) with (-298.05, -180.52) force -[04/26/2026 06:36:39] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:39] launching puck at (3.00, -4.00) with (-208.78, 278.98) force -[04/26/2026 06:36:44] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:44] launching puck at (0.48, 4.98) with (-33.71, -346.82) force -[04/26/2026 06:36:53] force = 70 * 0.861973 = 60.33811 -[04/26/2026 06:36:53] launching puck at (2.38, -2.76) with (-143.63, 166.50) force -[04/26/2026 06:36:59] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:59] launching puck at (3.03, 3.98) with (-211.12, -277.21) force -[04/26/2026 06:37:08] force = 70 * 0.7369155 = 51.58409 -[04/26/2026 06:37:08] launching puck at (2.54, -1.03) with (-131.27, 53.07) force -[04/26/2026 06:37:14] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:14] launching puck at (-0.19, 5.00) with (13.48, -348.19) force -[04/26/2026 06:37:22] force = 70 * 0.9096966 = 63.67876 -[04/26/2026 06:37:22] launching puck at (0.32, 4.07) with (-20.09, -259.30) force -[04/26/2026 06:37:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:27] launching puck at (-0.39, 4.98) with (27.11, -347.40) force -[04/26/2026 06:37:39] force = 70 * 0.9684507 = 67.79155 -[04/26/2026 06:37:39] launching puck at (4.41, 1.64) with (-298.71, -110.94) force -[04/26/2026 06:37:44] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:44] launching puck at (4.95, -0.73) with (-344.73, 50.79) force -[04/26/2026 06:37:53] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:53] launching puck at (0.03, -5.00) with (-2.27, 348.45) force -[04/26/2026 06:37:59] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:59] launching puck at (1.68, 4.71) with (-117.07, -328.20) force -[04/26/2026 06:38:05] force = 70 * 0.9090677 = 63.63474 -[04/26/2026 06:38:05] launching puck at (3.29, -2.41) with (-209.15, 153.62) force -[04/26/2026 06:38:11] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:38:11] launching puck at (2.65, 4.24) with (-184.66, -295.50) force -[04/26/2026 06:38:19] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:38:19] launching puck at (3.54, -3.53) with (-246.59, 246.20) force -[04/26/2026 06:38:25] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:38:25] launching puck at (-1.63, 4.73) with (113.81, -329.34) force -[04/26/2026 06:38:34] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:38:34] launching puck at (0.95, -4.91) with (-66.49, 342.05) force -[04/26/2026 06:38:39] force = 70 * 0.6032504 = 42.22753 -[04/26/2026 06:38:39] launching puck at (-2.05, -0.08) with (86.52, 3.40) force -[04/26/2026 06:38:51] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:38:51] launching puck at (-1.04, -4.89) with (72.21, 340.89) force -[04/26/2026 06:38:56] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:38:56] launching puck at (-4.85, 1.22) with (337.99, -84.73) force -[04/26/2026 06:39:07] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:07] launching puck at (3.01, -3.99) with (-209.56, 278.40) force -[04/26/2026 06:39:19] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:19] launching puck at (-3.25, -3.80) with (226.78, 264.56) force -[04/26/2026 06:39:29] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:29] launching puck at (0.48, -4.98) with (-33.41, 346.85) force -[04/26/2026 06:39:35] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:35] launching puck at (-3.03, -3.98) with (211.11, 277.22) force -[04/26/2026 06:39:41] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:41] launching puck at (0.93, -4.91) with (-64.82, 342.37) force -[04/26/2026 06:39:48] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:48] launching puck at (-0.01, 5.00) with (0.58, -348.45) force -[04/26/2026 06:39:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:55] launching puck at (-0.95, -4.91) with (66.29, 342.09) force -[04/26/2026 06:40:02] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:40:02] launching puck at (-0.64, -4.96) with (44.47, 345.60) force -[04/26/2026 06:40:11] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:40:11] launching puck at (-1.85, -4.65) with (128.86, 323.75) force -[04/26/2026 06:40:17] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:40:17] launching puck at (-4.60, 1.97) with (320.36, -137.08) force -[04/26/2026 06:40:28] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:40:28] launching puck at (3.72, -3.35) with (-258.92, 233.20) force -[04/26/2026 06:40:34] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:40:34] launching puck at (0.00, 5.00) with (0.20, -348.45) force -[04/26/2026 06:40:41] force = 70 * 0.8732561 = 61.12793 -[04/26/2026 06:40:41] launching puck at (-2.03, -3.15) with (123.95, 192.32) force -[04/26/2026 06:40:47] force = 70 * 0.919794 = 64.38557 -[04/26/2026 06:40:47] launching puck at (4.02, -1.18) with (-258.53, 75.92) force -[04/26/2026 06:40:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:40:55] launching puck at (-1.63, -4.73) with (113.59, 329.42) force -[04/26/2026 06:41:00] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:41:00] launching puck at (2.14, 4.52) with (-149.21, -314.89) force -[04/26/2026 06:41:08] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:41:08] launching puck at (0.11, -5.00) with (-7.62, 348.37) force -[04/26/2026 06:41:15] force = 70 * 0.9690524 = 67.83366 -[04/26/2026 06:41:15] launching puck at (3.98, 2.52) with (-269.89, -170.61) force -[04/26/2026 06:41:23] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:41:23] launching puck at (-4.77, -1.50) with (332.37, 104.63) force -[04/26/2026 06:41:28] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:41:28] launching puck at (-2.91, 4.06) with (203.02, -283.20) force -[04/26/2026 06:41:29] Dedicated match PATCH success: 200 {"ok":true,"id":171} -[04/26/2026 06:41:30] Dedicated match PATCH success: 200 {"ok":true,"id":171,"winner_id":20,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26703.txt b/games/soccar/soccar_Data/26703.txt deleted file mode 100644 index b9c6b53..0000000 --- a/games/soccar/soccar_Data/26703.txt +++ /dev/null @@ -1,29 +0,0 @@ -[04/26/2026 06:47:05] Configured dedicated match reporting for match id 190 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:47:05] Starting server at port 26703 -[04/26/2026 06:47:20] Dedicated match PATCH success: 200 {"ok":true,"id":190} -[04/26/2026 06:47:20] Game started On Server -[04/26/2026 06:47:21] Dedicated match PATCH success: 200 {"ok":true,"id":190} -[04/26/2026 06:47:22] force = 70 * 0.3766977 = 26.36884 -[04/26/2026 06:47:22] launching puck at (0.69, 0.94) with (-18.29, -24.80) force -[04/26/2026 06:47:50] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:47:50] launching puck at (-1.67, -4.71) with (116.12, 328.54) force -[04/26/2026 06:48:10] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:48:10] launching puck at (-2.10, -4.54) with (146.28, 316.26) force -[04/26/2026 06:48:30] force = 70 * 0.9032072 = 63.2245 -[04/26/2026 06:48:30] launching puck at (4.00, 0.44) with (-252.69, -27.86) force -[04/26/2026 06:49:27] force = 70 * 0.7113159 = 49.79211 -[04/26/2026 06:49:27] launching puck at (2.15, 1.45) with (-107.15, -72.23) force -[04/26/2026 06:49:50] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:49:50] launching puck at (0.33, -4.99) with (-23.11, 347.69) force -[04/26/2026 06:50:17] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:50:17] launching puck at (0.02, -5.00) with (-1.20, 348.45) force -[04/26/2026 06:50:38] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:50:38] launching puck at (-2.94, -4.05) with (204.56, 282.09) force -[04/26/2026 06:51:09] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:09] launching puck at (-0.02, -5.00) with (1.42, 348.45) force -[04/26/2026 06:52:06] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:52:06] launching puck at (3.70, 3.37) with (-257.57, -234.68) force -[04/26/2026 06:52:27] force = 70 * 0.8568759 = 59.98131 -[04/26/2026 06:52:27] launching puck at (-2.05, -2.96) with (122.90, 177.62) force -[04/26/2026 06:52:28] Dedicated match PATCH success: 200 {"ok":true,"id":190} -[04/26/2026 06:52:29] Dedicated match PATCH success: 200 {"ok":true,"id":190,"winner_id":30,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26721.txt b/games/soccar/soccar_Data/26721.txt deleted file mode 100644 index d8b65c2..0000000 --- a/games/soccar/soccar_Data/26721.txt +++ /dev/null @@ -1,97 +0,0 @@ -[04/20/2026 20:40:25] Configured dedicated match reporting for match id 86 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/20/2026 20:40:25] Starting server at port 26721 -[04/20/2026 20:40:31] Game started On Server -[04/20/2026 20:40:31] Dedicated match PATCH success: 200 {"ok":true,"id":86} -[04/20/2026 20:40:32] Dedicated match PATCH success: 200 {"ok":true,"id":86} -[04/20/2026 20:40:38] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:40:38] launching puck at (0.37, -4.99) with (-25.78, 347.50) force -[04/20/2026 20:40:43] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:40:43] launching puck at (-4.00, 3.00) with (278.55, -209.35) force -[04/20/2026 20:40:48] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:40:48] launching puck at (2.42, -4.37) with (-168.77, 304.85) force -[04/20/2026 20:40:53] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:40:53] launching puck at (1.83, 4.65) with (-127.57, -324.26) force -[04/20/2026 20:41:00] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:41:00] launching puck at (3.16, -3.87) with (-220.27, 270.00) force -[04/20/2026 20:41:10] force = 70 * 0.8030158 = 56.21111 -[04/20/2026 20:41:10] launching puck at (2.54, 1.92) with (-142.70, -107.66) force -[04/20/2026 20:41:19] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:41:19] launching puck at (-2.48, -4.34) with (172.92, 302.52) force -[04/20/2026 20:41:24] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:41:24] launching puck at (-0.27, -4.99) with (18.79, 347.95) force -[04/20/2026 20:41:32] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:41:32] launching puck at (-5.00, -0.06) with (348.43, 3.97) force -[04/20/2026 20:41:40] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:41:40] launching puck at (-1.71, -4.70) with (118.95, 327.52) force -[04/20/2026 20:41:47] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:41:47] launching puck at (1.03, 4.89) with (-72.08, -340.92) force -[04/20/2026 20:41:56] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:41:56] launching puck at (-1.58, 4.74) with (110.27, -330.54) force -[04/20/2026 20:42:02] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:42:02] launching puck at (-0.10, 5.00) with (6.94, -348.38) force -[04/20/2026 20:42:09] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:42:09] launching puck at (2.33, -4.42) with (-162.70, 308.14) force -[04/20/2026 20:42:14] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:42:14] launching puck at (0.65, 4.96) with (-45.18, -345.51) force -[04/20/2026 20:42:19] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:42:19] launching puck at (1.49, -4.77) with (-103.70, 332.67) force -[04/20/2026 20:42:24] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:42:24] launching puck at (2.79, 4.15) with (-194.34, -289.23) force -[04/20/2026 20:42:31] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:42:31] launching puck at (4.53, -2.12) with (-315.73, 147.43) force -[04/20/2026 20:42:36] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:42:36] launching puck at (-4.64, 1.85) with (323.68, -129.05) force -[04/20/2026 20:42:42] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:42:42] launching puck at (-1.08, -4.88) with (74.97, 340.29) force -[04/20/2026 20:42:47] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:42:47] launching puck at (-4.77, -1.49) with (332.58, 103.96) force -[04/20/2026 20:42:52] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:42:52] launching puck at (-1.90, -4.62) with (132.40, 322.32) force -[04/20/2026 20:42:56] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:42:56] launching puck at (4.34, 2.48) with (-302.75, -172.51) force -[04/20/2026 20:43:02] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:43:02] launching puck at (-2.09, -4.54) with (145.33, 316.70) force -[04/20/2026 20:43:09] force = 70 * 0.9436331 = 66.05432 -[04/20/2026 20:43:09] launching puck at (-1.30, -4.24) with (85.70, 279.93) force -[04/20/2026 20:43:14] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:43:14] launching puck at (-0.10, -5.00) with (6.77, 348.39) force -[04/20/2026 20:43:23] force = 70 * 0.7226087 = 50.58261 -[04/20/2026 20:43:23] launching puck at (2.60, 0.58) with (-131.35, -29.18) force -[04/20/2026 20:43:30] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:43:30] launching puck at (4.99, -0.31) with (-347.77, 21.81) force -[04/20/2026 20:43:41] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:43:41] launching puck at (4.66, -1.82) with (-324.55, 126.82) force -[04/20/2026 20:43:47] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:43:47] launching puck at (-3.38, 3.69) with (235.25, -257.06) force -[04/20/2026 20:43:52] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:43:52] launching puck at (-1.81, 4.66) with (126.11, -324.83) force -[04/20/2026 20:44:03] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:44:03] launching puck at (-1.22, 4.85) with (84.89, -337.95) force -[04/20/2026 20:44:10] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:44:10] launching puck at (-4.45, -2.27) with (310.40, 158.34) force -[04/20/2026 20:44:14] force = 70 * 0.7712519 = 53.98763 -[04/20/2026 20:44:14] launching puck at (-0.67, 2.88) with (36.40, -155.67) force -[04/20/2026 20:44:21] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:44:21] launching puck at (3.03, 3.97) with (-211.42, -276.99) force -[04/20/2026 20:44:26] force = 70 * 0.8778827 = 61.45179 -[04/20/2026 20:44:26] launching puck at (3.43, 1.59) with (-211.09, -97.59) force -[04/20/2026 20:44:32] force = 70 * 0.7361987 = 51.53391 -[04/20/2026 20:44:32] launching puck at (-2.36, -1.40) with (121.49, 72.02) force -[04/20/2026 20:44:37] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:44:37] launching puck at (0.06, -5.00) with (-3.97, 348.43) force -[04/20/2026 20:44:42] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:44:42] launching puck at (-2.27, 4.45) with (158.41, -310.36) force -[04/20/2026 20:44:48] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:44:48] launching puck at (3.88, 3.15) with (-270.58, -219.56) force -[04/20/2026 20:44:55] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:44:55] launching puck at (-0.25, 4.99) with (17.33, -348.02) force -[04/20/2026 20:45:03] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:45:03] launching puck at (3.47, -3.60) with (-242.17, 250.54) force -[04/20/2026 20:45:10] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:45:10] launching puck at (4.72, 1.65) with (-329.00, -114.81) force -[04/20/2026 20:45:14] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:45:14] launching puck at (-2.86, -4.10) with (199.08, 285.98) force -[04/20/2026 20:45:19] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:45:19] launching puck at (1.17, 4.86) with (-81.71, -338.74) force -[04/20/2026 20:45:20] Dedicated match PATCH success: 200 {"ok":true,"id":86} -[04/20/2026 20:45:21] Dedicated match PATCH success: 200 {"ok":true,"id":86,"winner_id":6,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26726.txt b/games/soccar/soccar_Data/26726.txt deleted file mode 100644 index ee167b6..0000000 --- a/games/soccar/soccar_Data/26726.txt +++ /dev/null @@ -1,57 +0,0 @@ -[04/26/2026 06:04:42] Configured dedicated match reporting for match id 124 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:04:42] Starting server at port 26726 -[04/26/2026 06:04:58] Game started On Server -[04/26/2026 06:04:58] Dedicated match PATCH success: 200 {"ok":true,"id":124} -[04/26/2026 06:04:58] Dedicated match PATCH success: 200 {"ok":true,"id":124} -[04/26/2026 06:05:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:05:03] launching puck at (0.28, -4.99) with (-19.79, 347.89) force -[04/26/2026 06:05:09] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:05:09] launching puck at (-2.97, 4.02) with (206.80, -280.45) force -[04/26/2026 06:05:16] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:05:16] launching puck at (-2.00, -4.58) with (139.12, 319.48) force -[04/26/2026 06:05:22] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:05:22] launching puck at (-2.39, -4.39) with (166.80, 305.94) force -[04/26/2026 06:05:28] force = 70 * 0.9298252 = 65.08776 -[04/26/2026 06:05:28] launching puck at (-4.21, -0.81) with (273.99, 52.91) force -[04/26/2026 06:05:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:05:36] launching puck at (1.26, 4.84) with (-87.91, -337.18) force -[04/26/2026 06:05:43] force = 70 * 0.7323282 = 51.26298 -[04/26/2026 06:05:43] launching puck at (2.69, 0.40) with (-137.79, -20.43) force -[04/26/2026 06:05:49] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:05:49] launching puck at (-1.83, 4.65) with (127.69, -324.22) force -[04/26/2026 06:05:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:05:55] launching puck at (-4.46, -2.25) with (311.14, 156.89) force -[04/26/2026 06:06:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:06:03] launching puck at (0.03, 5.00) with (-1.87, -348.45) force -[04/26/2026 06:06:13] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:06:13] launching puck at (-3.74, 3.32) with (260.40, -231.54) force -[04/26/2026 06:06:19] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:06:19] launching puck at (4.72, 1.65) with (-328.84, -115.25) force -[04/26/2026 06:06:25] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:06:25] launching puck at (-0.65, 4.96) with (45.24, -345.50) force -[04/26/2026 06:06:31] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:06:31] launching puck at (5.00, -0.12) with (-348.36, 8.17) force -[04/26/2026 06:06:37] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:06:37] launching puck at (1.13, -4.87) with (-78.83, 339.42) force -[04/26/2026 06:06:42] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:06:42] launching puck at (4.29, -2.56) with (-299.27, 178.49) force -[04/26/2026 06:06:46] force = 70 * 0.904273 = 63.29911 -[04/26/2026 06:06:46] launching puck at (-3.04, -2.64) with (192.65, 167.33) force -[04/26/2026 06:06:53] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:06:53] launching puck at (-0.55, 4.97) with (38.29, -346.34) force -[04/26/2026 06:06:59] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:06:59] launching puck at (-4.91, 0.97) with (341.88, -67.38) force -[04/26/2026 06:07:05] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:05] launching puck at (-0.57, 4.97) with (39.71, -346.18) force -[04/26/2026 06:07:13] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:13] launching puck at (-1.61, -4.73) with (112.05, 329.94) force -[04/26/2026 06:07:17] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:17] launching puck at (2.54, 4.31) with (-176.78, -300.28) force -[04/26/2026 06:07:24] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:24] launching puck at (-0.10, 5.00) with (7.03, -348.38) force -[04/26/2026 06:07:34] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:34] launching puck at (-4.18, -2.74) with (291.58, 190.78) force -[04/26/2026 06:07:40] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:40] launching puck at (-0.25, 4.99) with (17.18, -348.03) force -[04/26/2026 06:07:41] Dedicated match PATCH success: 200 {"ok":true,"id":124} -[04/26/2026 06:07:43] Dedicated match PATCH success: 200 {"ok":true,"id":124,"winner_id":18,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26731.txt b/games/soccar/soccar_Data/26731.txt deleted file mode 100644 index f596790..0000000 --- a/games/soccar/soccar_Data/26731.txt +++ /dev/null @@ -1,2 +0,0 @@ -[04/26/2026 06:42:45] Configured dedicated match reporting for match id 183 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:42:45] Starting server at port 26731 diff --git a/games/soccar/soccar_Data/26736.txt b/games/soccar/soccar_Data/26736.txt deleted file mode 100644 index 1979d16..0000000 --- a/games/soccar/soccar_Data/26736.txt +++ /dev/null @@ -1,45 +0,0 @@ -[04/26/2026 06:32:21] Configured dedicated match reporting for match id 164 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:32:21] Starting server at port 26736 -[04/26/2026 06:32:26] Game started On Server -[04/26/2026 06:32:26] Dedicated match PATCH success: 200 {"ok":true,"id":164} -[04/26/2026 06:32:27] Dedicated match PATCH success: 200 {"ok":true,"id":164} -[04/26/2026 06:32:31] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:32:31] launching puck at (-0.04, -5.00) with (2.88, 348.44) force -[04/26/2026 06:32:37] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:32:37] launching puck at (-3.00, 4.00) with (209.38, -278.53) force -[04/26/2026 06:32:42] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:32:42] launching puck at (-2.92, -4.06) with (203.55, 282.82) force -[04/26/2026 06:32:46] force = 70 * 0.9080795 = 63.56557 -[04/26/2026 06:32:46] launching puck at (3.50, -2.08) with (-222.30, 132.13) force -[04/26/2026 06:32:51] force = 70 * 0.7511935 = 52.58354 -[04/26/2026 06:32:51] launching puck at (-0.70, 2.74) with (36.87, -144.31) force -[04/26/2026 06:32:56] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:32:56] launching puck at (-4.85, 1.20) with (338.19, -83.93) force -[04/26/2026 06:33:00] force = 70 * 0.7602657 = 53.2186 -[04/26/2026 06:33:00] launching puck at (-1.58, -2.42) with (83.93, 128.88) force -[04/26/2026 06:33:07] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:33:07] launching puck at (-0.13, 5.00) with (9.06, -348.34) force -[04/26/2026 06:33:13] force = 70 * 0.923798 = 64.66586 -[04/26/2026 06:33:13] launching puck at (2.33, -3.53) with (-150.64, 227.97) force -[04/26/2026 06:33:20] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:33:20] launching puck at (3.19, 3.85) with (-222.33, -268.31) force -[04/26/2026 06:33:24] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:33:24] launching puck at (3.62, -3.44) with (-252.58, 240.05) force -[04/26/2026 06:33:29] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:33:29] launching puck at (-0.46, 4.98) with (31.87, -346.99) force -[04/26/2026 06:33:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:33:36] launching puck at (-0.01, -5.00) with (0.52, 348.45) force -[04/26/2026 06:33:43] force = 70 * 0.9766052 = 68.36237 -[04/26/2026 06:33:43] launching puck at (-1.94, -4.38) with (132.36, 299.52) force -[04/26/2026 06:33:49] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:33:49] launching puck at (0.15, 5.00) with (-10.56, -348.29) force -[04/26/2026 06:33:58] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:33:58] launching puck at (1.93, -4.61) with (-134.83, 321.31) force -[04/26/2026 06:34:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:34:03] launching puck at (-3.55, 3.52) with (247.38, -245.41) force -[04/26/2026 06:34:10] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:34:10] launching puck at (0.09, -5.00) with (-6.08, 348.40) force -[04/26/2026 06:34:16] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:34:16] launching puck at (-2.54, -4.31) with (176.74, 300.31) force -[04/26/2026 06:34:16] Dedicated match PATCH success: 200 {"ok":true,"id":164} -[04/26/2026 06:34:17] Dedicated match PATCH success: 200 {"ok":true,"id":164,"winner_id":31,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26739.txt b/games/soccar/soccar_Data/26739.txt deleted file mode 100644 index a42c05a..0000000 --- a/games/soccar/soccar_Data/26739.txt +++ /dev/null @@ -1,81 +0,0 @@ -[04/26/2026 06:50:24] Configured dedicated match reporting for match id 197 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:50:24] Starting server at port 26739 -[04/26/2026 06:50:39] Game started On Server -[04/26/2026 06:50:40] Dedicated match PATCH success: 200 {"ok":true,"id":197} -[04/26/2026 06:50:40] Dedicated match PATCH success: 200 {"ok":true,"id":197} -[04/26/2026 06:50:45] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:50:45] launching puck at (0.18, -5.00) with (-12.80, 348.22) force -[04/26/2026 06:50:51] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:50:51] launching puck at (-3.23, 3.82) with (224.81, -266.24) force -[04/26/2026 06:50:57] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:50:57] launching puck at (-3.66, -3.41) with (254.92, 237.57) force -[04/26/2026 06:51:04] force = 70 * 0.9192526 = 64.34768 -[04/26/2026 06:51:04] launching puck at (-3.95, -1.38) with (253.94, 88.54) force -[04/26/2026 06:51:13] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:13] launching puck at (4.96, 0.64) with (-345.56, -44.79) force -[04/26/2026 06:51:21] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:21] launching puck at (2.03, -4.57) with (-141.75, 318.32) force -[04/26/2026 06:51:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:27] launching puck at (-1.35, 4.81) with (94.42, -335.42) force -[04/26/2026 06:51:34] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:34] launching puck at (-4.59, -1.97) with (320.18, 137.50) force -[04/26/2026 06:51:40] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:40] launching puck at (-4.86, 1.18) with (338.54, -82.54) force -[04/26/2026 06:51:48] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:48] launching puck at (-2.17, -4.50) with (151.27, 313.90) force -[04/26/2026 06:51:55] force = 70 * 0.9844621 = 68.91235 -[04/26/2026 06:51:55] launching puck at (-4.02, 2.76) with (277.13, -190.13) force -[04/26/2026 06:52:00] force = 70 * 0.9780298 = 68.46208 -[04/26/2026 06:52:00] launching puck at (-4.78, -0.54) with (326.94, 36.91) force -[04/26/2026 06:52:08] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:52:08] launching puck at (-0.11, 5.00) with (7.60, -348.37) force -[04/26/2026 06:52:21] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:52:21] launching puck at (-1.94, -4.61) with (135.40, 321.07) force -[04/26/2026 06:52:26] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:52:26] launching puck at (-0.92, -4.91) with (64.19, 342.49) force -[04/26/2026 06:52:34] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:52:34] launching puck at (-0.27, -4.99) with (18.65, 347.95) force -[04/26/2026 06:52:41] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:52:41] launching puck at (0.02, 5.00) with (-1.13, -348.45) force -[04/26/2026 06:53:10] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:10] launching puck at (0.31, 4.99) with (-21.50, -347.79) force -[04/26/2026 06:53:19] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:19] launching puck at (-0.14, -5.00) with (9.55, 348.32) force -[04/26/2026 06:53:25] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:25] launching puck at (3.95, 3.06) with (-275.44, -213.43) force -[04/26/2026 06:53:29] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:29] launching puck at (-0.04, -5.00) with (2.74, 348.44) force -[04/26/2026 06:53:35] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:35] launching puck at (4.19, 2.73) with (-292.07, -190.04) force -[04/26/2026 06:53:41] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:41] launching puck at (4.05, -2.93) with (-282.52, 203.96) force -[04/26/2026 06:53:47] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:47] launching puck at (3.21, 3.83) with (-223.67, -267.19) force -[04/26/2026 06:53:53] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:53] launching puck at (-0.44, -4.98) with (30.55, 347.11) force -[04/26/2026 06:53:59] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:59] launching puck at (0.18, 5.00) with (-12.42, -348.23) force -[04/26/2026 06:54:05] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:54:05] launching puck at (4.40, -2.37) with (-306.67, 165.45) force -[04/26/2026 06:54:12] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:54:12] launching puck at (1.85, 4.65) with (-128.88, -323.74) force -[04/26/2026 06:54:17] force = 70 * 0.9634415 = 67.4409 -[04/26/2026 06:54:17] launching puck at (-2.12, -4.13) with (143.06, 278.73) force -[04/26/2026 06:54:22] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:54:22] launching puck at (-4.97, -0.51) with (346.63, 35.64) force -[04/26/2026 06:54:30] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:54:30] launching puck at (0.10, 5.00) with (-7.13, -348.38) force -[04/26/2026 06:54:35] force = 70 * 0.8175741 = 57.23019 -[04/26/2026 06:54:35] launching puck at (-2.60, -2.01) with (149.02, 114.84) force -[04/26/2026 06:54:41] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:54:41] launching puck at (-1.52, 4.76) with (106.11, -331.90) force -[04/26/2026 06:54:47] force = 70 * 0.9766108 = 68.36275 -[04/26/2026 06:54:47] launching puck at (4.73, -0.73) with (-323.68, 49.69) force -[04/26/2026 06:54:53] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:54:53] launching puck at (2.20, 4.49) with (-152.99, -313.07) force -[04/26/2026 06:55:04] force = 70 * 0.9866468 = 69.06528 -[04/26/2026 06:55:04] launching puck at (4.90, -0.08) with (-338.45, 5.67) force -[04/26/2026 06:55:14] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:55:14] launching puck at (1.53, 4.76) with (-106.60, -331.75) force -[04/26/2026 06:55:14] Dedicated match PATCH success: 200 {"ok":true,"id":197} -[04/26/2026 06:55:15] Dedicated match PATCH success: 200 {"ok":true,"id":197,"winner_id":18,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26752.txt b/games/soccar/soccar_Data/26752.txt deleted file mode 100644 index 83dbe35..0000000 --- a/games/soccar/soccar_Data/26752.txt +++ /dev/null @@ -1,107 +0,0 @@ -[04/26/2026 06:03:41] Configured dedicated match reporting for match id 122 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:03:41] Starting server at port 26752 -[04/26/2026 06:04:36] Dedicated match PATCH success: 200 {"ok":true,"id":122} -[04/26/2026 06:04:36] Game started On Server -[04/26/2026 06:04:38] Dedicated match PATCH success: 200 {"ok":true,"id":122} -[04/26/2026 06:04:42] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:04:42] launching puck at (0.01, -5.00) with (-0.80, 348.45) force -[04/26/2026 06:04:48] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:04:48] launching puck at (1.04, 4.89) with (-72.14, -340.90) force -[04/26/2026 06:04:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:04:55] launching puck at (0.76, -4.94) with (-52.78, 344.43) force -[04/26/2026 06:05:01] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:05:01] launching puck at (-2.45, 4.36) with (171.03, -303.59) force -[04/26/2026 06:05:08] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:05:08] launching puck at (0.32, -4.99) with (-22.11, 347.75) force -[04/26/2026 06:05:14] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:05:14] launching puck at (3.07, 3.94) with (-214.20, -274.85) force -[04/26/2026 06:05:22] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:05:22] launching puck at (2.68, -4.22) with (-187.05, 293.99) force -[04/26/2026 06:05:28] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:05:28] launching puck at (-3.35, 3.71) with (233.70, -258.46) force -[04/26/2026 06:05:34] force = 70 * 0.6318728 = 44.2311 -[04/26/2026 06:05:34] launching puck at (-2.08, -0.66) with (92.09, 29.05) force -[04/26/2026 06:05:45] force = 70 * 0.9040543 = 63.28381 -[04/26/2026 06:05:45] launching puck at (-3.95, -0.80) with (249.95, 50.41) force -[04/26/2026 06:05:52] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:05:52] launching puck at (-0.58, -4.97) with (40.23, 346.12) force -[04/26/2026 06:05:57] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:05:57] launching puck at (-4.67, 1.78) with (325.74, -123.74) force -[04/26/2026 06:06:02] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:06:02] launching puck at (-3.13, -3.90) with (218.44, 271.49) force -[04/26/2026 06:06:09] force = 70 * 0.9601797 = 67.21258 -[04/26/2026 06:06:09] launching puck at (2.49, -3.88) with (-167.32, 260.79) force -[04/26/2026 06:06:15] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:06:15] launching puck at (-2.69, -4.22) with (187.26, 293.86) force -[04/26/2026 06:06:21] force = 70 * 0.5420874 = 37.94612 -[04/26/2026 06:06:21] launching puck at (-0.27, -1.73) with (10.25, 65.75) force -[04/26/2026 06:06:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:06:27] launching puck at (-2.40, -4.39) with (167.41, 305.61) force -[04/26/2026 06:06:32] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:06:32] launching puck at (-4.10, -2.86) with (285.79, 199.36) force -[04/26/2026 06:06:39] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:06:39] launching puck at (-3.37, -3.69) with (235.19, 257.11) force -[04/26/2026 06:06:45] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:06:45] launching puck at (1.61, -4.73) with (-112.11, 329.93) force -[04/26/2026 06:06:54] force = 70 * 0.8643063 = 60.50144 -[04/26/2026 06:06:54] launching puck at (-1.11, 3.49) with (66.89, -211.37) force -[04/26/2026 06:07:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:03] launching puck at (0.82, 4.93) with (-57.42, -343.69) force -[04/26/2026 06:07:09] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:09] launching puck at (-3.71, -3.35) with (258.68, 233.46) force -[04/26/2026 06:07:16] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:16] launching puck at (-4.75, 1.55) with (331.29, -108.02) force -[04/26/2026 06:07:23] force = 70 * 0.9779826 = 68.45879 -[04/26/2026 06:07:23] launching puck at (0.22, 4.80) with (-15.36, -328.61) force -[04/26/2026 06:07:29] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:29] launching puck at (0.99, 4.90) with (-68.97, -341.56) force -[04/26/2026 06:07:37] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:37] launching puck at (-0.20, -5.00) with (14.09, 348.17) force -[04/26/2026 06:07:43] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:43] launching puck at (3.19, 3.85) with (-222.17, -268.44) force -[04/26/2026 06:07:49] force = 70 * 0.9664215 = 67.64951 -[04/26/2026 06:07:49] launching puck at (4.52, 1.21) with (-305.70, -81.88) force -[04/26/2026 06:07:56] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:56] launching puck at (2.04, 4.57) with (-141.99, -318.21) force -[04/26/2026 06:08:02] force = 70 * 0.9739143 = 68.174 -[04/26/2026 06:08:02] launching puck at (4.65, 1.02) with (-317.07, -69.22) force -[04/26/2026 06:08:09] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:09] launching puck at (-0.26, 4.99) with (18.09, -347.98) force -[04/26/2026 06:08:17] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:17] launching puck at (0.54, -4.97) with (-37.95, 346.38) force -[04/26/2026 06:08:22] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:22] launching puck at (4.78, -1.48) with (-332.82, 103.21) force -[04/26/2026 06:08:28] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:28] launching puck at (1.44, -4.79) with (-100.20, 333.74) force -[04/26/2026 06:08:33] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:33] launching puck at (-0.80, -4.93) with (56.09, 343.91) force -[04/26/2026 06:08:39] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:39] launching puck at (3.82, -3.23) with (-266.26, 224.77) force -[04/26/2026 06:08:45] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:45] launching puck at (4.55, 2.06) with (-317.37, -143.86) force -[04/26/2026 06:08:51] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:51] launching puck at (2.43, -4.37) with (-169.02, 304.72) force -[04/26/2026 06:08:56] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:56] launching puck at (0.41, 4.98) with (-28.25, -347.31) force -[04/26/2026 06:09:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:09:03] launching puck at (4.94, 0.75) with (-344.48, -52.46) force -[04/26/2026 06:09:10] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:09:10] launching puck at (-0.04, 5.00) with (2.62, -348.44) force -[04/26/2026 06:09:17] force = 70 * 0.888665 = 62.20655 -[04/26/2026 06:09:17] launching puck at (3.87, 0.37) with (-240.47, -22.78) force -[04/26/2026 06:09:22] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:09:22] launching puck at (1.90, 4.63) with (-132.13, -322.43) force -[04/26/2026 06:09:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:09:27] launching puck at (4.96, 0.61) with (-345.88, -42.28) force -[04/26/2026 06:09:32] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:09:32] launching puck at (3.81, 3.24) with (-265.43, -225.76) force -[04/26/2026 06:09:39] force = 70 * 0.7793816 = 54.55671 -[04/26/2026 06:09:39] launching puck at (2.97, 0.53) with (-161.98, -28.73) force -[04/26/2026 06:09:46] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:09:46] launching puck at (-1.89, 4.63) with (131.51, -322.68) force -[04/26/2026 06:09:52] force = 70 * 0.9812108 = 68.68476 -[04/26/2026 06:09:52] launching puck at (-4.41, 1.99) with (303.03, -136.86) force -[04/26/2026 06:10:00] force = 70 * 0.9335618 = 65.34933 -[04/26/2026 06:10:00] launching puck at (-4.14, 1.27) with (270.29, -82.88) force -[04/26/2026 06:10:00] Dedicated match PATCH success: 200 {"ok":true,"id":122} -[04/26/2026 06:10:03] Dedicated match PATCH success: 200 {"ok":true,"id":122,"winner_id":19,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26757.txt b/games/soccar/soccar_Data/26757.txt deleted file mode 100644 index 56a4a95..0000000 --- a/games/soccar/soccar_Data/26757.txt +++ /dev/null @@ -1,51 +0,0 @@ -[04/24/2026 19:36:57] Configured dedicated match reporting for match id 93 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/24/2026 19:36:57] Starting server at port 26757 -[04/24/2026 19:37:01] Dedicated match PATCH success: 200 {"ok":true,"id":93} -[04/24/2026 19:37:01] Game started On Server -[04/24/2026 19:37:02] Dedicated match PATCH success: 200 {"ok":true,"id":93} -[04/24/2026 19:37:06] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:37:06] launching puck at (-0.02, -5.00) with (1.50, 348.45) force -[04/24/2026 19:37:13] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:37:13] launching puck at (-2.77, 4.16) with (192.94, -290.16) force -[04/24/2026 19:37:17] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:37:17] launching puck at (-1.83, -4.65) with (127.78, 324.18) force -[04/24/2026 19:37:23] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:37:23] launching puck at (0.54, 4.97) with (-37.29, -346.45) force -[04/24/2026 19:37:28] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:37:28] launching puck at (3.93, -3.09) with (-274.03, 215.24) force -[04/24/2026 19:37:34] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:37:34] launching puck at (-0.20, 5.00) with (14.24, -348.16) force -[04/24/2026 19:37:39] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:37:39] launching puck at (3.87, -3.17) with (-269.40, 221.00) force -[04/24/2026 19:37:45] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:37:45] launching puck at (-2.23, 4.48) with (155.20, -311.98) force -[04/24/2026 19:37:57] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:37:57] launching puck at (4.73, -1.63) with (-329.43, 113.55) force -[04/24/2026 19:38:10] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:38:10] launching puck at (-0.96, 4.91) with (66.94, -341.96) force -[04/24/2026 19:38:17] force = 70 * 0.9848125 = 68.93687 -[04/24/2026 19:38:17] launching puck at (4.80, -0.86) with (-331.23, 59.13) force -[04/24/2026 19:38:24] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:38:24] launching puck at (-3.30, 3.75) with (230.32, -261.48) force -[04/24/2026 19:38:30] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:38:30] launching puck at (-1.90, 4.62) with (132.75, -322.18) force -[04/24/2026 19:38:34] force = 70 * 0.6696035 = 46.87224 -[04/24/2026 19:38:34] launching puck at (-0.02, 2.37) with (0.81, -111.09) force -[04/24/2026 19:38:43] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:38:43] launching puck at (0.65, -4.96) with (-45.00, 345.54) force -[04/24/2026 19:38:50] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:38:50] launching puck at (4.56, 2.05) with (-317.88, -142.72) force -[04/24/2026 19:38:56] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:38:56] launching puck at (4.11, -2.85) with (-286.45, 198.40) force -[04/24/2026 19:39:01] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:39:01] launching puck at (-4.26, 2.62) with (296.64, -182.83) force -[04/24/2026 19:39:07] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:39:07] launching puck at (-1.58, 4.75) with (109.80, -330.70) force -[04/24/2026 19:39:13] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:39:13] launching puck at (-4.08, -2.89) with (284.42, 201.31) force -[04/24/2026 19:39:17] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:39:17] launching puck at (3.74, -3.32) with (-260.51, 231.42) force -[04/24/2026 19:39:22] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 19:39:22] launching puck at (-4.91, 0.97) with (341.84, -67.55) force -[04/24/2026 19:39:24] Dedicated match PATCH success: 200 {"ok":true,"id":93} -[04/24/2026 19:39:25] Dedicated match PATCH success: 200 {"ok":true,"id":93,"winner_id":9,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26759.txt b/games/soccar/soccar_Data/26759.txt deleted file mode 100644 index 13a2e01..0000000 --- a/games/soccar/soccar_Data/26759.txt +++ /dev/null @@ -1,9 +0,0 @@ -[04/26/2026 19:17:15] Configured dedicated match reporting for match id 213 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 19:17:15] Starting server at port 26759 -[04/26/2026 19:17:25] Game started On Server -[04/26/2026 19:17:26] Dedicated match PATCH success: 200 {"ok":true,"id":213} -[04/26/2026 19:17:26] Dedicated match PATCH success: 200 {"ok":true,"id":213} -[04/26/2026 19:18:21] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 19:18:21] launching puck at (2.02, -4.57) with (-140.66, 318.80) force -[04/26/2026 19:18:51] force = 70 * 0.5220158 = 36.54111 -[04/26/2026 19:18:51] launching puck at (-1.29, -1.04) with (47.00, 38.05) force diff --git a/games/soccar/soccar_Data/26765.txt b/games/soccar/soccar_Data/26765.txt deleted file mode 100644 index 2e383db..0000000 --- a/games/soccar/soccar_Data/26765.txt +++ /dev/null @@ -1,93 +0,0 @@ -[04/26/2026 06:21:32] Configured dedicated match reporting for match id 151 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:21:32] Starting server at port 26765 -[04/26/2026 06:21:39] Game started On Server -[04/26/2026 06:21:39] Dedicated match PATCH success: 200 {"ok":true,"id":151} -[04/26/2026 06:21:40] Dedicated match PATCH success: 200 {"ok":true,"id":151} -[04/26/2026 06:21:45] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:21:45] launching puck at (-0.02, -5.00) with (1.35, 348.45) force -[04/26/2026 06:21:52] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:21:52] launching puck at (-2.97, 4.02) with (206.87, -280.40) force -[04/26/2026 06:22:00] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:22:00] launching puck at (-2.25, -4.46) with (157.03, 311.06) force -[04/26/2026 06:22:05] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:22:05] launching puck at (2.01, 4.58) with (-139.89, -319.14) force -[04/26/2026 06:22:13] force = 70 * 0.9014558 = 63.1019 -[04/26/2026 06:22:13] launching puck at (-3.22, -2.38) with (203.22, 150.13) force -[04/26/2026 06:22:19] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:22:19] launching puck at (-2.33, 4.42) with (162.49, -308.25) force -[04/26/2026 06:22:26] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:22:26] launching puck at (-3.80, -3.25) with (264.96, 226.31) force -[04/26/2026 06:22:31] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:22:31] launching puck at (-3.97, 3.04) with (276.66, -211.85) force -[04/26/2026 06:22:40] force = 70 * 0.9744899 = 68.21429 -[04/26/2026 06:22:40] launching puck at (3.22, -3.51) with (-219.75, 239.67) force -[04/26/2026 06:22:46] force = 70 * 0.9745144 = 68.216 -[04/26/2026 06:22:46] launching puck at (3.15, -3.57) with (-215.15, 243.84) force -[04/26/2026 06:22:51] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:22:51] launching puck at (-0.71, -4.95) with (49.82, 344.87) force -[04/26/2026 06:22:56] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:22:56] launching puck at (3.80, 3.24) with (-265.15, -226.09) force -[04/26/2026 06:23:06] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:23:06] launching puck at (0.19, -5.00) with (-13.08, 348.21) force -[04/26/2026 06:23:16] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:23:16] launching puck at (4.98, 0.45) with (-347.03, -31.46) force -[04/26/2026 06:23:20] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:23:20] launching puck at (4.64, -1.86) with (-323.44, 129.64) force -[04/26/2026 06:23:24] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:23:24] launching puck at (5.00, 0.04) with (-348.44, -2.85) force -[04/26/2026 06:23:31] force = 70 * 0.6209916 = 43.46941 -[04/26/2026 06:23:31] launching puck at (-1.28, 1.71) with (55.61, -74.13) force -[04/26/2026 06:23:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:23:36] launching puck at (-3.62, 3.45) with (252.29, -240.35) force -[04/26/2026 06:23:44] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:23:44] launching puck at (0.71, -4.95) with (-49.13, 344.97) force -[04/26/2026 06:23:52] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:23:52] launching puck at (-0.16, 5.00) with (10.95, -348.28) force -[04/26/2026 06:24:03] force = 70 * 0.9054112 = 63.37878 -[04/26/2026 06:24:03] launching puck at (-3.26, -2.39) with (206.61, 151.49) force -[04/26/2026 06:24:10] force = 70 * 0.9841011 = 68.88708 -[04/26/2026 06:24:10] launching puck at (-4.85, -0.50) with (333.89, 34.70) force -[04/26/2026 06:24:18] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:24:18] launching puck at (2.27, -4.45) with (-158.49, 310.33) force -[04/26/2026 06:24:24] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:24:24] launching puck at (4.34, 2.48) with (-302.43, -173.07) force -[04/26/2026 06:24:30] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:24:30] launching puck at (0.61, -4.96) with (-42.27, 345.88) force -[04/26/2026 06:24:37] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:24:37] launching puck at (-2.70, 4.21) with (188.12, -293.31) force -[04/26/2026 06:24:43] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:24:43] launching puck at (-3.45, -3.62) with (240.42, 252.23) force -[04/26/2026 06:24:48] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:24:48] launching puck at (0.34, 4.99) with (-23.64, -347.65) force -[04/26/2026 06:24:56] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:24:56] launching puck at (3.63, 3.44) with (-252.76, -239.86) force -[04/26/2026 06:25:01] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:25:01] launching puck at (4.42, 2.34) with (-307.80, -163.34) force -[04/26/2026 06:25:08] force = 70 * 0.9391387 = 65.73971 -[04/26/2026 06:25:08] launching puck at (-2.71, 3.45) with (178.05, -226.67) force -[04/26/2026 06:25:18] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:25:18] launching puck at (-0.21, -5.00) with (14.36, 348.16) force -[04/26/2026 06:25:25] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:25:25] launching puck at (3.44, 3.62) with (-240.04, -252.58) force -[04/26/2026 06:25:31] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:25:31] launching puck at (3.91, -3.12) with (-272.36, 217.34) force -[04/26/2026 06:25:37] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:25:37] launching puck at (0.25, 4.99) with (-17.37, -348.02) force -[04/26/2026 06:25:44] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:25:44] launching puck at (0.97, -4.90) with (-67.64, 341.83) force -[04/26/2026 06:25:49] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:25:49] launching puck at (4.03, 2.95) with (-281.20, -205.78) force -[04/26/2026 06:25:58] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:25:58] launching puck at (4.20, -2.71) with (-292.66, 189.13) force -[04/26/2026 06:26:05] force = 70 * 0.9398586 = 65.7901 -[04/26/2026 06:26:05] launching puck at (3.96, 1.91) with (-260.35, -125.36) force -[04/26/2026 06:26:12] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:26:12] launching puck at (1.68, -4.71) with (-117.15, 328.17) force -[04/26/2026 06:26:17] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:26:17] launching puck at (2.11, -4.53) with (-147.18, 315.85) force -[04/26/2026 06:26:22] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:26:22] launching puck at (-0.53, -4.97) with (37.25, 346.46) force -[04/26/2026 06:26:35] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:26:35] launching puck at (0.68, -4.95) with (-47.38, 345.22) force -[04/26/2026 06:26:39] force = 70 * 0.9282709 = 64.97896 -[04/26/2026 06:26:39] launching puck at (-0.39, -4.25) with (25.42, 276.38) force diff --git a/games/soccar/soccar_Data/26766.txt b/games/soccar/soccar_Data/26766.txt deleted file mode 100644 index 6769069..0000000 --- a/games/soccar/soccar_Data/26766.txt +++ /dev/null @@ -1,75 +0,0 @@ -[04/20/2026 20:33:26] Configured dedicated match reporting for match id 85 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/20/2026 20:33:26] Starting server at port 26766 -[04/20/2026 20:33:32] Game started On Server -[04/20/2026 20:33:33] Dedicated match PATCH success: 200 {"ok":true,"id":85} -[04/20/2026 20:33:33] Dedicated match PATCH success: 200 {"ok":true,"id":85} -[04/20/2026 20:33:36] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:33:36] launching puck at (0.17, -5.00) with (-11.88, 348.25) force -[04/20/2026 20:33:45] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:33:45] launching puck at (-3.32, 3.74) with (231.21, -260.69) force -[04/20/2026 20:33:53] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:33:53] launching puck at (-2.12, -4.53) with (147.53, 315.68) force -[04/20/2026 20:34:02] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:34:02] launching puck at (-2.54, -4.31) with (176.74, 300.30) force -[04/20/2026 20:34:08] force = 70 * 0.9711945 = 67.98361 -[04/20/2026 20:34:08] launching puck at (-4.67, -0.74) with (317.68, 50.02) force -[04/20/2026 20:34:19] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:34:19] launching puck at (-2.29, 4.44) with (159.84, -309.63) force -[04/20/2026 20:34:24] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:34:24] launching puck at (0.31, -4.99) with (-21.57, 347.78) force -[04/20/2026 20:34:29] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:34:29] launching puck at (-2.41, 4.38) with (167.70, -305.44) force -[04/20/2026 20:34:36] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:34:36] launching puck at (-0.21, -5.00) with (14.44, 348.15) force -[04/20/2026 20:34:51] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:34:51] launching puck at (-4.43, -2.33) with (308.48, 162.05) force -[04/20/2026 20:35:03] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:35:03] launching puck at (-3.18, -3.86) with (221.30, 269.16) force -[04/20/2026 20:35:08] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:35:08] launching puck at (3.58, 3.49) with (-249.47, -243.28) force -[04/20/2026 20:35:13] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:35:13] launching puck at (3.14, -3.89) with (-219.04, 271.00) force -[04/20/2026 20:35:19] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:35:19] launching puck at (0.04, -5.00) with (-3.06, 348.44) force -[04/20/2026 20:35:27] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:35:27] launching puck at (-3.51, -3.56) with (244.94, 247.84) force -[04/20/2026 20:35:35] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:35:35] launching puck at (-2.13, -4.53) with (148.22, 315.36) force -[04/20/2026 20:35:44] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:35:44] launching puck at (-3.53, 3.54) with (245.94, -246.84) force -[04/20/2026 20:35:49] force = 70 * 0.9811369 = 68.67958 -[04/20/2026 20:35:49] launching puck at (-4.13, -2.53) with (283.56, 173.49) force -[04/20/2026 20:35:54] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:35:54] launching puck at (-0.87, 4.92) with (60.86, -343.10) force -[04/20/2026 20:36:01] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:36:01] launching puck at (-2.75, -4.18) with (191.67, 291.00) force -[04/20/2026 20:36:06] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:36:06] launching puck at (4.19, 2.73) with (-292.09, -190.01) force -[04/20/2026 20:36:10] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:36:10] launching puck at (0.27, -4.99) with (-18.83, 347.94) force -[04/20/2026 20:36:14] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:36:14] launching puck at (1.86, 4.64) with (-129.79, -323.38) force -[04/20/2026 20:36:21] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:36:21] launching puck at (-0.12, -5.00) with (8.29, 348.35) force -[04/20/2026 20:36:28] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:36:28] launching puck at (-1.39, 4.80) with (96.62, -334.79) force -[04/20/2026 20:36:34] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:36:34] launching puck at (0.17, 5.00) with (-11.92, -348.25) force -[04/20/2026 20:36:40] force = 70 * 0.8420228 = 58.94159 -[04/20/2026 20:36:40] launching puck at (3.18, 1.41) with (-187.34, -83.24) force -[04/20/2026 20:36:45] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:36:45] launching puck at (4.55, 2.06) with (-317.41, -143.77) force -[04/20/2026 20:36:49] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:36:49] launching puck at (2.59, -4.28) with (-180.52, 298.05) force -[04/20/2026 20:36:55] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:36:55] launching puck at (3.27, 3.78) with (-228.03, -263.48) force -[04/20/2026 20:36:59] force = 70 * 0.9545004 = 66.81503 -[04/20/2026 20:36:59] launching puck at (4.51, -0.62) with (-301.11, 41.12) force -[04/20/2026 20:37:04] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:37:04] launching puck at (3.89, 3.14) with (-271.01, -219.03) force -[04/20/2026 20:37:10] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:37:10] launching puck at (-0.03, 5.00) with (1.91, -348.45) force -[04/20/2026 20:37:19] force = 70 * 0.9955804 = 69.69063 -[04/20/2026 20:37:19] launching puck at (-0.61, 4.96) with (42.26, -345.88) force -[04/20/2026 20:37:20] Dedicated match PATCH success: 200 {"ok":true,"id":85} -[04/20/2026 20:37:21] Dedicated match PATCH success: 200 {"ok":true,"id":85,"winner_id":9,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26774.txt b/games/soccar/soccar_Data/26774.txt deleted file mode 100644 index e96ec57..0000000 --- a/games/soccar/soccar_Data/26774.txt +++ /dev/null @@ -1,25 +0,0 @@ -[04/26/2026 06:02:41] Configured dedicated match reporting for match id 120 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:02:41] Starting server at port 26774 -[04/26/2026 06:03:06] Game started On Server -[04/26/2026 06:03:08] Dedicated match PATCH success: 200 {"ok":true,"id":120} -[04/26/2026 06:03:09] Dedicated match PATCH success: 200 {"ok":true,"id":120} -[04/26/2026 06:03:24] force = 70 * 0.9258104 = 64.80672 -[04/26/2026 06:03:24] launching puck at (0.18, 4.24) with (-11.68, -274.93) force -[04/26/2026 06:03:33] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:33] launching puck at (-4.59, 1.99) with (319.54, -138.97) force -[04/26/2026 06:03:38] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:38] launching puck at (-0.26, 4.99) with (18.19, -347.98) force -[04/26/2026 06:03:45] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:45] launching puck at (-1.80, -4.67) with (125.13, 325.21) force -[04/26/2026 06:03:50] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:50] launching puck at (2.67, 4.23) with (-186.01, -294.65) force -[04/26/2026 06:03:58] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:58] launching puck at (0.75, -4.94) with (-52.60, 344.46) force -[04/26/2026 06:04:05] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:04:05] launching puck at (-4.97, 0.58) with (346.07, -40.68) force -[04/26/2026 06:04:10] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:04:10] launching puck at (-1.41, -4.80) with (98.04, 334.38) force -[04/26/2026 06:04:17] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:04:17] launching puck at (1.81, 4.66) with (-126.43, -324.71) force -[04/26/2026 06:04:18] Dedicated match PATCH success: 200 {"ok":true,"id":120} -[04/26/2026 06:04:20] Dedicated match PATCH success: 200 {"ok":true,"id":120,"winner_id":20,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26784.txt b/games/soccar/soccar_Data/26784.txt deleted file mode 100644 index eaa7e9c..0000000 --- a/games/soccar/soccar_Data/26784.txt +++ /dev/null @@ -1,65 +0,0 @@ -[04/26/2026 06:21:58] Configured dedicated match reporting for match id 152 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:21:58] Starting server at port 26784 -[04/26/2026 06:22:10] Game started On Server -[04/26/2026 06:22:10] Dedicated match PATCH success: 200 {"ok":true,"id":152} -[04/26/2026 06:22:11] Dedicated match PATCH success: 200 {"ok":true,"id":152} -[04/26/2026 06:22:12] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:22:12] launching puck at (0.45, -4.98) with (-31.17, 347.06) force -[04/26/2026 06:22:18] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:22:18] launching puck at (1.04, -4.89) with (-72.20, 340.89) force -[04/26/2026 06:22:23] force = 70 * 0.9605813 = 67.24069 -[04/26/2026 06:22:23] launching puck at (4.21, -1.89) with (-282.94, 127.34) force -[04/26/2026 06:22:33] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:22:33] launching puck at (-2.20, 4.49) with (153.43, -312.85) force -[04/26/2026 06:22:39] force = 70 * 0.9453254 = 66.17278 -[04/26/2026 06:22:39] launching puck at (3.27, -3.01) with (-216.64, 199.44) force -[04/26/2026 06:22:46] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:22:46] launching puck at (4.71, 1.67) with (-328.43, -116.43) force -[04/26/2026 06:23:03] force = 70 * 0.74518 = 52.1626 -[04/26/2026 06:23:03] launching puck at (2.76, -0.43) with (-144.04, 22.62) force -[04/26/2026 06:23:09] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:23:09] launching puck at (3.07, 3.95) with (-213.68, -275.25) force -[04/26/2026 06:23:15] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:23:15] launching puck at (0.41, -4.98) with (-28.48, 347.29) force -[04/26/2026 06:23:22] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:23:22] launching puck at (-2.93, 4.05) with (204.16, -282.38) force -[04/26/2026 06:23:28] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:23:28] launching puck at (-4.57, -2.02) with (318.61, 141.09) force -[04/26/2026 06:23:35] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:23:35] launching puck at (0.21, 5.00) with (-14.37, -348.16) force -[04/26/2026 06:23:42] force = 70 * 0.9878746 = 69.15122 -[04/26/2026 06:23:42] launching puck at (3.13, -3.79) with (-216.69, 261.82) force -[04/26/2026 06:23:49] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:23:49] launching puck at (-1.25, 4.84) with (87.39, -337.32) force -[04/26/2026 06:23:54] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:23:54] launching puck at (3.34, -3.72) with (-232.61, 259.44) force -[04/26/2026 06:24:01] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:24:01] launching puck at (-0.10, 5.00) with (7.30, -348.38) force -[04/26/2026 06:24:08] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:24:08] launching puck at (-3.96, -3.06) with (275.75, 213.04) force -[04/26/2026 06:24:22] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:24:22] launching puck at (-4.88, 1.08) with (340.28, -75.04) force -[04/26/2026 06:24:30] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:24:30] launching puck at (2.81, -4.13) with (-196.02, 288.09) force -[04/26/2026 06:24:43] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:24:43] launching puck at (-3.37, 3.69) with (235.04, -257.25) force -[04/26/2026 06:24:51] force = 70 * 0.7702866 = 53.92006 -[04/26/2026 06:24:51] launching puck at (2.02, 2.16) with (-108.77, -116.42) force -[04/26/2026 06:24:59] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:24:59] launching puck at (4.73, 1.63) with (-329.35, -113.78) force -[04/26/2026 06:25:06] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:25:06] launching puck at (0.11, -5.00) with (-7.48, 348.37) force -[04/26/2026 06:25:13] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:25:13] launching puck at (4.19, 2.72) with (-292.34, -189.62) force -[04/26/2026 06:25:18] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:25:18] launching puck at (-4.89, -1.05) with (340.69, 73.14) force -[04/26/2026 06:25:24] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:25:24] launching puck at (-2.69, -4.21) with (187.70, 293.58) force -[04/26/2026 06:25:31] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:25:31] launching puck at (-0.33, 4.99) with (23.17, -347.68) force -[04/26/2026 06:25:37] force = 70 * 0.9747643 = 68.23351 -[04/26/2026 06:25:37] launching puck at (-4.77, 0.19) with (325.21, -12.81) force -[04/26/2026 06:25:42] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:25:42] launching puck at (-0.33, 4.99) with (23.18, -347.68) force -[04/26/2026 06:25:43] Dedicated match PATCH success: 200 {"ok":true,"id":152} -[04/26/2026 06:25:45] Dedicated match PATCH success: 200 {"ok":true,"id":152,"winner_id":9,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26789.txt b/games/soccar/soccar_Data/26789.txt deleted file mode 100644 index 52883f8..0000000 --- a/games/soccar/soccar_Data/26789.txt +++ /dev/null @@ -1,63 +0,0 @@ -[04/26/2026 06:18:59] Configured dedicated match reporting for match id 145 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:18:59] Starting server at port 26789 -[04/26/2026 06:19:04] Dedicated match PATCH success: 200 {"ok":true,"id":145} -[04/26/2026 06:19:05] Game started On Server -[04/26/2026 06:19:07] Dedicated match PATCH success: 200 {"ok":true,"id":145} -[04/26/2026 06:19:20] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:20] launching puck at (0.25, -4.99) with (-17.51, 348.01) force -[04/26/2026 06:19:28] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:28] launching puck at (-3.21, 3.83) with (223.91, -266.99) force -[04/26/2026 06:19:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:36] launching puck at (2.62, -4.26) with (-182.42, 296.89) force -[04/26/2026 06:19:42] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:42] launching puck at (2.55, 4.30) with (-177.37, -299.93) force -[04/26/2026 06:19:50] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:50] launching puck at (-0.03, -5.00) with (2.43, 348.44) force -[04/26/2026 06:20:00] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:00] launching puck at (-2.20, 4.49) with (153.22, -312.96) force -[04/26/2026 06:20:13] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:13] launching puck at (-0.55, -4.97) with (38.65, 346.30) force -[04/26/2026 06:20:21] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:21] launching puck at (-0.27, 4.99) with (18.57, -347.96) force -[04/26/2026 06:20:30] force = 70 * 0.9136825 = 63.95777 -[04/26/2026 06:20:30] launching puck at (-1.76, -3.73) with (112.36, 238.61) force -[04/26/2026 06:20:37] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:37] launching puck at (-0.12, 5.00) with (8.35, -348.35) force -[04/26/2026 06:20:44] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:44] launching puck at (0.08, -5.00) with (-5.34, 348.41) force -[04/26/2026 06:20:53] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:53] launching puck at (0.31, 4.99) with (-21.58, -347.78) force -[04/26/2026 06:21:06] force = 70 * 0.8609996 = 60.26997 -[04/26/2026 06:21:06] launching puck at (3.24, -1.65) with (-195.36, 99.29) force -[04/26/2026 06:21:11] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:21:11] launching puck at (2.84, 4.12) with (-197.92, -286.79) force -[04/26/2026 06:21:18] force = 70 * 0.9454843 = 66.1839 -[04/26/2026 06:21:18] launching puck at (-2.91, -3.37) with (192.66, 222.91) force -[04/26/2026 06:21:24] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:21:24] launching puck at (-3.29, -3.77) with (229.12, 262.53) force -[04/26/2026 06:21:34] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:21:34] launching puck at (-1.08, -4.88) with (75.32, 340.21) force -[04/26/2026 06:21:41] force = 70 * 0.68572 = 48.0004 -[04/26/2026 06:21:41] launching puck at (2.45, 0.02) with (-117.82, -0.85) force -[04/26/2026 06:21:48] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:21:48] launching puck at (0.30, -4.99) with (-20.76, 347.83) force -[04/26/2026 06:22:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:22:03] launching puck at (-1.54, -4.76) with (107.25, 331.54) force -[04/26/2026 06:22:12] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:22:12] launching puck at (-1.50, -4.77) with (104.19, 332.51) force -[04/26/2026 06:22:20] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:22:20] launching puck at (0.07, -5.00) with (-4.72, 348.42) force -[04/26/2026 06:22:30] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:22:30] launching puck at (-1.56, -4.75) with (108.60, 331.10) force -[04/26/2026 06:22:41] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:22:41] launching puck at (-3.78, 3.27) with (263.61, -227.88) force -[04/26/2026 06:22:53] force = 70 * 0.9439985 = 66.0799 -[04/26/2026 06:22:53] launching puck at (-0.81, -4.36) with (53.21, 288.25) force -[04/26/2026 06:22:59] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:22:59] launching puck at (1.59, 4.74) with (-110.73, -330.39) force -[04/26/2026 06:23:10] force = 70 * 0.8787519 = 61.51263 -[04/26/2026 06:23:10] launching puck at (3.37, -1.74) with (-207.11, 107.33) force -[04/26/2026 06:23:16] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:23:16] launching puck at (0.59, 4.96) with (-41.29, -346.00) force -[04/26/2026 06:23:16] Dedicated match PATCH success: 200 {"ok":true,"id":145} -[04/26/2026 06:23:19] Dedicated match PATCH success: 200 {"ok":true,"id":145,"winner_id":14,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26794.txt b/games/soccar/soccar_Data/26794.txt deleted file mode 100644 index f2554be..0000000 --- a/games/soccar/soccar_Data/26794.txt +++ /dev/null @@ -1,21 +0,0 @@ -[04/26/2026 06:30:54] Configured dedicated match reporting for match id 163 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:30:54] Starting server at port 26794 -[04/26/2026 06:31:02] Game started On Server -[04/26/2026 06:31:03] Dedicated match PATCH success: 200 {"ok":true,"id":163} -[04/26/2026 06:31:03] Dedicated match PATCH success: 200 {"ok":true,"id":163} -[04/26/2026 06:31:09] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:31:09] launching puck at (-0.01, -5.00) with (0.97, 348.45) force -[04/26/2026 06:31:32] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:31:32] launching puck at (-0.14, -5.00) with (9.58, 348.32) force -[04/26/2026 06:31:56] force = 70 * 0.9614152 = 67.29906 -[04/26/2026 06:31:56] launching puck at (0.43, -4.60) with (-29.09, 309.79) force -[04/26/2026 06:32:17] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:32:17] launching puck at (0.09, -5.00) with (-6.09, 348.40) force -[04/26/2026 06:32:42] force = 70 * 0.9923007 = 69.46105 -[04/26/2026 06:32:42] launching puck at (-0.60, -4.93) with (41.90, 342.23) force -[04/26/2026 06:33:04] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:33:04] launching puck at (-0.28, -4.99) with (19.60, 347.90) force -[04/26/2026 06:33:25] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:33:25] launching puck at (0.32, -4.99) with (-22.58, 347.72) force -[04/26/2026 06:33:25] Dedicated match PATCH success: 200 {"ok":true,"id":163} -[04/26/2026 06:33:26] Dedicated match PATCH success: 200 {"ok":true,"id":163,"winner_id":25,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26807.txt b/games/soccar/soccar_Data/26807.txt deleted file mode 100644 index d1f679d..0000000 --- a/games/soccar/soccar_Data/26807.txt +++ /dev/null @@ -1,3 +0,0 @@ -[04/26/2026 06:42:43] Configured dedicated match reporting for match id 182 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:42:43] Starting server at port 26807 -[04/26/2026 06:42:50] Dedicated match PATCH success: 200 {"ok":true,"id":182} diff --git a/games/soccar/soccar_Data/26813.txt b/games/soccar/soccar_Data/26813.txt deleted file mode 100644 index ddd27e0..0000000 --- a/games/soccar/soccar_Data/26813.txt +++ /dev/null @@ -1,3 +0,0 @@ -[04/26/2026 06:57:21] Configured dedicated match reporting for match id 206 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:57:21] Starting server at port 26813 -[04/26/2026 06:57:57] Dedicated match PATCH success: 200 {"ok":true,"id":206} diff --git a/games/soccar/soccar_Data/26814.txt b/games/soccar/soccar_Data/26814.txt deleted file mode 100644 index 3f483b0..0000000 --- a/games/soccar/soccar_Data/26814.txt +++ /dev/null @@ -1,2 +0,0 @@ -[04/26/2026 06:54:22] Configured dedicated match reporting for match id 202 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:54:22] Starting server at port 26814 diff --git a/games/soccar/soccar_Data/26818.txt b/games/soccar/soccar_Data/26818.txt deleted file mode 100644 index cccba79..0000000 --- a/games/soccar/soccar_Data/26818.txt +++ /dev/null @@ -1,2 +0,0 @@ -[04/26/2026 06:37:04] Configured dedicated match reporting for match id 173 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:37:04] Starting server at port 26818 diff --git a/games/soccar/soccar_Data/26823.txt b/games/soccar/soccar_Data/26823.txt deleted file mode 100644 index c8acc4a..0000000 --- a/games/soccar/soccar_Data/26823.txt +++ /dev/null @@ -1,3 +0,0 @@ -[04/26/2026 06:52:10] Configured dedicated match reporting for match id 201 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:52:10] Starting server at port 26823 -[04/26/2026 06:52:32] Dedicated match PATCH success: 200 {"ok":true,"id":201} diff --git a/games/soccar/soccar_Data/26847.txt b/games/soccar/soccar_Data/26847.txt deleted file mode 100644 index eaca109..0000000 --- a/games/soccar/soccar_Data/26847.txt +++ /dev/null @@ -1,3 +0,0 @@ -[04/26/2026 06:47:41] Configured dedicated match reporting for match id 192 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:47:41] Starting server at port 26847 -[04/26/2026 06:47:50] Dedicated match PATCH success: 200 {"ok":true,"id":192} diff --git a/games/soccar/soccar_Data/26852.txt b/games/soccar/soccar_Data/26852.txt deleted file mode 100644 index 0eae18b..0000000 --- a/games/soccar/soccar_Data/26852.txt +++ /dev/null @@ -1,79 +0,0 @@ -[04/26/2026 06:15:30] Configured dedicated match reporting for match id 138 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:15:30] Starting server at port 26852 -[04/26/2026 06:15:34] Dedicated match PATCH success: 200 {"ok":true,"id":138} -[04/26/2026 06:15:36] Game started On Server -[04/26/2026 06:15:36] Dedicated match PATCH success: 200 {"ok":true,"id":138} -[04/26/2026 06:15:42] force = 70 * 0.8119494 = 56.83646 -[04/26/2026 06:15:42] launching puck at (1.53, 2.86) with (-86.73, -162.80) force -[04/26/2026 06:15:47] force = 70 * 0.8812971 = 61.69079 -[04/26/2026 06:15:47] launching puck at (-0.07, 3.81) with (4.06, -235.33) force -[04/26/2026 06:15:57] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:15:57] launching puck at (4.51, -2.17) with (-314.04, 150.98) force -[04/26/2026 06:16:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:16:03] launching puck at (-1.55, 4.75) with (108.01, -331.29) force -[04/26/2026 06:16:08] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:16:08] launching puck at (-3.56, 3.51) with (248.43, -244.34) force -[04/26/2026 06:16:14] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:16:14] launching puck at (-1.83, 4.65) with (127.87, -324.15) force -[04/26/2026 06:16:19] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:16:19] launching puck at (-1.64, -4.72) with (114.34, 329.16) force -[04/26/2026 06:16:28] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:16:28] launching puck at (-4.84, 1.27) with (337.11, -88.18) force -[04/26/2026 06:16:37] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:16:37] launching puck at (1.59, -4.74) with (-110.65, 330.42) force -[04/26/2026 06:16:50] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:16:50] launching puck at (-0.09, 5.00) with (6.04, -348.40) force -[04/26/2026 06:16:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:16:55] launching puck at (3.87, -3.16) with (-270.02, 220.25) force -[04/26/2026 06:17:02] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:02] launching puck at (1.23, 4.85) with (-85.71, -337.75) force -[04/26/2026 06:17:07] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:07] launching puck at (-3.61, -3.46) with (251.43, 241.25) force -[04/26/2026 06:17:14] force = 70 * 0.9101791 = 63.71254 -[04/26/2026 06:17:14] launching puck at (-1.68, -3.73) with (106.99, 237.54) force -[04/26/2026 06:17:20] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:20] launching puck at (0.19, 5.00) with (-13.54, -348.19) force -[04/26/2026 06:17:26] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:26] launching puck at (-0.69, 4.95) with (47.83, -345.16) force -[04/26/2026 06:17:31] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:31] launching puck at (3.13, -3.90) with (-218.44, 271.49) force -[04/26/2026 06:17:39] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:39] launching puck at (-0.30, 4.99) with (20.65, -347.84) force -[04/26/2026 06:17:47] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:47] launching puck at (-0.62, -4.96) with (42.93, 345.80) force -[04/26/2026 06:17:54] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:54] launching puck at (2.68, 4.22) with (-186.43, -294.39) force -[04/26/2026 06:18:00] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:18:00] launching puck at (0.95, 4.91) with (-66.49, -342.05) force -[04/26/2026 06:18:07] force = 70 * 0.6876647 = 48.13653 -[04/26/2026 06:18:07] launching puck at (-2.30, 0.89) with (110.60, -42.97) force -[04/26/2026 06:18:11] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:18:11] launching puck at (0.31, 4.99) with (-21.73, -347.77) force -[04/26/2026 06:18:20] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:18:20] launching puck at (0.67, -4.95) with (-46.65, 345.32) force -[04/26/2026 06:18:28] force = 70 * 0.9328572 = 65.3 -[04/26/2026 06:18:28] launching puck at (4.31, 0.19) with (-281.74, -12.59) force -[04/26/2026 06:18:32] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:18:32] launching puck at (4.53, -2.13) with (-315.41, 148.10) force -[04/26/2026 06:18:50] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:18:50] launching puck at (-4.04, 2.95) with (281.23, -205.75) force -[04/26/2026 06:18:59] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:18:59] launching puck at (1.95, -4.60) with (-136.09, 320.78) force -[04/26/2026 06:19:12] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:12] launching puck at (-0.01, 5.00) with (0.90, -348.45) force -[04/26/2026 06:19:26] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:26] launching puck at (-1.48, -4.78) with (103.08, 332.86) force -[04/26/2026 06:19:34] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:34] launching puck at (-3.04, -3.97) with (211.81, 276.69) force -[04/26/2026 06:19:40] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:40] launching puck at (0.23, -4.99) with (-16.20, 348.08) force -[04/26/2026 06:19:47] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:47] launching puck at (-0.90, 4.92) with (62.75, -342.76) force -[04/26/2026 06:19:51] force = 70 * 0.6978295 = 48.84806 -[04/26/2026 06:19:51] launching puck at (2.51, -0.27) with (-122.40, 13.15) force -[04/26/2026 06:19:57] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:57] launching puck at (-3.37, 3.69) with (234.95, -257.33) force -[04/26/2026 06:20:04] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:04] launching puck at (-2.90, -4.07) with (202.10, 283.86) force -[04/26/2026 06:20:06] Dedicated match PATCH success: 200 {"ok":true,"id":138} -[04/26/2026 06:20:08] Dedicated match PATCH success: 200 {"ok":true,"id":138,"winner_id":5,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26853.txt b/games/soccar/soccar_Data/26853.txt deleted file mode 100644 index 842fc7f..0000000 --- a/games/soccar/soccar_Data/26853.txt +++ /dev/null @@ -1,123 +0,0 @@ -[04/26/2026 06:47:41] Configured dedicated match reporting for match id 191 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:47:41] Starting server at port 26853 -[04/26/2026 06:47:45] Dedicated match PATCH success: 200 {"ok":true,"id":191} -[04/26/2026 06:47:46] Game started On Server -[04/26/2026 06:47:47] Dedicated match PATCH success: 200 {"ok":true,"id":191} -[04/26/2026 06:47:52] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:47:52] launching puck at (-0.06, -5.00) with (4.36, 348.43) force -[04/26/2026 06:47:59] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:47:59] launching puck at (-0.10, 5.00) with (6.65, -348.39) force -[04/26/2026 06:48:06] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:48:06] launching puck at (0.58, -4.97) with (-40.23, 346.12) force -[04/26/2026 06:48:14] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:48:14] launching puck at (4.34, 2.48) with (-302.41, -173.12) force -[04/26/2026 06:48:19] force = 70 * 0.9463723 = 66.24606 -[04/26/2026 06:48:19] launching puck at (-0.02, -4.46) with (1.22, 295.53) force -[04/26/2026 06:48:25] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:48:25] launching puck at (4.74, 1.59) with (-330.25, -111.15) force -[04/26/2026 06:48:32] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:48:32] launching puck at (-1.10, -4.88) with (76.40, 339.97) force -[04/26/2026 06:48:39] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:48:39] launching puck at (0.24, 4.99) with (-16.81, -348.05) force -[04/26/2026 06:48:46] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:48:46] launching puck at (3.52, -3.56) with (-244.97, 247.81) force -[04/26/2026 06:48:54] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:48:54] launching puck at (0.87, 4.92) with (-60.41, -343.18) force -[04/26/2026 06:49:01] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:49:01] launching puck at (3.60, -3.48) with (-250.54, 242.18) force -[04/26/2026 06:49:07] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:49:07] launching puck at (-1.65, 4.72) with (115.22, -328.85) force -[04/26/2026 06:49:15] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:49:15] launching puck at (0.48, -4.98) with (-33.13, 346.87) force -[04/26/2026 06:49:22] force = 70 * 0.88447 = 61.9129 -[04/26/2026 06:49:22] launching puck at (-3.83, -0.33) with (237.11, 20.67) force -[04/26/2026 06:49:29] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:49:29] launching puck at (-0.69, -4.95) with (47.81, 345.16) force -[04/26/2026 06:49:37] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:49:37] launching puck at (-1.52, 4.76) with (106.21, -331.87) force -[04/26/2026 06:49:43] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:49:43] launching puck at (-2.81, -4.13) with (196.13, 288.01) force -[04/26/2026 06:49:49] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:49:49] launching puck at (-4.08, 2.88) with (284.62, -201.03) force -[04/26/2026 06:49:57] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:49:57] launching puck at (-1.55, -4.75) with (108.36, 331.18) force -[04/26/2026 06:50:03] force = 70 * 0.9868621 = 69.08035 -[04/26/2026 06:50:03] launching puck at (-4.75, 1.21) with (328.22, -83.74) force -[04/26/2026 06:50:10] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:50:10] launching puck at (-0.98, -4.90) with (68.44, 341.67) force -[04/26/2026 06:50:19] force = 70 * 0.7979763 = 55.85834 -[04/26/2026 06:50:19] launching puck at (-2.92, -1.16) with (163.34, 64.53) force -[04/26/2026 06:50:29] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:50:29] launching puck at (-1.41, -4.80) with (98.54, 334.23) force -[04/26/2026 06:50:35] force = 70 * 0.8566154 = 59.96308 -[04/26/2026 06:50:35] launching puck at (3.60, -0.14) with (-215.63, 8.33) force -[04/26/2026 06:50:42] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:50:42] launching puck at (1.87, -4.64) with (-130.37, 323.14) force -[04/26/2026 06:50:48] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:50:48] launching puck at (-2.77, 4.16) with (193.26, -289.95) force -[04/26/2026 06:50:54] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:50:54] launching puck at (3.65, -3.42) with (-254.27, 238.26) force -[04/26/2026 06:50:59] force = 70 * 0.9348361 = 65.43853 -[04/26/2026 06:50:59] launching puck at (4.17, -1.21) with (-272.66, 79.31) force -[04/26/2026 06:51:07] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:07] launching puck at (4.97, 0.57) with (-346.19, -39.65) force -[04/26/2026 06:51:12] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:12] launching puck at (0.38, 4.99) with (-26.81, -347.42) force -[04/26/2026 06:51:22] force = 70 * 0.7166575 = 50.16602 -[04/26/2026 06:51:22] launching puck at (-2.61, 0.31) with (130.80, -15.56) force -[04/26/2026 06:51:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:27] launching puck at (-3.22, 3.83) with (224.23, -266.72) force -[04/26/2026 06:51:33] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:33] launching puck at (-3.05, -3.96) with (212.62, 276.06) force -[04/26/2026 06:51:41] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:41] launching puck at (0.24, 4.99) with (-16.59, -348.06) force -[04/26/2026 06:51:48] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:48] launching puck at (-0.41, -4.98) with (28.28, 347.30) force -[04/26/2026 06:51:56] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:56] launching puck at (-3.17, 3.87) with (220.65, -269.69) force -[04/26/2026 06:52:20] force = 70 * 0.6730925 = 47.11648 -[04/26/2026 06:52:20] launching puck at (2.36, -0.34) with (-111.40, 15.83) force -[04/26/2026 06:52:28] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:52:28] launching puck at (3.25, -3.80) with (-226.48, 264.81) force -[04/26/2026 06:52:33] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:52:33] launching puck at (3.28, 3.78) with (-228.27, -263.28) force -[04/26/2026 06:52:43] force = 70 * 0.7385442 = 51.69809 -[04/26/2026 06:52:43] launching puck at (2.23, 1.61) with (-115.38, -83.48) force -[04/26/2026 06:52:52] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:52:52] launching puck at (-0.46, 4.98) with (31.99, -346.98) force -[04/26/2026 06:53:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:03] launching puck at (0.32, -4.99) with (-22.21, 347.74) force -[04/26/2026 06:53:08] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:08] launching puck at (-3.16, 3.88) with (219.99, -270.23) force -[04/26/2026 06:53:14] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:14] launching puck at (3.24, -3.81) with (-226.04, 265.19) force -[04/26/2026 06:53:20] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:20] launching puck at (2.48, 4.34) with (-172.60, -302.70) force -[04/26/2026 06:53:31] force = 70 * 0.839274 = 58.74918 -[04/26/2026 06:53:31] launching puck at (1.76, -2.98) with (-103.23, 174.83) force -[04/26/2026 06:53:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:36] launching puck at (3.55, 3.52) with (-247.50, -245.29) force -[04/26/2026 06:53:48] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:48] launching puck at (2.70, -4.21) with (-187.86, 293.48) force -[04/26/2026 06:53:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:53:55] launching puck at (4.79, 1.42) with (-334.04, -99.19) force -[04/26/2026 06:54:01] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:54:01] launching puck at (2.51, -4.33) with (-174.65, 301.52) force -[04/26/2026 06:54:13] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:54:13] launching puck at (1.90, 4.63) with (-132.26, -322.38) force -[04/26/2026 06:54:24] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:54:24] launching puck at (1.94, -4.61) with (-135.48, 321.04) force -[04/26/2026 06:54:29] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:54:29] launching puck at (4.95, -0.71) with (-344.95, 49.29) force -[04/26/2026 06:54:35] force = 70 * 0.8763427 = 61.34399 -[04/26/2026 06:54:35] launching puck at (-2.16, -3.09) with (132.72, 189.43) force -[04/26/2026 06:54:41] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:54:41] launching puck at (4.94, 0.80) with (-343.94, -55.90) force -[04/26/2026 06:54:50] force = 70 * 0.8171122 = 57.19785 -[04/26/2026 06:54:50] launching puck at (-3.23, 0.61) with (184.61, -34.65) force -[04/26/2026 06:54:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:54:55] launching puck at (-1.15, -4.87) with (80.37, 339.06) force -[04/26/2026 06:55:16] force = 70 * 0.9110274 = 63.77192 -[04/26/2026 06:55:16] launching puck at (3.81, 1.51) with (-243.03, -95.98) force -[04/26/2026 06:55:17] Dedicated match PATCH success: 200 {"ok":true,"id":191} -[04/26/2026 06:55:18] Dedicated match PATCH success: 200 {"ok":true,"id":191,"winner_id":14,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26856.txt b/games/soccar/soccar_Data/26856.txt deleted file mode 100644 index 483bbcf..0000000 --- a/games/soccar/soccar_Data/26856.txt +++ /dev/null @@ -1,3 +0,0 @@ -[04/26/2026 06:44:18] Configured dedicated match reporting for match id 184 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:44:18] Starting server at port 26856 -[04/26/2026 06:44:26] Dedicated match PATCH success: 200 {"ok":true,"id":184} diff --git a/games/soccar/soccar_Data/26863.txt b/games/soccar/soccar_Data/26863.txt deleted file mode 100644 index 850879f..0000000 --- a/games/soccar/soccar_Data/26863.txt +++ /dev/null @@ -1,3 +0,0 @@ -[04/26/2026 06:46:35] Configured dedicated match reporting for match id 189 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:46:35] Starting server at port 26863 -[04/26/2026 06:46:41] Dedicated match PATCH success: 200 {"ok":true,"id":189} diff --git a/games/soccar/soccar_Data/26867.txt b/games/soccar/soccar_Data/26867.txt deleted file mode 100644 index 37110a7..0000000 --- a/games/soccar/soccar_Data/26867.txt +++ /dev/null @@ -1,125 +0,0 @@ -[04/25/2026 12:37:46] Configured dedicated match reporting for match id 107 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/25/2026 12:37:46] Starting server at port 26867 -[04/25/2026 12:37:50] Dedicated match PATCH success: 200 {"ok":true,"id":107} -[04/25/2026 12:37:50] Game started On Server -[04/25/2026 12:37:50] Dedicated match PATCH success: 200 {"ok":true,"id":107} -[04/25/2026 12:37:57] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:37:57] launching puck at (0.05, -5.00) with (-3.45, 348.44) force -[04/25/2026 12:38:11] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:38:11] launching puck at (3.12, 3.90) with (-217.73, -272.05) force -[04/25/2026 12:38:17] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:38:17] launching puck at (5.00, 0.11) with (-348.37, -7.56) force -[04/25/2026 12:38:22] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:38:22] launching puck at (-1.67, 4.71) with (116.58, -328.37) force -[04/25/2026 12:38:30] force = 70 * 0.9628239 = 67.39767 -[04/25/2026 12:38:30] launching puck at (3.04, -3.51) with (-204.60, 236.40) force -[04/25/2026 12:38:35] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:38:35] launching puck at (1.46, 4.78) with (-101.54, -333.33) force -[04/25/2026 12:38:48] force = 70 * 0.9693786 = 67.8565 -[04/25/2026 12:38:48] launching puck at (4.44, 1.57) with (-301.41, -106.41) force -[04/25/2026 12:38:52] force = 70 * 0.8558367 = 59.90857 -[04/25/2026 12:38:52] launching puck at (-3.31, 1.40) with (198.28, -83.64) force -[04/25/2026 12:38:59] force = 70 * 0.8504738 = 59.53316 -[04/25/2026 12:38:59] launching puck at (3.54, 0.22) with (-210.79, -12.89) force -[04/25/2026 12:39:06] force = 70 * 0.9899872 = 69.2991 -[04/25/2026 12:39:06] launching puck at (1.85, 4.58) with (-128.24, -317.27) force -[04/25/2026 12:39:16] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:39:16] launching puck at (-3.92, -3.11) with (273.08, 216.44) force -[04/25/2026 12:39:28] force = 70 * 0.9926298 = 69.48409 -[04/25/2026 12:39:28] launching puck at (2.57, -4.25) with (-178.37, 295.49) force -[04/25/2026 12:39:34] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:39:34] launching puck at (1.88, -4.63) with (-131.27, 322.78) force -[04/25/2026 12:39:42] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:39:42] launching puck at (-0.09, 5.00) with (6.14, -348.40) force -[04/25/2026 12:40:00] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:40:00] launching puck at (-0.87, 4.92) with (60.65, -343.13) force -[04/25/2026 12:40:23] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:40:23] launching puck at (-0.09, 5.00) with (6.11, -348.40) force -[04/25/2026 12:40:39] force = 70 * 0.1925561 = 13.47893 -[04/25/2026 12:40:39] launching puck at (0.31, 0.79) with (-4.21, -10.63) force -[04/25/2026 12:40:49] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:40:49] launching puck at (0.04, -5.00) with (-3.13, 348.44) force -[04/25/2026 12:41:03] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:41:03] launching puck at (1.88, 4.63) with (-131.32, -322.76) force -[04/25/2026 12:41:11] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:41:11] launching puck at (-2.41, -4.38) with (168.13, 305.21) force -[04/25/2026 12:41:18] force = 70 * 0.9784677 = 68.49274 -[04/25/2026 12:41:18] launching puck at (-4.78, 0.56) with (327.29, -38.06) force -[04/25/2026 12:41:24] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:41:24] launching puck at (-4.86, -1.19) with (338.53, 82.58) force -[04/25/2026 12:41:30] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:41:30] launching puck at (4.16, 2.77) with (-289.95, -193.26) force -[04/25/2026 12:41:35] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:41:35] launching puck at (4.56, -2.06) with (-317.46, 143.65) force -[04/25/2026 12:41:44] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:41:44] launching puck at (-0.94, -4.91) with (65.26, 342.29) force -[04/25/2026 12:41:51] force = 70 * 0.8250533 = 57.75373 -[04/25/2026 12:41:51] launching puck at (-2.41, -2.32) with (139.31, 133.77) force -[04/25/2026 12:41:55] force = 70 * 0.9190361 = 64.33253 -[04/25/2026 12:41:55] launching puck at (4.05, 1.04) with (-260.28, -66.88) force -[04/25/2026 12:41:59] force = 70 * 0.6841236 = 47.88865 -[04/25/2026 12:41:59] launching puck at (-2.34, -0.70) with (112.17, 33.75) force -[04/25/2026 12:42:04] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:42:04] launching puck at (-1.94, 4.61) with (135.17, -321.17) force -[04/25/2026 12:42:10] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:42:10] launching puck at (-4.93, -0.83) with (343.58, 58.07) force -[04/25/2026 12:42:15] force = 70 * 0.7414987 = 51.90491 -[04/25/2026 12:42:15] launching puck at (1.64, 2.24) with (-84.98, -116.14) force -[04/25/2026 12:42:21] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:42:21] launching puck at (-2.80, 4.14) with (195.00, -288.78) force -[04/25/2026 12:42:25] force = 70 * 0.9588489 = 67.11942 -[04/25/2026 12:42:25] launching puck at (2.34, -3.96) with (-156.98, 265.51) force -[04/25/2026 12:42:30] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:42:30] launching puck at (1.97, 4.59) with (-137.48, -320.19) force -[04/25/2026 12:42:34] force = 70 * 0.9019914 = 63.1394 -[04/25/2026 12:42:34] launching puck at (0.75, -3.94) with (-47.19, 248.70) force -[04/25/2026 12:42:39] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:42:39] launching puck at (-1.37, 4.81) with (95.46, -335.12) force -[04/25/2026 12:42:45] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:42:45] launching puck at (-2.49, -4.33) with (173.66, 302.10) force -[04/25/2026 12:42:49] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:42:49] launching puck at (0.37, -4.99) with (-26.01, 347.48) force -[04/25/2026 12:42:55] force = 70 * 0.8091078 = 56.63754 -[04/25/2026 12:42:55] launching puck at (2.42, 2.14) with (-136.80, -120.98) force -[04/25/2026 12:43:00] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:43:00] launching puck at (-0.87, -4.92) with (60.79, 343.11) force -[04/25/2026 12:43:06] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:43:06] launching puck at (-2.28, -4.45) with (158.74, 310.20) force -[04/25/2026 12:43:11] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:43:11] launching puck at (-0.23, 4.99) with (15.78, -348.10) force -[04/25/2026 12:43:18] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:43:18] launching puck at (-2.55, 4.30) with (177.67, -299.76) force -[04/25/2026 12:43:22] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:43:22] launching puck at (-2.56, -4.29) with (178.67, 299.16) force -[04/25/2026 12:43:27] force = 70 * 0.3308261 = 23.15783 -[04/25/2026 12:43:27] launching puck at (-1.07, 0.09) with (24.72, -2.19) force -[04/25/2026 12:43:30] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:43:30] launching puck at (-1.99, -4.59) with (138.51, 319.74) force -[04/25/2026 12:43:34] force = 70 * 0.508382 = 35.58674 -[04/25/2026 12:43:34] launching puck at (-1.24, -1.00) with (44.15, 35.48) force -[04/25/2026 12:43:37] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:43:37] launching puck at (-3.73, 3.32) with (260.27, -231.69) force -[04/25/2026 12:43:49] force = 70 * 0.8038111 = 56.26678 -[04/25/2026 12:43:49] launching puck at (-3.15, -0.46) with (177.36, 26.05) force -[04/25/2026 12:43:56] force = 70 * 0.9551744 = 66.86221 -[04/25/2026 12:43:56] launching puck at (4.13, -1.91) with (-276.44, 127.92) force -[04/25/2026 12:44:02] force = 70 * 0.6417778 = 44.92444 -[04/25/2026 12:44:02] launching puck at (-2.14, -0.64) with (96.02, 28.70) force -[04/25/2026 12:44:06] force = 70 * 0.8470767 = 59.29536 -[04/25/2026 12:44:06] launching puck at (2.52, 2.46) with (-149.19, -145.90) force -[04/25/2026 12:44:19] force = 70 * 0.6481056 = 45.36739 -[04/25/2026 12:44:19] launching puck at (1.68, 1.51) with (-76.39, -68.51) force -[04/25/2026 12:44:24] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:44:24] launching puck at (2.23, -4.48) with (-155.33, 311.92) force -[04/25/2026 12:44:29] force = 70 * 0.5833044 = 40.83131 -[04/25/2026 12:44:29] launching puck at (-1.69, -0.99) with (69.12, 40.30) force -[04/25/2026 12:44:34] force = 70 * 0.7005048 = 49.03534 -[04/25/2026 12:44:34] launching puck at (1.47, -2.06) with (-72.26, 101.13) force -[04/25/2026 12:44:42] force = 70 * 0.7310068 = 51.17048 -[04/25/2026 12:44:42] launching puck at (1.72, -2.10) with (-87.77, 107.33) force -[04/25/2026 12:44:50] force = 70 * 0.6397811 = 44.78468 -[04/25/2026 12:44:50] launching puck at (2.22, 0.10) with (-99.37, -4.62) force -[04/25/2026 12:45:05] force = 70 * 0.9955804 = 69.69063 -[04/25/2026 12:45:05] launching puck at (1.01, 4.90) with (-70.26, -341.30) force -[04/25/2026 12:45:06] Dedicated match PATCH success: 200 {"ok":true,"id":107} -[04/25/2026 12:45:07] Dedicated match PATCH success: 200 {"ok":true,"id":107,"winner_id":16,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26875.txt b/games/soccar/soccar_Data/26875.txt deleted file mode 100644 index 68e93b9..0000000 --- a/games/soccar/soccar_Data/26875.txt +++ /dev/null @@ -1,67 +0,0 @@ -[04/26/2026 06:18:50] Configured dedicated match reporting for match id 144 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:18:50] Starting server at port 26875 -[04/26/2026 06:18:55] Game started On Server -[04/26/2026 06:18:56] Dedicated match PATCH success: 200 {"ok":true,"id":144} -[04/26/2026 06:18:56] Dedicated match PATCH success: 200 {"ok":true,"id":144} -[04/26/2026 06:19:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:03] launching puck at (-2.61, -4.26) with (182.00, 297.15) force -[04/26/2026 06:19:08] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:08] launching puck at (-0.05, 5.00) with (3.61, -348.43) force -[04/26/2026 06:19:14] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:14] launching puck at (-1.89, -4.63) with (131.42, 322.72) force -[04/26/2026 06:19:21] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:21] launching puck at (-0.41, 4.98) with (28.74, -347.27) force -[04/26/2026 06:19:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:27] launching puck at (1.02, -4.89) with (-71.34, 341.07) force -[04/26/2026 06:19:39] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:39] launching puck at (0.69, 4.95) with (-47.74, -345.17) force -[04/26/2026 06:19:45] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:45] launching puck at (2.95, -4.04) with (-205.71, 281.26) force -[04/26/2026 06:19:50] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:50] launching puck at (1.62, 4.73) with (-112.64, -329.75) force -[04/26/2026 06:19:57] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:19:57] launching puck at (4.42, -2.33) with (-308.26, 162.47) force -[04/26/2026 06:20:02] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:02] launching puck at (1.64, 4.72) with (-114.29, -329.18) force -[04/26/2026 06:20:08] force = 70 * 0.9728696 = 68.10088 -[04/26/2026 06:20:08] launching puck at (3.89, -2.72) with (-264.97, 185.42) force -[04/26/2026 06:20:13] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:13] launching puck at (2.80, 4.14) with (-195.40, -288.51) force -[04/26/2026 06:20:24] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:24] launching puck at (-1.55, -4.76) with (107.67, 331.40) force -[04/26/2026 06:20:34] force = 70 * 0.9773967 = 68.41777 -[04/26/2026 06:20:34] launching puck at (-4.55, 1.52) with (311.40, -104.07) force -[04/26/2026 06:20:39] force = 70 * 0.9336118 = 65.35282 -[04/26/2026 06:20:39] launching puck at (0.47, -4.30) with (-30.91, 281.06) force -[04/26/2026 06:20:46] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:46] launching puck at (-2.55, 4.30) with (177.81, -299.67) force -[04/26/2026 06:20:52] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:20:52] launching puck at (-0.64, -4.96) with (44.56, 345.59) force -[04/26/2026 06:21:00] force = 70 * 0.6830418 = 47.81293 -[04/26/2026 06:21:00] launching puck at (2.32, 0.76) with (-110.84, -36.45) force -[04/26/2026 06:21:26] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:21:26] launching puck at (-2.23, -4.47) with (155.50, 311.83) force -[04/26/2026 06:21:32] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:21:32] launching puck at (-2.60, 4.27) with (180.91, -297.81) force -[04/26/2026 06:21:38] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:21:38] launching puck at (-3.45, -3.62) with (240.68, 251.98) force -[04/26/2026 06:21:43] force = 70 * 0.8976301 = 62.83411 -[04/26/2026 06:21:43] launching puck at (-0.95, 3.85) with (59.56, -242.06) force -[04/26/2026 06:21:49] force = 70 * 0.9462708 = 66.23896 -[04/26/2026 06:21:49] launching puck at (-4.45, -0.23) with (295.04, 15.13) force -[04/26/2026 06:21:53] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:21:53] launching puck at (-1.91, 4.62) with (132.84, -322.14) force -[04/26/2026 06:21:58] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:21:58] launching puck at (-3.56, -3.51) with (248.38, 244.39) force -[04/26/2026 06:22:03] force = 70 * 0.9089496 = 63.62647 -[04/26/2026 06:22:03] launching puck at (-2.64, 3.11) with (167.78, -197.83) force -[04/26/2026 06:22:11] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:22:11] launching puck at (-2.41, 4.38) with (167.90, -305.33) force -[04/26/2026 06:22:16] force = 70 * 0.6111734 = 42.78214 -[04/26/2026 06:22:16] launching puck at (-1.30, 1.63) with (55.73, -69.73) force -[04/26/2026 06:22:20] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:22:20] launching puck at (-3.50, -3.57) with (243.75, 249.01) force -[04/26/2026 06:22:24] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:22:24] launching puck at (2.22, 4.48) with (-154.90, -312.13) force -[04/26/2026 06:22:25] Dedicated match PATCH success: 200 {"ok":true,"id":144} -[04/26/2026 06:22:28] Dedicated match PATCH success: 200 {"ok":true,"id":144,"winner_id":23,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26882.txt b/games/soccar/soccar_Data/26882.txt deleted file mode 100644 index 7ddc5b1..0000000 --- a/games/soccar/soccar_Data/26882.txt +++ /dev/null @@ -1,59 +0,0 @@ -[04/26/2026 06:55:38] Configured dedicated match reporting for match id 205 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:55:38] Starting server at port 26882 -[04/26/2026 06:56:20] Game started On Server -[04/26/2026 06:56:21] Dedicated match PATCH success: 200 {"ok":true,"id":205} -[04/26/2026 06:56:21] Dedicated match PATCH success: 200 {"ok":true,"id":205} -[04/26/2026 06:56:24] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:56:24] launching puck at (0.20, -5.00) with (-14.14, 348.17) force -[04/26/2026 06:56:29] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:56:29] launching puck at (-2.44, 4.36) with (170.09, -304.12) force -[04/26/2026 06:56:39] force = 70 * 0.9873433 = 69.11403 -[04/26/2026 06:56:39] launching puck at (2.20, -4.39) with (-152.11, 303.26) force -[04/26/2026 06:56:44] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:56:44] launching puck at (4.75, 1.57) with (-330.73, -109.71) force -[04/26/2026 06:57:12] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:57:12] launching puck at (4.81, 1.36) with (-335.28, -94.89) force -[04/26/2026 06:57:35] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:57:35] launching puck at (0.62, -4.96) with (-43.38, 345.74) force -[04/26/2026 06:57:49] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:57:49] launching puck at (3.21, -3.84) with (-223.55, 267.29) force -[04/26/2026 06:57:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:57:55] launching puck at (2.83, 4.12) with (-197.10, -287.35) force -[04/26/2026 06:58:07] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:58:07] launching puck at (-0.45, 4.98) with (31.03, -347.07) force -[04/26/2026 06:58:28] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:58:28] launching puck at (0.24, 4.99) with (-16.89, -348.04) force -[04/26/2026 06:58:35] force = 70 * 0.9617565 = 67.32295 -[04/26/2026 06:58:35] launching puck at (3.29, -3.25) with (-221.40, 219.14) force -[04/26/2026 06:58:40] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:58:40] launching puck at (3.54, 3.53) with (-246.58, -246.21) force -[04/26/2026 06:58:50] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:58:50] launching puck at (-0.66, -4.96) with (45.74, 345.44) force -[04/26/2026 06:58:57] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:58:57] launching puck at (0.17, 5.00) with (-11.82, -348.25) force -[04/26/2026 06:59:05] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:59:05] launching puck at (1.81, -4.66) with (-126.46, 324.70) force -[04/26/2026 06:59:09] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:59:09] launching puck at (1.11, 4.88) with (-77.16, -339.80) force -[04/26/2026 06:59:16] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:59:16] launching puck at (-1.25, -4.84) with (87.27, 337.35) force -[04/26/2026 06:59:21] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:59:21] launching puck at (0.35, -4.99) with (-24.15, 347.62) force -[04/26/2026 06:59:26] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:59:26] launching puck at (2.18, -4.50) with (-151.79, 313.66) force -[04/26/2026 06:59:31] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:59:31] launching puck at (-0.10, 5.00) with (6.65, -348.39) force -[04/26/2026 06:59:40] force = 70 * 0.9545327 = 66.81729 -[04/26/2026 06:59:40] launching puck at (4.54, 0.22) with (-303.59, -14.49) force -[04/26/2026 07:00:04] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 07:00:04] launching puck at (2.21, -4.48) with (-154.08, 312.54) force -[04/26/2026 07:00:09] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 07:00:09] launching puck at (2.74, 4.18) with (-190.76, -291.60) force -[04/26/2026 07:00:52] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 07:00:52] launching puck at (2.19, -4.50) with (-152.34, 313.39) force -[04/26/2026 07:01:04] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 07:01:04] launching puck at (-1.91, 4.62) with (133.29, -321.95) force -[04/26/2026 07:01:11] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 07:01:11] launching puck at (0.20, -5.00) with (-14.17, 348.17) force -[04/26/2026 07:01:12] Dedicated match PATCH success: 200 {"ok":true,"id":205} -[04/26/2026 07:01:13] Dedicated match PATCH success: 200 {"ok":true,"id":205,"winner_id":25,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26887.txt b/games/soccar/soccar_Data/26887.txt deleted file mode 100644 index 83cd616..0000000 --- a/games/soccar/soccar_Data/26887.txt +++ /dev/null @@ -1,93 +0,0 @@ -[04/26/2026 06:12:52] Configured dedicated match reporting for match id 135 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:12:52] Starting server at port 26887 -[04/26/2026 06:13:10] Dedicated match PATCH success: 200 {"ok":true,"id":135} -[04/26/2026 06:13:10] Game started On Server -[04/26/2026 06:13:10] Dedicated match PATCH success: 200 {"ok":true,"id":135} -[04/26/2026 06:13:13] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:13:13] launching puck at (0.04, -5.00) with (-2.61, 348.44) force -[04/26/2026 06:13:21] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:13:21] launching puck at (3.01, 3.99) with (-209.74, -278.26) force -[04/26/2026 06:13:28] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:13:28] launching puck at (-0.64, -4.96) with (44.39, 345.61) force -[04/26/2026 06:13:34] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:13:34] launching puck at (-4.92, 0.90) with (342.75, -62.76) force -[04/26/2026 06:13:40] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:13:40] launching puck at (-1.58, -4.74) with (109.90, 330.67) force -[04/26/2026 06:13:48] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:13:48] launching puck at (-0.07, 5.00) with (5.22, -348.41) force -[04/26/2026 06:13:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:13:55] launching puck at (-1.25, -4.84) with (87.38, 337.32) force -[04/26/2026 06:14:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:03] launching puck at (-1.91, 4.62) with (132.91, -322.11) force -[04/26/2026 06:14:10] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:10] launching puck at (-0.07, -5.00) with (4.57, 348.42) force -[04/26/2026 06:14:16] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:16] launching puck at (-2.72, 4.20) with (189.34, -292.53) force -[04/26/2026 06:14:22] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:22] launching puck at (-0.11, -5.00) with (7.98, 348.36) force -[04/26/2026 06:14:29] force = 70 * 0.9712205 = 67.98544 -[04/26/2026 06:14:29] launching puck at (-4.04, -2.47) with (274.42, 167.73) force -[04/26/2026 06:14:34] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:34] launching puck at (-0.84, -4.93) with (58.50, 343.51) force -[04/26/2026 06:14:40] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:40] launching puck at (-1.79, 4.67) with (124.87, -325.31) force -[04/26/2026 06:14:45] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:45] launching puck at (1.52, -4.76) with (-106.13, 331.90) force -[04/26/2026 06:14:58] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:58] launching puck at (4.63, -1.88) with (-322.80, 131.22) force -[04/26/2026 06:15:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:15:03] launching puck at (1.07, -4.88) with (-74.60, 340.37) force -[04/26/2026 06:15:11] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:15:11] launching puck at (3.21, -3.83) with (-223.99, 266.92) force -[04/26/2026 06:15:16] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:15:16] launching puck at (2.99, -4.01) with (-208.17, 279.44) force -[04/26/2026 06:15:31] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:15:31] launching puck at (0.87, 4.92) with (-60.77, -343.11) force -[04/26/2026 06:15:35] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:15:35] launching puck at (4.35, 2.46) with (-303.25, -171.63) force -[04/26/2026 06:15:40] force = 70 * 0.5771592 = 40.40115 -[04/26/2026 06:15:40] launching puck at (1.46, -1.26) with (-58.96, 51.03) force -[04/26/2026 06:15:45] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:15:45] launching puck at (2.21, -4.48) with (-154.18, 312.49) force -[04/26/2026 06:15:51] force = 70 * 0.5588641 = 39.12049 -[04/26/2026 06:15:51] launching puck at (1.33, -1.27) with (-52.20, 49.50) force -[04/26/2026 06:15:57] force = 70 * 0.1801507 = 12.61055 -[04/26/2026 06:15:57] launching puck at (0.18, 0.81) with (-2.23, -10.25) force -[04/26/2026 06:16:05] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:16:05] launching puck at (0.22, -5.00) with (-15.54, 348.11) force -[04/26/2026 06:16:11] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:16:11] launching puck at (0.43, -4.98) with (-29.88, 347.17) force -[04/26/2026 06:16:18] force = 70 * 0.7693812 = 53.85668 -[04/26/2026 06:16:18] launching puck at (-2.43, 1.67) with (130.81, -90.06) force -[04/26/2026 06:16:23] force = 70 * 0.9273142 = 64.91199 -[04/26/2026 06:16:23] launching puck at (-3.25, -2.75) with (211.13, 178.73) force -[04/26/2026 06:16:30] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:16:30] launching puck at (-4.76, 1.53) with (331.65, -106.91) force -[04/26/2026 06:16:40] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:16:40] launching puck at (-2.05, -4.56) with (142.95, 317.78) force -[04/26/2026 06:16:46] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:16:46] launching puck at (-3.56, 3.51) with (248.34, -244.44) force -[04/26/2026 06:16:52] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:16:52] launching puck at (1.07, -4.88) with (-74.71, 340.35) force -[04/26/2026 06:16:56] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:16:56] launching puck at (4.61, -1.94) with (-321.17, 135.16) force -[04/26/2026 06:17:05] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:05] launching puck at (4.64, -1.86) with (-323.45, 129.60) force -[04/26/2026 06:17:09] force = 70 * 0.9177014 = 64.2391 -[04/26/2026 06:17:09] launching puck at (-0.93, -4.06) with (59.58, 260.76) force -[04/26/2026 06:17:17] force = 70 * 0.9470633 = 66.29443 -[04/26/2026 06:17:17] launching puck at (0.35, 4.45) with (-23.44, -295.31) force -[04/26/2026 06:17:22] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:22] launching puck at (-4.17, 2.76) with (290.60, -192.28) force -[04/26/2026 06:17:29] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:29] launching puck at (1.50, -4.77) with (-104.77, 332.33) force -[04/26/2026 06:17:34] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:34] launching puck at (-0.64, 4.96) with (44.28, -345.63) force -[04/26/2026 06:17:40] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:40] launching puck at (0.30, -4.99) with (-20.99, 347.82) force -[04/26/2026 06:17:47] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:47] launching puck at (-4.16, 2.78) with (289.69, -193.65) force -[04/26/2026 06:17:52] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:52] launching puck at (2.04, -4.57) with (-142.08, 318.17) force -[04/26/2026 06:17:53] Dedicated match PATCH success: 200 {"ok":true,"id":135} -[04/26/2026 06:17:55] Dedicated match PATCH success: 200 {"ok":true,"id":135,"winner_id":14,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26897.txt b/games/soccar/soccar_Data/26897.txt deleted file mode 100644 index 88c7f02..0000000 --- a/games/soccar/soccar_Data/26897.txt +++ /dev/null @@ -1,59 +0,0 @@ -[04/26/2026 06:00:59] Configured dedicated match reporting for match id 117 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:00:59] Starting server at port 26897 -[04/26/2026 06:01:35] Dedicated match PATCH success: 200 {"ok":true,"id":117} -[04/26/2026 06:01:41] Game started On Server -[04/26/2026 06:01:42] Dedicated match PATCH success: 200 {"ok":true,"id":117} -[04/26/2026 06:01:44] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:01:44] launching puck at (0.07, -5.00) with (-4.99, 348.42) force -[04/26/2026 06:01:51] force = 70 * 0.9900807 = 69.30565 -[04/26/2026 06:01:51] launching puck at (2.87, 4.02) with (-199.07, -278.47) force -[04/26/2026 06:01:59] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:01:59] launching puck at (-2.93, -4.05) with (204.18, 282.37) force -[04/26/2026 06:02:06] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:02:06] launching puck at (0.08, 5.00) with (-5.39, -348.41) force -[04/26/2026 06:02:13] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:02:13] launching puck at (-4.34, 2.48) with (302.43, -173.08) force -[04/26/2026 06:02:19] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:02:19] launching puck at (-5.00, -0.20) with (348.19, 13.63) force -[04/26/2026 06:02:24] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:02:24] launching puck at (-1.19, -4.86) with (82.70, 338.50) force -[04/26/2026 06:02:32] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:02:32] launching puck at (-0.31, 4.99) with (21.88, -347.77) force -[04/26/2026 06:02:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:02:36] launching puck at (4.94, -0.78) with (-344.23, 54.09) force -[04/26/2026 06:02:42] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:02:42] launching puck at (1.25, 4.84) with (-87.14, -337.38) force -[04/26/2026 06:02:48] force = 70 * 0.736706 = 51.56942 -[04/26/2026 06:02:48] launching puck at (-2.70, -0.47) with (139.35, 24.46) force -[04/26/2026 06:02:53] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:02:53] launching puck at (-0.36, 4.99) with (24.79, -347.57) force -[04/26/2026 06:02:59] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:02:59] launching puck at (0.10, -5.00) with (-7.22, 348.38) force -[04/26/2026 06:03:06] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:06] launching puck at (-3.46, 3.61) with (241.15, -251.52) force -[04/26/2026 06:03:11] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:11] launching puck at (-1.69, -4.70) with (118.00, 327.87) force -[04/26/2026 06:03:16] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:16] launching puck at (-2.72, 4.20) with (189.58, -292.37) force -[04/26/2026 06:03:21] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:21] launching puck at (-2.24, -4.47) with (156.26, 311.45) force -[04/26/2026 06:03:26] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:26] launching puck at (-2.16, 4.51) with (150.43, -314.31) force -[04/26/2026 06:03:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:36] launching puck at (-0.48, 4.98) with (33.16, -346.87) force -[04/26/2026 06:03:42] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:42] launching puck at (-0.26, 4.99) with (17.87, -347.99) force -[04/26/2026 06:03:54] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:54] launching puck at (0.01, -5.00) with (-1.03, 348.45) force -[04/26/2026 06:04:02] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:04:02] launching puck at (1.38, 4.80) with (-96.45, -334.84) force -[04/26/2026 06:04:09] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:04:09] launching puck at (4.99, 0.33) with (-347.71, -22.76) force -[04/26/2026 06:04:15] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:04:15] launching puck at (0.15, 5.00) with (-10.32, -348.30) force -[04/26/2026 06:04:21] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:04:21] launching puck at (-0.62, -4.96) with (43.43, 345.74) force -[04/26/2026 06:04:22] Dedicated match PATCH success: 200 {"ok":true,"id":117} -[04/26/2026 06:04:25] Dedicated match PATCH success: 200 {"ok":true,"id":117,"winner_id":9,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} -[04/26/2026 18:36:45] Configured dedicated match reporting for match id 211 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 18:36:45] Starting server at port 26897 diff --git a/games/soccar/soccar_Data/26921.txt b/games/soccar/soccar_Data/26921.txt deleted file mode 100644 index 3cff89b..0000000 --- a/games/soccar/soccar_Data/26921.txt +++ /dev/null @@ -1,2 +0,0 @@ -[04/26/2026 06:32:29] Configured dedicated match reporting for match id 165 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:32:29] Starting server at port 26921 diff --git a/games/soccar/soccar_Data/26932.txt b/games/soccar/soccar_Data/26932.txt deleted file mode 100644 index 0c586d8..0000000 --- a/games/soccar/soccar_Data/26932.txt +++ /dev/null @@ -1,93 +0,0 @@ -[04/26/2026 06:12:52] Configured dedicated match reporting for match id 134 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:12:52] Starting server at port 26932 -[04/26/2026 06:13:32] Game started On Server -[04/26/2026 06:13:33] Dedicated match PATCH success: 200 {"ok":true,"id":134} -[04/26/2026 06:13:33] Dedicated match PATCH success: 200 {"ok":true,"id":134} -[04/26/2026 06:13:40] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:13:40] launching puck at (0.07, -5.00) with (-4.72, 348.42) force -[04/26/2026 06:13:47] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:13:47] launching puck at (0.75, 4.94) with (-52.60, -344.46) force -[04/26/2026 06:13:52] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:13:52] launching puck at (0.24, -4.99) with (-16.85, 348.05) force -[04/26/2026 06:13:58] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:13:58] launching puck at (-3.83, 3.21) with (267.24, -223.61) force -[04/26/2026 06:14:02] force = 70 * 0.8047338 = 56.33136 -[04/26/2026 06:14:02] launching puck at (2.85, 1.44) with (-160.54, -81.05) force -[04/26/2026 06:14:07] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:07] launching puck at (-2.75, 4.18) with (191.45, -291.15) force -[04/26/2026 06:14:13] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:13] launching puck at (-4.69, -1.74) with (326.64, 121.35) force -[04/26/2026 06:14:19] force = 70 * 0.9434265 = 66.03986 -[04/26/2026 06:14:19] launching puck at (-4.02, 1.86) with (265.45, -122.96) force -[04/26/2026 06:14:26] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:26] launching puck at (0.28, -4.99) with (-19.65, 347.90) force -[04/26/2026 06:14:34] force = 70 * 0.7100628 = 49.7044 -[04/26/2026 06:14:34] launching puck at (2.49, 0.69) with (-123.96, -34.39) force -[04/26/2026 06:14:42] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:42] launching puck at (4.98, -0.49) with (-346.78, 34.11) force -[04/26/2026 06:14:49] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:49] launching puck at (3.12, 3.91) with (-217.39, -272.32) force -[04/26/2026 06:14:53] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:53] launching puck at (2.50, -4.33) with (-174.18, 301.80) force -[04/26/2026 06:15:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:15:03] launching puck at (0.10, 5.00) with (-6.77, -348.39) force -[04/26/2026 06:15:08] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:15:08] launching puck at (-4.82, -1.33) with (335.95, 92.50) force -[04/26/2026 06:15:15] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:15:15] launching puck at (-1.66, 4.72) with (115.89, -328.62) force -[04/26/2026 06:15:25] force = 70 * 0.4841641 = 33.89149 -[04/26/2026 06:15:25] launching puck at (-1.03, 1.08) with (34.93, -36.47) force -[04/26/2026 06:15:31] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:15:31] launching puck at (2.57, 4.29) with (-179.40, -298.72) force -[04/26/2026 06:15:40] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:15:40] launching puck at (2.75, 4.18) with (-191.51, -291.11) force -[04/26/2026 06:15:49] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:15:49] launching puck at (-0.13, 5.00) with (9.25, -348.33) force -[04/26/2026 06:15:57] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:15:57] launching puck at (-0.11, 5.00) with (7.73, -348.37) force -[04/26/2026 06:16:06] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:16:06] launching puck at (-1.05, 4.89) with (73.03, -340.72) force -[04/26/2026 06:16:13] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:16:13] launching puck at (-1.44, 4.79) with (100.21, -333.73) force -[04/26/2026 06:16:19] force = 70 * 0.8456787 = 59.19751 -[04/26/2026 06:16:19] launching puck at (3.48, -0.43) with (-206.09, 25.41) force -[04/26/2026 06:16:24] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:16:24] launching puck at (1.47, -4.78) with (-102.61, 333.00) force -[04/26/2026 06:16:30] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:16:30] launching puck at (-2.92, -4.06) with (203.57, 282.80) force -[04/26/2026 06:16:37] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:16:37] launching puck at (-1.46, -4.78) with (102.06, 333.17) force -[04/26/2026 06:16:48] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:16:48] launching puck at (-0.28, 4.99) with (19.57, -347.90) force -[04/26/2026 06:16:53] force = 70 * 0.9685724 = 67.80006 -[04/26/2026 06:16:53] launching puck at (4.65, -0.70) with (-315.21, 47.57) force -[04/26/2026 06:17:00] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:00] launching puck at (3.24, 3.81) with (-225.50, -265.65) force -[04/26/2026 06:17:05] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:05] launching puck at (-2.88, -4.09) with (200.53, 284.97) force -[04/26/2026 06:17:11] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:11] launching puck at (-1.77, -4.68) with (123.19, 325.95) force -[04/26/2026 06:17:17] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:17] launching puck at (1.21, -4.85) with (-84.53, 338.04) force -[04/26/2026 06:17:24] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:24] launching puck at (-2.52, 4.32) with (175.47, -301.05) force -[04/26/2026 06:17:29] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:29] launching puck at (-1.74, -4.69) with (121.27, 326.67) force -[04/26/2026 06:17:34] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:34] launching puck at (-4.94, -0.75) with (344.52, 52.21) force -[04/26/2026 06:17:41] force = 70 * 0.9000326 = 63.00228 -[04/26/2026 06:17:41] launching puck at (3.36, -2.15) with (-211.68, 135.62) force -[04/26/2026 06:17:47] force = 70 * 0.9927076 = 69.48953 -[04/26/2026 06:17:47] launching puck at (-2.72, 4.16) with (189.18, -288.79) force -[04/26/2026 06:17:53] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:53] launching puck at (-1.02, -4.89) with (71.24, 341.09) force -[04/26/2026 06:18:00] force = 70 * 0.8706889 = 60.94822 -[04/26/2026 06:18:00] launching puck at (-3.46, 1.37) with (210.69, -83.78) force -[04/26/2026 06:18:05] force = 70 * 0.8657516 = 60.60262 -[04/26/2026 06:18:05] launching puck at (-2.72, -2.47) with (165.02, 149.74) force -[04/26/2026 06:18:12] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:18:12] launching puck at (0.04, -5.00) with (-2.84, 348.44) force -[04/26/2026 06:18:21] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:18:21] launching puck at (0.64, -4.96) with (-44.92, 345.55) force -[04/26/2026 06:18:21] Dedicated match PATCH success: 200 {"ok":true,"id":134} -[04/26/2026 06:18:23] Dedicated match PATCH success: 200 {"ok":true,"id":134,"winner_id":9,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26942.txt b/games/soccar/soccar_Data/26942.txt deleted file mode 100644 index e1a6bd5..0000000 --- a/games/soccar/soccar_Data/26942.txt +++ /dev/null @@ -1,33 +0,0 @@ -[04/26/2026 06:14:19] Configured dedicated match reporting for match id 136 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:14:19] Starting server at port 26942 -[04/26/2026 06:14:41] Dedicated match PATCH success: 200 {"ok":true,"id":136} -[04/26/2026 06:14:44] Game started On Server -[04/26/2026 06:14:45] Dedicated match PATCH success: 200 {"ok":true,"id":136} -[04/26/2026 06:14:49] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:49] launching puck at (0.00, -5.00) with (-0.24, 348.45) force -[04/26/2026 06:14:56] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:14:56] launching puck at (0.75, 4.94) with (-52.50, -344.48) force -[04/26/2026 06:15:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:15:03] launching puck at (2.62, -4.26) with (-182.44, 296.88) force -[04/26/2026 06:15:10] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:15:10] launching puck at (2.64, 4.25) with (-183.67, -296.11) force -[04/26/2026 06:15:15] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:15:15] launching puck at (3.60, -3.47) with (-251.11, 241.58) force -[04/26/2026 06:15:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:15:36] launching puck at (3.26, -3.80) with (-226.87, 264.48) force -[04/26/2026 06:16:27] force = 70 * 0.7975805 = 55.83064 -[04/26/2026 06:16:27] launching puck at (-2.02, -2.41) with (112.77, 134.32) force -[04/26/2026 06:16:48] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:16:48] launching puck at (0.00, -5.00) with (-0.33, 348.45) force -[04/26/2026 06:17:11] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:17:11] launching puck at (-2.39, -4.39) with (166.31, 306.21) force -[04/26/2026 06:17:31] force = 70 * 0.5766913 = 40.36839 -[04/26/2026 06:17:31] launching puck at (1.66, -0.98) with (-67.11, 39.40) force -[04/26/2026 06:17:51] force = 70 * 0.7373277 = 51.61294 -[04/26/2026 06:17:51] launching puck at (-1.43, -2.34) with (73.94, 120.99) force -[04/26/2026 06:18:12] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:18:12] launching puck at (-0.01, -5.00) with (1.00, 348.45) force -[04/26/2026 06:18:37] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:18:37] launching puck at (2.78, -4.16) with (-193.61, 289.71) force -[04/26/2026 06:18:39] Dedicated match PATCH success: 200 {"ok":true,"id":136} -[04/26/2026 06:18:40] Dedicated match PATCH success: 200 {"ok":true,"id":136,"winner_id":23,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26943.txt b/games/soccar/soccar_Data/26943.txt deleted file mode 100644 index 25dd23f..0000000 --- a/games/soccar/soccar_Data/26943.txt +++ /dev/null @@ -1,67 +0,0 @@ -[04/26/2026 06:55:28] Configured dedicated match reporting for match id 204 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:55:28] Starting server at port 26943 -[04/26/2026 06:55:34] Dedicated match PATCH success: 200 {"ok":true,"id":204} -[04/26/2026 06:55:35] Game started On Server -[04/26/2026 06:55:36] Dedicated match PATCH success: 200 {"ok":true,"id":204} -[04/26/2026 06:55:41] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:55:42] launching puck at (-0.02, -5.00) with (1.24, 348.45) force -[04/26/2026 06:55:48] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:55:48] launching puck at (-1.25, 4.84) with (87.18, -337.37) force -[04/26/2026 06:55:54] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:55:54] launching puck at (4.34, -2.49) with (-302.24, 173.41) force -[04/26/2026 06:56:05] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:56:05] launching puck at (-0.04, 5.00) with (2.91, -348.44) force -[04/26/2026 06:56:11] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:56:11] launching puck at (-2.27, -4.46) with (158.16, 310.49) force -[04/26/2026 06:56:17] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:56:17] launching puck at (-1.25, 4.84) with (87.46, -337.30) force -[04/26/2026 06:56:22] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:56:22] launching puck at (-4.82, 1.33) with (335.93, -92.56) force -[04/26/2026 06:56:29] force = 70 * 0.9597278 = 67.18095 -[04/26/2026 06:56:29] launching puck at (-4.40, -1.37) with (295.32, 92.19) force -[04/26/2026 06:56:34] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:56:34] launching puck at (-0.07, 5.00) with (4.72, -348.42) force -[04/26/2026 06:56:39] force = 70 * 0.8573822 = 60.01675 -[04/26/2026 06:56:39] launching puck at (-2.99, 2.01) with (179.64, -120.61) force -[04/26/2026 06:56:48] force = 70 * 0.8392431 = 58.74701 -[04/26/2026 06:56:48] launching puck at (2.01, 2.81) with (-117.97, -165.22) force -[04/26/2026 06:56:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:56:55] launching puck at (-0.40, 4.98) with (27.98, -347.33) force -[04/26/2026 06:57:00] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:57:00] launching puck at (4.10, 2.86) with (-285.90, -199.20) force -[04/26/2026 06:57:07] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:57:07] launching puck at (-0.26, 4.99) with (17.77, -348.00) force -[04/26/2026 06:57:11] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:57:11] launching puck at (-3.41, -3.66) with (237.62, 254.87) force -[04/26/2026 06:57:17] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:57:17] launching puck at (-1.31, 4.83) with (91.28, -336.28) force -[04/26/2026 06:57:21] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:57:21] launching puck at (-1.43, -4.79) with (99.86, 333.84) force -[04/26/2026 06:57:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:57:27] launching puck at (-1.49, 4.77) with (104.15, -332.52) force -[04/26/2026 06:57:32] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:57:32] launching puck at (-1.62, -4.73) with (113.08, 329.59) force -[04/26/2026 06:57:37] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:57:37] launching puck at (4.00, 3.00) with (-278.64, -209.23) force -[04/26/2026 06:57:43] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:57:43] launching puck at (-0.38, -4.99) with (26.17, 347.47) force -[04/26/2026 06:57:50] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:57:50] launching puck at (0.60, 4.96) with (-41.53, -345.97) force -[04/26/2026 06:57:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:57:55] launching puck at (4.91, 0.94) with (-342.19, -65.77) force -[04/26/2026 06:58:00] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:58:00] launching puck at (2.66, 4.24) with (-185.19, -295.17) force -[04/26/2026 06:58:04] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:58:04] launching puck at (2.82, -4.13) with (-196.86, 287.52) force -[04/26/2026 06:58:10] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:58:10] launching puck at (-1.11, 4.88) with (77.40, -339.75) force -[04/26/2026 06:58:15] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:58:15] launching puck at (-4.24, -2.65) with (295.48, 184.69) force -[04/26/2026 06:58:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:58:36] launching puck at (-3.91, -3.11) with (272.67, 216.96) force -[04/26/2026 06:58:56] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:58:56] launching puck at (-3.36, -3.71) with (233.95, 258.24) force -[04/26/2026 06:59:17] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:59:17] launching puck at (-4.86, -1.16) with (338.98, 80.68) force -[04/26/2026 06:59:18] Dedicated match PATCH success: 200 {"ok":true,"id":204} -[04/26/2026 06:59:19] Dedicated match PATCH success: 200 {"ok":true,"id":204,"winner_id":30,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26948.txt b/games/soccar/soccar_Data/26948.txt deleted file mode 100644 index 87603ed..0000000 --- a/games/soccar/soccar_Data/26948.txt +++ /dev/null @@ -1,3 +0,0 @@ -[04/26/2026 06:40:49] Configured dedicated match reporting for match id 179 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:40:49] Starting server at port 26948 -[04/26/2026 06:40:56] Dedicated match PATCH success: 200 {"ok":true,"id":179} diff --git a/games/soccar/soccar_Data/26955.txt b/games/soccar/soccar_Data/26955.txt deleted file mode 100644 index 33a9c9d..0000000 --- a/games/soccar/soccar_Data/26955.txt +++ /dev/null @@ -1,61 +0,0 @@ -[04/26/2026 06:48:48] Configured dedicated match reporting for match id 193 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:48:48] Starting server at port 26955 -[04/26/2026 06:48:52] Dedicated match PATCH success: 200 {"ok":true,"id":193} -[04/26/2026 06:48:54] Game started On Server -[04/26/2026 06:48:54] Dedicated match PATCH success: 200 {"ok":true,"id":193} -[04/26/2026 06:48:58] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:48:58] launching puck at (0.27, -4.99) with (-18.67, 347.95) force -[04/26/2026 06:49:05] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:49:05] launching puck at (-3.63, 3.43) with (253.25, -239.35) force -[04/26/2026 06:49:28] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:49:28] launching puck at (2.03, 4.57) with (-141.27, -318.53) force -[04/26/2026 06:49:49] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:49:49] launching puck at (-1.16, 4.86) with (80.83, -338.95) force -[04/26/2026 06:50:12] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:50:12] launching puck at (0.72, 4.95) with (-50.48, -344.78) force -[04/26/2026 06:50:34] force = 70 * 0.8280193 = 57.96135 -[04/26/2026 06:50:34] launching puck at (-3.22, 0.97) with (186.84, -56.38) force -[04/26/2026 06:50:57] force = 70 * 0.4577735 = 32.04414 -[04/26/2026 06:50:57] launching puck at (1.12, -0.83) with (-35.89, 26.59) force -[04/26/2026 06:51:19] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:51:19] launching puck at (3.37, 3.69) with (-234.83, -257.44) force -[04/26/2026 06:51:43] force = 70 * 0.734623 = 51.42361 -[04/26/2026 06:51:43] launching puck at (0.45, -2.69) with (-23.27, 138.50) force -[04/26/2026 06:52:15] force = 70 * 0.7032015 = 49.22411 -[04/26/2026 06:52:15] launching puck at (-2.51, 0.47) with (123.33, -23.29) force -[04/26/2026 06:52:36] force = 70 * 0.6032751 = 42.22926 -[04/26/2026 06:52:36] launching puck at (-2.00, -0.46) with (84.41, 19.32) force -[04/26/2026 06:52:57] force = 70 * 0.9937415 = 69.5619 -[04/26/2026 06:52:57] launching puck at (-2.30, 4.42) with (159.70, -307.39) force -[04/26/2026 06:53:17] force = 70 * 0.4777228 = 33.4406 -[04/26/2026 06:53:17] launching puck at (-1.29, -0.69) with (43.27, 22.98) force -[04/26/2026 06:53:36] force = 70 * 0.8169324 = 57.18527 -[04/26/2026 06:53:36] launching puck at (-2.50, -2.13) with (142.80, 121.84) force -[04/26/2026 06:53:55] force = 70 * 0.6682642 = 46.77849 -[04/26/2026 06:53:55] launching puck at (1.02, -2.13) with (-47.51, 99.82) force -[04/26/2026 06:54:16] force = 70 * 0.7342708 = 51.39896 -[04/26/2026 06:54:16] launching puck at (1.00, 2.54) with (-51.46, -130.48) force -[04/26/2026 06:54:36] force = 70 * 0.6810942 = 47.67659 -[04/26/2026 06:54:36] launching puck at (-0.17, -2.42) with (8.16, 115.57) force -[04/26/2026 06:54:55] force = 70 * 0.3861685 = 27.03179 -[04/26/2026 06:54:55] launching puck at (-0.80, -0.88) with (21.70, 23.78) force -[04/26/2026 06:55:14] force = 70 * 0.3027797 = 21.19458 -[04/26/2026 06:55:14] launching puck at (-0.71, -0.73) with (15.06, 15.48) force -[04/26/2026 06:55:37] force = 70 * 0.8298384 = 58.08869 -[04/26/2026 06:55:37] launching puck at (-0.36, 3.36) with (21.18, -195.27) force -[04/26/2026 06:55:57] force = 70 * 0.6339779 = 44.37845 -[04/26/2026 06:55:57] launching puck at (1.42, 1.67) with (-62.88, -74.30) force -[04/26/2026 06:56:18] force = 70 * 0.66872 = 46.8104 -[04/26/2026 06:56:18] launching puck at (-2.24, 0.75) with (104.98, -35.23) force -[04/26/2026 06:56:40] force = 70 * 0.6252505 = 43.76754 -[04/26/2026 06:56:40] launching puck at (-1.72, 1.30) with (75.16, -56.76) force -[04/26/2026 06:57:00] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:57:00] launching puck at (-0.10, 5.00) with (6.70, -348.39) force -[04/26/2026 06:57:20] force = 70 * 0.7597091 = 53.17964 -[04/26/2026 06:57:20] launching puck at (2.05, 2.03) with (-109.20, -107.87) force -[04/26/2026 06:57:43] force = 70 * 0.7248549 = 50.73985 -[04/26/2026 06:57:43] launching puck at (-2.56, -0.75) with (130.12, 38.29) force -[04/26/2026 06:58:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:58:03] launching puck at (-0.16, 5.00) with (11.04, -348.28) force -[04/26/2026 06:58:04] Dedicated match PATCH success: 200 {"ok":true,"id":193} -[04/26/2026 06:58:05] Dedicated match PATCH success: 200 {"ok":true,"id":193,"winner_id":31,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26978.txt b/games/soccar/soccar_Data/26978.txt deleted file mode 100644 index fffd5d1..0000000 --- a/games/soccar/soccar_Data/26978.txt +++ /dev/null @@ -1,113 +0,0 @@ -[04/26/2026 06:02:26] Configured dedicated match reporting for match id 119 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:02:26] Starting server at port 26978 -[04/26/2026 06:02:33] Game started On Server -[04/26/2026 06:02:34] Dedicated match PATCH success: 200 {"ok":true,"id":119} -[04/26/2026 06:02:34] Dedicated match PATCH success: 200 {"ok":true,"id":119} -[04/26/2026 06:02:35] force = 70 * 0.7942393 = 55.59675 -[04/26/2026 06:02:35] launching puck at (0.72, 3.03) with (-39.85, -168.69) force -[04/26/2026 06:02:41] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:02:41] launching puck at (0.32, 4.99) with (-22.54, -347.72) force -[04/26/2026 06:02:46] force = 70 * 0.8140407 = 56.98285 -[04/26/2026 06:02:46] launching puck at (-0.99, -3.11) with (56.48, 177.03) force -[04/26/2026 06:02:53] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:02:53] launching puck at (0.57, 4.97) with (-39.78, -346.17) force -[04/26/2026 06:03:00] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:00] launching puck at (3.98, -3.02) with (-277.55, 210.68) force -[04/26/2026 06:03:10] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:10] launching puck at (2.02, 4.58) with (-140.45, -318.89) force -[04/26/2026 06:03:17] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:17] launching puck at (4.48, -2.21) with (-312.56, 154.03) force -[04/26/2026 06:03:22] force = 70 * 0.552337 = 38.66359 -[04/26/2026 06:03:22] launching puck at (-1.73, 0.51) with (67.01, -19.59) force -[04/26/2026 06:03:29] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:29] launching puck at (3.57, -3.50) with (-248.79, 243.97) force -[04/26/2026 06:03:39] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:39] launching puck at (4.12, 2.83) with (-287.40, -197.03) force -[04/26/2026 06:03:45] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:45] launching puck at (-0.70, -4.95) with (48.89, 345.01) force -[04/26/2026 06:03:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:03:55] launching puck at (1.90, 4.62) with (-132.63, -322.22) force -[04/26/2026 06:04:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:04:03] launching puck at (2.70, -4.21) with (-188.37, 293.15) force -[04/26/2026 06:04:11] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:04:11] launching puck at (-0.43, 4.98) with (29.77, -347.18) force -[04/26/2026 06:04:18] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:04:18] launching puck at (-4.78, -1.47) with (333.02, 102.57) force -[04/26/2026 06:04:25] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:04:25] launching puck at (0.37, 4.99) with (-25.81, -347.50) force -[04/26/2026 06:04:37] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:04:37] launching puck at (-0.59, -4.96) with (41.44, 345.98) force -[04/26/2026 06:04:50] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:04:50] launching puck at (-4.75, 1.55) with (331.22, -108.24) force -[04/26/2026 06:05:01] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:05:01] launching puck at (-3.63, -3.44) with (252.73, 239.89) force -[04/26/2026 06:05:07] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:05:07] launching puck at (0.64, 4.96) with (-44.77, -345.56) force -[04/26/2026 06:05:12] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:05:12] launching puck at (-2.84, -4.11) with (198.24, 286.57) force -[04/26/2026 06:05:18] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:05:18] launching puck at (-4.80, 1.41) with (334.38, -98.03) force -[04/26/2026 06:05:25] force = 70 * 0.9367918 = 65.57542 -[04/26/2026 06:05:25] launching puck at (-3.86, -2.03) with (253.12, 132.93) force -[04/26/2026 06:05:33] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:05:33] launching puck at (1.69, 4.71) with (-117.67, -327.98) force -[04/26/2026 06:05:40] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:05:40] launching puck at (3.02, -3.98) with (-210.78, 277.47) force -[04/26/2026 06:05:47] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:05:47] launching puck at (2.45, 4.36) with (-170.63, -303.82) force -[04/26/2026 06:05:53] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:05:53] launching puck at (4.13, -2.82) with (-287.65, 196.67) force -[04/26/2026 06:06:05] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:06:05] launching puck at (1.83, 4.65) with (-127.80, -324.17) force -[04/26/2026 06:06:12] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:06:12] launching puck at (1.77, 4.67) with (-123.59, -325.80) force -[04/26/2026 06:06:22] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:06:22] launching puck at (1.96, 4.60) with (-136.91, -320.43) force -[04/26/2026 06:06:28] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:06:28] launching puck at (0.30, -4.99) with (-20.62, 347.84) force -[04/26/2026 06:06:39] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:06:39] launching puck at (-0.52, 4.97) with (36.44, -346.54) force -[04/26/2026 06:06:46] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:06:46] launching puck at (-1.72, -4.70) with (119.70, 327.25) force -[04/26/2026 06:06:50] force = 70 * 0.9313314 = 65.1932 -[04/26/2026 06:06:50] launching puck at (0.63, -4.26) with (-41.38, 277.45) force -[04/26/2026 06:06:58] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:06:58] launching puck at (3.74, -3.32) with (-260.58, 231.33) force -[04/26/2026 06:07:05] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:05] launching puck at (-2.94, 4.05) with (204.64, -282.03) force -[04/26/2026 06:07:18] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:18] launching puck at (-0.36, -4.99) with (25.38, 347.53) force -[04/26/2026 06:07:23] force = 70 * 0.9576864 = 67.03805 -[04/26/2026 06:07:23] launching puck at (-3.11, 3.37) with (208.50, -225.65) force -[04/26/2026 06:07:30] force = 70 * 0.8655042 = 60.58529 -[04/26/2026 06:07:30] launching puck at (-0.65, 3.62) with (39.29, -219.15) force -[04/26/2026 06:07:40] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:40] launching puck at (-2.02, -4.57) with (140.90, 318.70) force -[04/26/2026 06:07:49] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:49] launching puck at (-0.83, 4.93) with (57.70, -343.64) force -[04/26/2026 06:07:57] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:07:57] launching puck at (-2.63, -4.25) with (183.60, 296.16) force -[04/26/2026 06:08:09] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:09] launching puck at (-1.72, 4.70) with (119.73, -327.24) force -[04/26/2026 06:08:15] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:15] launching puck at (-1.92, -4.62) with (133.51, 321.86) force -[04/26/2026 06:08:23] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:23] launching puck at (-1.78, 4.67) with (124.19, -325.57) force -[04/26/2026 06:08:29] force = 70 * 0.9945003 = 69.61502 -[04/26/2026 06:08:29] launching puck at (-3.03, -3.96) with (210.94, 275.83) force -[04/26/2026 06:08:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:36] launching puck at (1.19, 4.86) with (-82.87, -338.46) force -[04/26/2026 06:08:41] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:41] launching puck at (2.95, -4.04) with (-205.77, 281.21) force -[04/26/2026 06:08:50] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:50] launching puck at (-2.16, 4.51) with (150.76, -314.15) force -[04/26/2026 06:08:57] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:08:57] launching puck at (0.61, -4.96) with (-42.68, 345.83) force -[04/26/2026 06:09:11] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:09:11] launching puck at (0.00, 5.00) with (0.29, -348.45) force -[04/26/2026 06:09:35] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:09:35] launching puck at (4.58, 2.01) with (-319.03, -140.14) force -[04/26/2026 06:09:44] force = 70 * 0.9536197 = 66.75338 -[04/26/2026 06:09:44] launching puck at (4.45, 0.89) with (-297.07, -59.57) force -[04/26/2026 06:09:45] Dedicated match PATCH success: 200 {"ok":true,"id":119} -[04/26/2026 06:09:47] Dedicated match PATCH success: 200 {"ok":true,"id":119,"winner_id":10,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26979.txt b/games/soccar/soccar_Data/26979.txt deleted file mode 100644 index 35dd8cc..0000000 --- a/games/soccar/soccar_Data/26979.txt +++ /dev/null @@ -1,133 +0,0 @@ -[04/26/2026 06:34:27] Configured dedicated match reporting for match id 169 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:34:27] Starting server at port 26979 -[04/26/2026 06:34:32] Dedicated match PATCH success: 200 {"ok":true,"id":169} -[04/26/2026 06:34:33] Game started On Server -[04/26/2026 06:34:33] Dedicated match PATCH success: 200 {"ok":true,"id":169} -[04/26/2026 06:34:36] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:34:36] launching puck at (-0.04, -5.00) with (2.52, 348.44) force -[04/26/2026 06:34:47] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:34:47] launching puck at (-1.60, 4.74) with (111.62, -330.09) force -[04/26/2026 06:34:57] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:34:57] launching puck at (-1.85, -4.65) with (128.60, 323.86) force -[04/26/2026 06:35:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:03] launching puck at (-3.27, 3.78) with (227.90, -263.60) force -[04/26/2026 06:35:10] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:10] launching puck at (-3.66, -3.40) with (255.21, 237.25) force -[04/26/2026 06:35:14] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:14] launching puck at (-2.80, 4.14) with (195.13, -288.69) force -[04/26/2026 06:35:19] force = 70 * 0.6957529 = 48.7027 -[04/26/2026 06:35:19] launching puck at (0.57, 2.44) with (-27.71, -119.00) force -[04/26/2026 06:35:24] force = 70 * 0.9478104 = 66.34673 -[04/26/2026 06:35:24] launching puck at (2.08, 3.96) with (-138.10, -262.95) force -[04/26/2026 06:35:31] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:31] launching puck at (4.83, -1.28) with (-336.77, 89.47) force -[04/26/2026 06:35:36] force = 70 * 0.9386023 = 65.70216 -[04/26/2026 06:35:36] launching puck at (0.44, 4.36) with (-28.60, -286.28) force -[04/26/2026 06:35:44] force = 70 * 0.8998703 = 62.99092 -[04/26/2026 06:35:44] launching puck at (2.39, 3.20) with (-150.31, -201.33) force -[04/26/2026 06:35:52] force = 70 * 0.9102598 = 63.71819 -[04/26/2026 06:35:52] launching puck at (-4.00, -0.87) with (254.67, 55.23) force -[04/26/2026 06:36:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:03] launching puck at (2.48, 4.34) with (-172.51, -302.75) force -[04/26/2026 06:36:09] force = 70 * 0.9326063 = 65.28244 -[04/26/2026 06:36:09] launching puck at (1.30, 4.12) with (-84.61, -268.77) force -[04/26/2026 06:36:14] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:14] launching puck at (2.48, -4.34) with (-173.07, 302.43) force -[04/26/2026 06:36:24] force = 70 * 0.8817072 = 61.71951 -[04/26/2026 06:36:24] launching puck at (1.02, -3.68) with (-62.91, 227.15) force -[04/26/2026 06:36:35] force = 70 * 0.9940906 = 69.58634 -[04/26/2026 06:36:35] launching puck at (0.07, 4.98) with (-5.20, -346.75) force -[04/26/2026 06:36:41] force = 70 * 0.3532964 = 24.73075 -[04/26/2026 06:36:41] launching puck at (1.02, 0.46) with (-25.21, -11.31) force -[04/26/2026 06:36:49] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:49] launching puck at (0.92, -4.91) with (-64.01, 342.52) force -[04/26/2026 06:36:54] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:54] launching puck at (0.14, -5.00) with (-9.77, 348.32) force -[04/26/2026 06:36:58] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:58] launching puck at (3.12, -3.91) with (-217.59, 272.16) force -[04/26/2026 06:37:04] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:04] launching puck at (-0.11, 5.00) with (7.72, -348.37) force -[04/26/2026 06:37:12] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:12] launching puck at (0.33, -4.99) with (-23.14, 347.68) force -[04/26/2026 06:37:17] force = 70 * 0.6923811 = 48.46667 -[04/26/2026 06:37:17] launching puck at (-0.56, 2.43) with (27.22, -117.59) force -[04/26/2026 06:37:22] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:22] launching puck at (-1.82, -4.66) with (127.10, 324.45) force -[04/26/2026 06:37:28] force = 70 * 0.9116404 = 63.81483 -[04/26/2026 06:37:28] launching puck at (-4.08, 0.48) with (260.10, -30.32) force -[04/26/2026 06:37:36] force = 70 * 0.799291 = 55.95037 -[04/26/2026 06:37:36] launching puck at (2.45, -1.98) with (-137.35, 110.76) force -[04/26/2026 06:37:41] force = 70 * 0.9905889 = 69.34122 -[04/26/2026 06:37:41] launching puck at (4.45, 2.15) with (-308.66, -149.32) force -[04/26/2026 06:37:48] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:48] launching puck at (0.95, -4.91) with (-65.95, 342.15) force -[04/26/2026 06:37:52] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:52] launching puck at (-3.00, 4.00) with (208.86, -278.92) force -[04/26/2026 06:37:58] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:58] launching puck at (2.41, -4.38) with (-167.76, 305.41) force -[04/26/2026 06:38:04] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:38:04] launching puck at (2.68, 4.22) with (-186.76, -294.18) force -[04/26/2026 06:38:10] force = 70 * 0.969498 = 67.86486 -[04/26/2026 06:38:10] launching puck at (4.71, 0.15) with (-319.60, -10.41) force -[04/26/2026 06:38:16] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:38:16] launching puck at (-4.82, 1.33) with (335.84, -92.89) force -[04/26/2026 06:38:26] force = 70 * 0.9272826 = 64.90978 -[04/26/2026 06:38:26] launching puck at (0.30, -4.25) with (-19.40, 275.91) force -[04/26/2026 06:38:33] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:38:33] launching puck at (0.48, 4.98) with (-33.61, -346.83) force -[04/26/2026 06:38:43] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:38:43] launching puck at (0.18, 5.00) with (-12.31, -348.24) force -[04/26/2026 06:38:49] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:38:49] launching puck at (-1.99, 4.59) with (138.82, -319.61) force -[04/26/2026 06:38:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:38:55] launching puck at (4.91, -0.96) with (-341.95, 67.00) force -[04/26/2026 06:38:59] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:38:59] launching puck at (2.09, 4.54) with (-145.88, -316.45) force -[04/26/2026 06:39:05] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:05] launching puck at (2.37, -4.40) with (-165.11, 306.85) force -[04/26/2026 06:39:11] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:11] launching puck at (-1.52, -4.76) with (106.15, 331.89) force -[04/26/2026 06:39:16] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:16] launching puck at (0.07, -5.00) with (-4.54, 348.42) force -[04/26/2026 06:39:24] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:24] launching puck at (3.22, -3.83) with (-224.37, 266.60) force -[04/26/2026 06:39:34] force = 70 * 0.813809 = 56.96663 -[04/26/2026 06:39:34] launching puck at (2.24, 2.36) with (-127.79, -134.69) force -[04/26/2026 06:39:40] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:40] launching puck at (-2.92, 4.06) with (203.72, -282.70) force -[04/26/2026 06:39:44] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:44] launching puck at (-1.08, -4.88) with (75.52, 340.17) force -[04/26/2026 06:39:49] force = 70 * 0.6626475 = 46.38532 -[04/26/2026 06:39:49] launching puck at (-0.98, -2.12) with (45.24, 98.38) force -[04/26/2026 06:40:04] force = 70 * 0.9558203 = 66.90742 -[04/26/2026 06:40:04] launching puck at (3.82, -2.49) with (-255.89, 166.47) force -[04/26/2026 06:40:04] force = 70 * 0.8681983 = 60.77388 -[04/26/2026 06:40:04] launching puck at (3.25, -1.76) with (-197.77, 106.79) force -[04/26/2026 06:40:08] force = 70 * 0.8066013 = 56.46209 -[04/26/2026 06:40:08] launching puck at (-1.71, -2.71) with (96.32, 153.28) force -[04/26/2026 06:40:29] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:40:29] launching puck at (-2.59, 4.28) with (180.29, -298.19) force -[04/26/2026 06:40:50] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:40:50] launching puck at (-4.28, 2.58) with (298.29, -180.13) force -[04/26/2026 06:41:10] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:41:10] launching puck at (-3.53, 3.54) with (245.95, -246.84) force -[04/26/2026 06:41:31] force = 70 * 0.9193343 = 64.3534 -[04/26/2026 06:41:31] launching puck at (-2.59, 3.28) with (166.49, -211.31) force -[04/26/2026 06:41:51] force = 70 * 0.6754441 = 47.28109 -[04/26/2026 06:41:51] launching puck at (0.84, -2.25) with (-39.83, 106.27) force -[04/26/2026 06:42:11] force = 70 * 0.8056793 = 56.39755 -[04/26/2026 06:42:11] launching puck at (-2.55, 1.93) with (143.89, -108.88) force -[04/26/2026 06:42:31] force = 70 * 0.5267674 = 36.87371 -[04/26/2026 06:42:31] launching puck at (1.19, 1.18) with (-43.98, -43.51) force -[04/26/2026 06:42:53] force = 70 * 0.5960467 = 41.72327 -[04/26/2026 06:42:53] launching puck at (-1.10, 1.69) with (45.86, -70.62) force -[04/26/2026 06:43:12] force = 70 * 0.5657413 = 39.60189 -[04/26/2026 06:43:12] launching puck at (1.20, 1.44) with (-47.36, -57.12) force -[04/26/2026 06:43:34] force = 70 * 0.7037292 = 49.26104 -[04/26/2026 06:43:34] launching puck at (-2.25, 1.20) with (110.91, -59.26) force -[04/26/2026 06:43:54] force = 70 * 0.6419028 = 44.9332 -[04/26/2026 06:43:54] launching puck at (-1.97, 1.05) with (88.48, -47.17) force -[04/26/2026 06:44:14] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:44:14] launching puck at (0.05, 5.00) with (-3.74, -348.43) force -[04/26/2026 06:44:15] Dedicated match PATCH success: 200 {"ok":true,"id":169} -[04/26/2026 06:44:16] Dedicated match PATCH success: 200 {"ok":true,"id":169,"winner_id":31,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/26990.txt b/games/soccar/soccar_Data/26990.txt deleted file mode 100644 index 3028764..0000000 --- a/games/soccar/soccar_Data/26990.txt +++ /dev/null @@ -1,7 +0,0 @@ -[04/24/2026 20:09:50] Configured dedicated match reporting for match id 98 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/24/2026 20:09:50] Starting server at port 26990 -[04/24/2026 20:09:55] Dedicated match PATCH success: 200 {"ok":true,"id":98} -[04/24/2026 20:09:56] Game started On Server -[04/24/2026 20:09:56] Dedicated match PATCH success: 200 {"ok":true,"id":98} -[04/24/2026 20:10:21] force = 70 * 0.9955804 = 69.69063 -[04/24/2026 20:10:21] launching puck at (-1.69, 4.70) with (118.03, -327.85) force diff --git a/games/soccar/soccar_Data/26997.txt b/games/soccar/soccar_Data/26997.txt deleted file mode 100644 index 5bc96c2..0000000 --- a/games/soccar/soccar_Data/26997.txt +++ /dev/null @@ -1,125 +0,0 @@ -[04/26/2026 06:15:38] Configured dedicated match reporting for match id 139 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:15:38] Starting server at port 26997 -[04/26/2026 06:16:08] Dedicated match PATCH success: 200 {"ok":true,"id":139} -[04/26/2026 06:18:53] Dedicated match PATCH success: 200 {"ok":true,"id":139} -[04/26/2026 06:34:28] Configured dedicated match reporting for match id 170 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base http://vps.playpoolstudios.com:2612 -[04/26/2026 06:34:28] Starting server at port 26997 -[04/26/2026 06:34:57] Dedicated match PATCH success: 200 {"ok":true,"id":170} -[04/26/2026 06:34:57] Game started On Server -[04/26/2026 06:34:57] Dedicated match PATCH success: 200 {"ok":true,"id":170} -[04/26/2026 06:35:00] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:00] launching puck at (0.06, -5.00) with (-4.33, 348.43) force -[04/26/2026 06:35:07] force = 70 * 0.956641 = 66.96487 -[04/26/2026 06:35:07] launching puck at (4.09, 2.05) with (-273.74, -137.06) force -[04/26/2026 06:35:13] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:13] launching puck at (-2.03, -4.57) with (141.31, 318.52) force -[04/26/2026 06:35:20] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:20] launching puck at (-0.01, 5.00) with (0.65, -348.45) force -[04/26/2026 06:35:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:27] launching puck at (3.99, 3.01) with (-278.11, -209.93) force -[04/26/2026 06:35:32] force = 70 * 0.9045607 = 63.31925 -[04/26/2026 06:35:32] launching puck at (3.84, 1.24) with (-243.15, -78.26) force -[04/26/2026 06:35:38] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:38] launching puck at (0.15, -5.00) with (-10.45, 348.30) force -[04/26/2026 06:35:44] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:44] launching puck at (-4.41, 2.35) with (307.64, -163.64) force -[04/26/2026 06:35:50] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:50] launching puck at (3.20, -3.85) with (-222.69, 268.01) force -[04/26/2026 06:35:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:35:55] launching puck at (2.27, 4.45) with (-158.41, -310.37) force -[04/26/2026 06:36:00] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:00] launching puck at (2.04, -4.57) with (-142.14, 318.14) force -[04/26/2026 06:36:05] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:05] launching puck at (-1.55, 4.75) with (107.90, -331.32) force -[04/26/2026 06:36:11] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:11] launching puck at (-1.33, 4.82) with (92.76, -335.88) force -[04/26/2026 06:36:16] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:16] launching puck at (-4.94, -0.75) with (344.53, 52.16) force -[04/26/2026 06:36:21] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:21] launching puck at (-3.92, -3.11) with (272.85, 216.73) force -[04/26/2026 06:36:27] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:27] launching puck at (-4.43, 2.31) with (308.95, -161.15) force -[04/26/2026 06:36:32] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:32] launching puck at (-0.15, 5.00) with (10.66, -348.29) force -[04/26/2026 06:36:39] force = 70 * 0.4672933 = 32.71053 -[04/26/2026 06:36:39] launching puck at (-1.43, -0.07) with (46.62, 2.18) force -[04/26/2026 06:36:43] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:43] launching puck at (-1.08, -4.88) with (75.02, 340.28) force -[04/26/2026 06:36:47] force = 70 * 0.5628963 = 39.40274 -[04/26/2026 06:36:47] launching puck at (-1.84, 0.29) with (72.38, -11.30) force -[04/26/2026 06:36:58] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:36:58] launching puck at (0.24, 4.99) with (-16.85, -348.05) force -[04/26/2026 06:37:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:03] launching puck at (4.88, 1.09) with (-340.01, -76.25) force -[04/26/2026 06:37:09] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:09] launching puck at (4.11, -2.84) with (-286.64, 198.13) force -[04/26/2026 06:37:14] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:14] launching puck at (2.29, 4.45) with (-159.41, -309.85) force -[04/26/2026 06:37:19] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:19] launching puck at (4.45, -2.27) with (-310.43, 158.27) force -[04/26/2026 06:37:25] force = 70 * 0.9202142 = 64.41499 -[04/26/2026 06:37:25] launching puck at (4.18, 0.33) with (-269.03, -20.98) force -[04/26/2026 06:37:31] force = 70 * 0.9845078 = 68.91554 -[04/26/2026 06:37:31] launching puck at (1.46, 4.65) with (-100.52, -320.75) force -[04/26/2026 06:37:36] force = 70 * 0.9027574 = 63.19302 -[04/26/2026 06:37:36] launching puck at (-3.69, -1.60) with (232.95, 100.79) force -[04/26/2026 06:37:42] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:42] launching puck at (-1.89, 4.63) with (131.90, -322.52) force -[04/26/2026 06:37:46] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:46] launching puck at (-4.95, 0.72) with (344.85, -49.99) force -[04/26/2026 06:37:52] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:37:52] launching puck at (-4.98, 0.44) with (347.12, -30.47) force -[04/26/2026 06:37:57] force = 70 * 0.8418104 = 58.92673 -[04/26/2026 06:37:57] launching puck at (-2.08, -2.79) with (122.42, 164.25) force -[04/26/2026 06:38:06] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:38:06] launching puck at (-0.73, -4.95) with (51.06, 344.69) force -[04/26/2026 06:38:12] force = 70 * 0.8833781 = 61.83647 -[04/26/2026 06:38:12] launching puck at (3.42, 1.73) with (-211.64, -106.88) force -[04/26/2026 06:38:15] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:38:15] launching puck at (0.01, -5.00) with (-0.45, 348.45) force -[04/26/2026 06:38:21] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:38:21] launching puck at (0.48, 4.98) with (-33.14, -346.87) force -[04/26/2026 06:38:39] force = 70 * 0.7221065 = 50.54745 -[04/26/2026 06:38:39] launching puck at (-2.41, 1.11) with (121.98, -56.21) force -[04/26/2026 06:38:43] force = 70 * 0.8346314 = 58.4242 -[04/26/2026 06:38:43] launching puck at (2.28, 2.55) with (-133.32, -148.75) force -[04/26/2026 06:38:49] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:38:49] launching puck at (0.11, -5.00) with (-7.41, 348.37) force -[04/26/2026 06:38:55] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:38:55] launching puck at (4.11, 2.84) with (-286.68, -198.08) force -[04/26/2026 06:39:03] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:03] launching puck at (4.62, 1.91) with (-322.04, -133.09) force -[04/26/2026 06:39:08] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:08] launching puck at (4.92, 0.89) with (-342.91, -61.93) force -[04/26/2026 06:39:14] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:14] launching puck at (-1.42, -4.79) with (98.94, 334.11) force -[04/26/2026 06:39:19] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:19] launching puck at (-1.89, 4.63) with (131.61, -322.64) force -[04/26/2026 06:39:24] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:24] launching puck at (2.02, 4.58) with (-140.57, -318.84) force -[04/26/2026 06:39:30] force = 70 * 0.6330913 = 44.31639 -[04/26/2026 06:39:30] launching puck at (0.02, -2.19) with (-0.70, 97.01) force -[04/26/2026 06:39:35] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:35] launching puck at (2.14, 4.52) with (-149.21, -314.89) force -[04/26/2026 06:39:39] force = 70 * 0.6683635 = 46.78544 -[04/26/2026 06:39:39] launching puck at (-2.25, -0.73) with (105.22, 34.04) force -[04/26/2026 06:39:43] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:43] launching puck at (2.98, 4.01) with (-207.84, -279.68) force -[04/26/2026 06:39:48] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:48] launching puck at (-1.26, 4.84) with (88.13, -337.12) force -[04/26/2026 06:39:53] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:53] launching puck at (-4.94, -0.76) with (344.38, 53.12) force -[04/26/2026 06:39:58] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:39:58] launching puck at (-0.60, 4.96) with (41.50, -345.97) force -[04/26/2026 06:40:05] force = 70 * 0.4993358 = 34.95351 -[04/26/2026 06:40:05] launching puck at (-1.49, -0.44) with (52.02, 15.41) force -[04/26/2026 06:40:09] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:40:09] launching puck at (-3.99, 3.01) with (278.36, -209.61) force -[04/26/2026 06:40:16] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:40:16] launching puck at (-4.64, -1.85) with (323.63, 129.15) force -[04/26/2026 06:40:24] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:40:24] launching puck at (-0.03, 5.00) with (2.27, -348.45) force -[04/26/2026 06:40:30] force = 70 * 0.9955804 = 69.69063 -[04/26/2026 06:40:30] launching puck at (4.24, 2.66) with (-295.19, -185.16) force -[04/26/2026 06:40:31] Dedicated match PATCH success: 200 {"ok":true,"id":170} -[04/26/2026 06:40:32] Dedicated match PATCH success: 200 {"ok":true,"id":170,"winner_id":30,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} diff --git a/games/soccar/soccar_Data/Log.txt b/games/soccar/soccar_Data/Log.txt index 99f0d01..5dcba6f 100644 --- a/games/soccar/soccar_Data/Log.txt +++ b/games/soccar/soccar_Data/Log.txt @@ -1,3 +1,3 @@ -Logger initiated at 05/02/2026 16:47:43 +Logger initiated at 05/02/2026 22:12:20 -[05/02/2026 16:47:43] Configured dedicated match reporting for match id 236 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base https://kickkingsapi.playpoolstudios.com +[05/02/2026 22:12:20] Configured dedicated match reporting for match id 244 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base https://kickkingsapi.playpoolstudios.com diff --git a/games/soccar/soccar_Data/Logs/237.txt b/games/soccar/soccar_Data/Logs/237.txt new file mode 100644 index 0000000..5e1504d --- /dev/null +++ b/games/soccar/soccar_Data/Logs/237.txt @@ -0,0 +1,94 @@ +[05/02/2026 21:19:25] Starting server at port 26886 +[05/02/2026 21:19:25] Failed to fetch red and blue names, isServer? +[05/02/2026 21:19:25] Starting auto close watchdog +[05/02/2026 21:19:25] Active player connections: 0 +[05/02/2026 21:19:30] Server will be closed due to no players in, 60 +[05/02/2026 21:19:32] Active player connections: 1 +[05/02/2026 21:19:33] Client 15 set team to Red +[05/02/2026 21:19:34] Dedicated match PATCH success: 200 {"ok":true,"id":237} +[05/02/2026 21:19:36] Active player connections: 2 +[05/02/2026 21:19:36] Game started On Server +[05/02/2026 21:19:36] Client 16 set team to Blue +[05/02/2026 21:19:37] Dedicated match PATCH success: 200 {"ok":true,"id":237} +[05/02/2026 21:19:42] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:19:42] launching puck at (0.10, -5.00) with (-6.91, 348.38) force +[05/02/2026 21:19:50] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:19:50] launching puck at (-3.63, 3.44) with (252.66, -239.96) force +[05/02/2026 21:19:56] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:19:56] launching puck at (-2.77, -4.16) with (193.16, 290.02) force +[05/02/2026 21:20:02] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:20:02] launching puck at (1.92, 4.62) with (-133.85, -321.72) force +[05/02/2026 21:20:08] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:20:08] launching puck at (-1.04, -4.89) with (72.44, 340.84) force +[05/02/2026 21:20:14] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:20:14] launching puck at (0.04, 5.00) with (-2.86, -348.44) force +[05/02/2026 21:20:19] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:20:19] launching puck at (1.10, -4.88) with (-76.46, 339.96) force +[05/02/2026 21:20:24] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:20:24] launching puck at (4.57, 2.02) with (-318.69, -140.92) force +[05/02/2026 21:20:31] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:20:31] launching puck at (4.70, -1.71) with (-327.37, 119.38) force +[05/02/2026 21:20:36] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:20:36] launching puck at (4.12, 2.83) with (-287.03, -197.57) force +[05/02/2026 21:20:40] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:20:40] launching puck at (-0.26, -4.99) with (18.28, 347.97) force +[05/02/2026 21:20:46] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:20:46] launching puck at (-2.07, 4.55) with (144.05, -317.29) force +[05/02/2026 21:20:52] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:20:52] launching puck at (-0.68, -4.95) with (47.72, 345.17) force +[05/02/2026 21:20:52] Red goal scored, red score is now 1 +[05/02/2026 21:20:59] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:20:59] launching puck at (-0.14, 5.00) with (9.46, -348.32) force +[05/02/2026 21:21:10] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:21:10] launching puck at (-1.49, -4.77) with (103.95, 332.59) force +[05/02/2026 21:21:15] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:21:15] launching puck at (4.24, 2.65) with (-295.60, -184.49) force +[05/02/2026 21:21:19] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:21:19] launching puck at (-0.20, -5.00) with (13.61, 348.19) force +[05/02/2026 21:21:25] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:21:25] launching puck at (-3.14, 3.89) with (218.88, -271.13) force +[05/02/2026 21:21:26] Blue goal scored, blue score is now 1 +[05/02/2026 21:21:34] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:21:34] launching puck at (4.98, -0.46) with (-346.99, 31.95) force +[05/02/2026 21:21:40] force = 70 * 0.8175561 = 57.22893 +[05/02/2026 21:21:40] launching puck at (-0.02, 3.29) with (0.96, -188.12) force +[05/02/2026 21:21:40] Blue goal scored, blue score is now 2 +[05/02/2026 21:21:45] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:21:45] launching puck at (0.30, -4.99) with (-21.06, 347.82) force +[05/02/2026 21:21:51] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:21:51] launching puck at (2.41, 4.38) with (-168.20, -305.17) force +[05/02/2026 21:21:56] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:21:56] launching puck at (2.79, -4.15) with (-194.26, 289.28) force +[05/02/2026 21:22:02] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:22:02] launching puck at (-1.33, 4.82) with (92.93, -335.83) force +[05/02/2026 21:22:08] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:22:08] launching puck at (3.25, -3.80) with (-226.18, 265.07) force +[05/02/2026 21:22:14] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:22:14] launching puck at (4.22, 2.68) with (-294.19, -186.73) force +[05/02/2026 21:22:19] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:22:19] launching puck at (0.04, -5.00) with (-3.12, 348.44) force +[05/02/2026 21:22:25] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:22:25] launching puck at (-2.00, 4.58) with (139.17, -319.45) force +[05/02/2026 21:22:33] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:22:33] launching puck at (-4.96, 0.63) with (345.72, -43.59) force +[05/02/2026 21:22:37] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:22:37] launching puck at (4.54, 2.10) with (-316.35, -146.09) force +[05/02/2026 21:22:42] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:22:42] launching puck at (-0.73, 4.95) with (50.98, -344.70) force +[05/02/2026 21:22:46] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:22:46] launching puck at (4.90, 1.01) with (-341.20, -70.72) force +[05/02/2026 21:22:51] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:22:51] launching puck at (-1.92, 4.62) with (133.65, -321.80) force +[05/02/2026 21:22:51] Blue goal scored, blue score is now 3 +[05/02/2026 21:22:53] Dedicated match PATCH success: 200 {"ok":true,"id":237} +[05/02/2026 21:22:54] Dedicated match PATCH success: 200 {"ok":true,"id":237,"winner_id":5,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} +[05/02/2026 21:22:55] Active player connections: 1 +[05/02/2026 21:22:55] Active player connections: 0 +[05/02/2026 21:23:00] Server will be closed due to no players in, 60 +[05/02/2026 21:23:10] Server will be closed due to no players in, 50 +[05/02/2026 21:23:20] Server will be closed due to no players in, 40 +[05/02/2026 21:23:30] Server will be closed due to no players in, 30 +[05/02/2026 21:23:40] Server will be closed due to no players in, 20 +[05/02/2026 21:23:50] Server will be closed due to no players in, 10 +[05/02/2026 21:24:00] All players left, exiting +[05/02/2026 21:24:00] Dedicated match PATCH success: 200 {"ok":true,"id":237} diff --git a/games/soccar/soccar_Data/Logs/238.txt b/games/soccar/soccar_Data/Logs/238.txt new file mode 100644 index 0000000..b17d1ec --- /dev/null +++ b/games/soccar/soccar_Data/Logs/238.txt @@ -0,0 +1,81 @@ +[05/02/2026 21:24:18] Starting server at port 26760 +[05/02/2026 21:24:18] Failed to fetch red and blue names, isServer? +[05/02/2026 21:24:18] Starting auto close watchdog +[05/02/2026 21:24:19] Active player connections: 0 +[05/02/2026 21:24:23] Server will be closed due to no players in, 60 +[05/02/2026 21:24:24] Active player connections: 1 +[05/02/2026 21:24:24] Client 15 set team to Blue +[05/02/2026 21:24:24] Active player connections: 2 +[05/02/2026 21:24:24] Game started On Server +[05/02/2026 21:24:25] Client 16 set team to Red +[05/02/2026 21:24:25] Dedicated match PATCH success: 200 {"ok":true,"id":238} +[05/02/2026 21:24:25] Dedicated match PATCH success: 200 {"ok":true,"id":238} +[05/02/2026 21:24:29] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:24:29] launching puck at (-0.15, -5.00) with (10.69, 348.29) force +[05/02/2026 21:24:34] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:24:34] launching puck at (3.63, -3.43) with (-253.27, 239.32) force +[05/02/2026 21:24:40] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:24:40] launching puck at (4.69, -1.73) with (-327.01, 120.36) force +[05/02/2026 21:24:45] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:24:45] launching puck at (0.64, 4.96) with (-44.62, -345.58) force +[05/02/2026 21:24:52] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:24:52] launching puck at (2.81, -4.14) with (-195.70, 288.30) force +[05/02/2026 21:24:58] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:24:58] launching puck at (-2.68, 4.22) with (186.96, -294.05) force +[05/02/2026 21:24:59] Blue goal scored, blue score is now 1 +[05/02/2026 21:25:06] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:25:06] launching puck at (0.11, -5.00) with (-7.95, 348.36) force +[05/02/2026 21:25:12] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:25:12] launching puck at (0.59, 4.96) with (-41.43, -345.98) force +[05/02/2026 21:25:19] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:25:19] launching puck at (-1.41, -4.80) with (98.49, 334.25) force +[05/02/2026 21:25:27] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:25:27] launching puck at (2.97, 4.02) with (-206.76, -280.48) force +[05/02/2026 21:25:32] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:25:32] launching puck at (2.24, -4.47) with (-156.01, 311.58) force +[05/02/2026 21:25:33] Red goal scored, red score is now 1 +[05/02/2026 21:25:41] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:25:41] launching puck at (-4.88, 1.10) with (339.86, -76.89) force +[05/02/2026 21:25:49] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:25:49] launching puck at (4.50, -2.17) with (-313.81, 151.47) force +[05/02/2026 21:25:57] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:25:57] launching puck at (-0.08, 5.00) with (5.39, -348.41) force +[05/02/2026 21:26:02] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:26:02] launching puck at (-4.89, -1.04) with (340.79, 72.69) force +[05/02/2026 21:26:07] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:26:07] launching puck at (-4.98, 0.42) with (347.22, -29.32) force +[05/02/2026 21:26:13] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:26:13] launching puck at (-4.99, 0.24) with (348.04, -17.04) force +[05/02/2026 21:26:22] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:26:22] launching puck at (-0.77, 4.94) with (53.69, -344.29) force +[05/02/2026 21:26:27] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:26:27] launching puck at (-4.87, -1.13) with (339.44, 78.74) force +[05/02/2026 21:26:33] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:26:33] launching puck at (-0.63, -4.96) with (43.77, 345.69) force +[05/02/2026 21:26:38] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:26:38] launching puck at (-1.36, 4.81) with (95.11, -335.22) force +[05/02/2026 21:26:46] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:26:46] launching puck at (-4.72, 1.66) with (328.72, -115.60) force +[05/02/2026 21:26:51] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:26:51] launching puck at (1.87, 4.64) with (-130.36, -323.15) force +[05/02/2026 21:26:51] Blue goal scored, blue score is now 2 +[05/02/2026 21:26:58] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:26:58] launching puck at (0.20, -5.00) with (-13.67, 348.18) force +[05/02/2026 21:27:03] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:27:03] launching puck at (-1.33, 4.82) with (92.81, -335.87) force +[05/02/2026 21:27:07] force = 70 * 0.4961475 = 34.73032 +[05/02/2026 21:27:07] launching puck at (0.97, -1.19) with (-33.74, 41.44) force +[05/02/2026 21:27:11] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:27:11] launching puck at (0.69, 4.95) with (-48.00, -345.13) force +[05/02/2026 21:27:12] Blue goal scored, blue score is now 3 +[05/02/2026 21:27:13] Dedicated match PATCH success: 200 {"ok":true,"id":238} +[05/02/2026 21:27:14] Dedicated match PATCH success: 200 {"ok":true,"id":238,"winner_id":4,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} +[05/02/2026 21:27:16] Active player connections: 0 +[05/02/2026 21:27:21] Server will be closed due to no players in, 60 +[05/02/2026 21:27:31] Server will be closed due to no players in, 50 +[05/02/2026 21:27:41] Server will be closed due to no players in, 40 +[05/02/2026 21:27:51] Server will be closed due to no players in, 30 +[05/02/2026 21:28:01] Server will be closed due to no players in, 20 +[05/02/2026 21:28:11] Server will be closed due to no players in, 10 +[05/02/2026 21:28:21] All players left, exiting +[05/02/2026 21:28:21] Dedicated match PATCH success: 200 {"ok":true,"id":238} diff --git a/games/soccar/soccar_Data/Logs/239.txt b/games/soccar/soccar_Data/Logs/239.txt new file mode 100644 index 0000000..5dff33b --- /dev/null +++ b/games/soccar/soccar_Data/Logs/239.txt @@ -0,0 +1,45 @@ +[05/02/2026 21:28:39] Starting server at port 26567 +[05/02/2026 21:28:39] Failed to fetch red and blue names, isServer? +[05/02/2026 21:28:39] Starting auto close watchdog +[05/02/2026 21:28:39] Active player connections: 0 +[05/02/2026 21:28:44] Server will be closed due to no players in, 60 +[05/02/2026 21:28:44] Active player connections: 1 +[05/02/2026 21:28:45] Active player connections: 2 +[05/02/2026 21:28:45] Game started On Server +[05/02/2026 21:28:45] Client 15 set team to Blue +[05/02/2026 21:28:45] Dedicated match PATCH success: 200 {"ok":true,"id":239} +[05/02/2026 21:28:45] Client 16 set team to Red +[05/02/2026 21:28:45] Dedicated match PATCH success: 200 {"ok":true,"id":239} +[05/02/2026 21:28:47] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:28:47] launching puck at (0.02, -5.00) with (-1.73, 348.45) force +[05/02/2026 21:28:56] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:28:56] launching puck at (1.20, 4.85) with (-83.51, -338.30) force +[05/02/2026 21:29:02] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:29:02] launching puck at (-4.99, 0.26) with (347.97, -18.43) force +[05/02/2026 21:29:07] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:29:07] launching puck at (-4.67, 1.79) with (325.43, -124.56) force +[05/02/2026 21:29:12] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:29:12] launching puck at (-0.15, 5.00) with (10.37, -348.30) force +[05/02/2026 21:29:12] Blue goal scored, blue score is now 1 +[05/02/2026 21:29:18] force = 70 * 0.5802162 = 40.61514 +[05/02/2026 21:29:18] launching puck at (-1.32, -1.43) with (53.62, 58.00) force +[05/02/2026 21:29:23] force = 70 * 0.8721731 = 61.05212 +[05/02/2026 21:29:23] launching puck at (0.07, 3.73) with (-4.32, -227.89) force +[05/02/2026 21:29:24] Blue goal scored, blue score is now 2 +[05/02/2026 21:29:30] force = 70 * 0.5208256 = 36.45779 +[05/02/2026 21:29:30] launching puck at (-1.23, -1.10) with (44.78, 40.12) force +[05/02/2026 21:29:34] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:29:34] launching puck at (0.01, 5.00) with (-0.49, -348.45) force +[05/02/2026 21:29:35] Blue goal scored, blue score is now 3 +[05/02/2026 21:29:36] Dedicated match PATCH success: 200 {"ok":true,"id":239} +[05/02/2026 21:29:37] Dedicated match PATCH success: 200 {"ok":true,"id":239,"winner_id":5,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} +[05/02/2026 21:31:29] Active player connections: 1 +[05/02/2026 21:31:38] Active player connections: 0 +[05/02/2026 21:31:43] Server will be closed due to no players in, 60 +[05/02/2026 21:31:53] Server will be closed due to no players in, 50 +[05/02/2026 21:32:03] Server will be closed due to no players in, 40 +[05/02/2026 21:32:13] Server will be closed due to no players in, 30 +[05/02/2026 21:32:23] Server will be closed due to no players in, 20 +[05/02/2026 21:32:33] Server will be closed due to no players in, 10 +[05/02/2026 21:32:43] All players left, exiting +[05/02/2026 21:32:44] Dedicated match PATCH success: 200 {"ok":true,"id":239} diff --git a/games/soccar/soccar_Data/Logs/240.txt b/games/soccar/soccar_Data/Logs/240.txt new file mode 100644 index 0000000..89676dc --- /dev/null +++ b/games/soccar/soccar_Data/Logs/240.txt @@ -0,0 +1,42 @@ +[05/02/2026 21:42:38] Starting server at port 26641 +[05/02/2026 21:42:38] Failed to fetch red and blue names, isServer? +[05/02/2026 21:42:38] Starting auto close watchdog +[05/02/2026 21:42:38] Active player connections: 0 +[05/02/2026 21:42:43] Server will be closed due to no players in, 60 +[05/02/2026 21:42:43] Active player connections: 1 +[05/02/2026 21:42:44] Client 15 set team to Blue +[05/02/2026 21:42:44] Dedicated match PATCH success: 200 {"ok":true,"id":240} +[05/02/2026 21:42:44] Active player connections: 2 +[05/02/2026 21:42:44] Game started On Server +[05/02/2026 21:42:45] Client 16 set team to Red +[05/02/2026 21:42:45] Dedicated match PATCH success: 200 {"ok":true,"id":240} +[05/02/2026 21:42:52] force = 70 * 0.3181705 = 22.27193 +[05/02/2026 21:42:52] launching puck at (1.02, 0.22) with (-22.82, -4.83) force +[05/02/2026 21:42:56] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:42:56] launching puck at (-0.13, 5.00) with (9.21, -348.33) force +[05/02/2026 21:42:57] Blue goal scored, blue score is now 1 +[05/02/2026 21:43:01] force = 70 * 0.6492143 = 45.445 +[05/02/2026 21:43:01] launching puck at (-2.16, -0.67) with (98.38, 30.62) force +[05/02/2026 21:43:05] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:43:05] launching puck at (-0.10, 5.00) with (7.10, -348.38) force +[05/02/2026 21:43:06] Blue goal scored, blue score is now 2 +[05/02/2026 21:43:11] force = 70 * 0.5785022 = 40.49515 +[05/02/2026 21:43:11] launching puck at (-1.29, -1.44) with (52.30, 58.43) force +[05/02/2026 21:43:16] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:43:16] launching puck at (-0.11, 5.00) with (7.57, -348.37) force +[05/02/2026 21:43:16] Blue goal scored, blue score is now 3 +[05/02/2026 21:43:16] Dedicated match PATCH success: 200 {"ok":true,"id":240} +[05/02/2026 21:43:17] Dedicated match PATCH success: 200 {"ok":true,"id":240,"winner_id":5,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} +[05/02/2026 21:43:24] Active player connections: 1 +[05/02/2026 21:43:37] Active player connections: 2 +[05/02/2026 21:43:38] Client 17 set team to Blue +[05/02/2026 21:43:49] Active player connections: 1 +[05/02/2026 21:43:51] Active player connections: 0 +[05/02/2026 21:43:56] Server will be closed due to no players in, 60 +[05/02/2026 21:44:06] Server will be closed due to no players in, 50 +[05/02/2026 21:44:16] Server will be closed due to no players in, 40 +[05/02/2026 21:44:26] Server will be closed due to no players in, 30 +[05/02/2026 21:44:36] Server will be closed due to no players in, 20 +[05/02/2026 21:44:46] Server will be closed due to no players in, 10 +[05/02/2026 21:44:56] All players left, exiting +[05/02/2026 21:44:56] Dedicated match PATCH success: 200 {"ok":true,"id":240} diff --git a/games/soccar/soccar_Data/Logs/241.txt b/games/soccar/soccar_Data/Logs/241.txt new file mode 100644 index 0000000..ee240a2 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/241.txt @@ -0,0 +1,39 @@ +[05/02/2026 21:46:35] Starting server at port 26214 +[05/02/2026 21:46:35] Failed to fetch red and blue names, isServer? +[05/02/2026 21:46:35] Starting auto close watchdog +[05/02/2026 21:46:35] Active player connections: 0 +[05/02/2026 21:46:41] Server will be closed due to no players in, 60 +[05/02/2026 21:46:41] Active player connections: 1 +[05/02/2026 21:46:42] Active player connections: 2 +[05/02/2026 21:46:42] Game started On Server +[05/02/2026 21:46:42] Client 15 set team to Blue +[05/02/2026 21:46:42] Client 16 set team to Red +[05/02/2026 21:46:42] Dedicated match PATCH success: 200 {"ok":true,"id":241} +[05/02/2026 21:46:42] Dedicated match PATCH success: 200 {"ok":true,"id":241} +[05/02/2026 21:47:00] force = 70 * 0.7150661 = 50.05463 +[05/02/2026 21:47:00] launching puck at (-2.54, 0.62) with (127.29, -30.85) force +[05/02/2026 21:47:05] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:47:05] launching puck at (0.06, -5.00) with (-3.97, 348.43) force +[05/02/2026 21:47:05] Red goal scored, red score is now 1 +[05/02/2026 21:47:10] force = 70 * 0.656828 = 45.97796 +[05/02/2026 21:47:10] launching puck at (-1.44, 1.80) with (66.20, -82.77) force +[05/02/2026 21:47:15] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:47:15] launching puck at (0.03, -5.00) with (-1.77, 348.45) force +[05/02/2026 21:47:15] Red goal scored, red score is now 2 +[05/02/2026 21:47:20] force = 70 * 0.7562422 = 52.93695 +[05/02/2026 21:47:20] launching puck at (-2.64, 1.11) with (139.72, -58.90) force +[05/02/2026 21:47:26] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:47:26] launching puck at (-0.09, -5.00) with (6.08, 348.40) force +[05/02/2026 21:47:26] Red goal scored, red score is now 3 +[05/02/2026 21:47:26] Dedicated match PATCH success: 200 {"ok":true,"id":241} +[05/02/2026 21:47:27] Dedicated match PATCH success: 200 {"ok":true,"id":241,"winner_id":4,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} +[05/02/2026 21:47:34] Active player connections: 1 +[05/02/2026 21:47:48] Active player connections: 0 +[05/02/2026 21:47:53] Server will be closed due to no players in, 60 +[05/02/2026 21:48:03] Server will be closed due to no players in, 50 +[05/02/2026 21:48:13] Server will be closed due to no players in, 40 +[05/02/2026 21:48:23] Server will be closed due to no players in, 30 +[05/02/2026 21:48:33] Server will be closed due to no players in, 20 +[05/02/2026 21:48:43] Server will be closed due to no players in, 10 +[05/02/2026 21:48:53] All players left, exiting +[05/02/2026 21:48:54] Dedicated match PATCH success: 200 {"ok":true,"id":241} diff --git a/games/soccar/soccar_Data/Logs/242.txt b/games/soccar/soccar_Data/Logs/242.txt new file mode 100644 index 0000000..a873994 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/242.txt @@ -0,0 +1,49 @@ +[05/02/2026 21:58:58] Starting server at port 26155 +[05/02/2026 21:58:58] Failed to fetch red and blue names, isServer? +[05/02/2026 21:58:58] Starting auto close watchdog +[05/02/2026 21:58:58] Active player connections: 0 +[05/02/2026 21:59:03] Server will be closed due to no players in, 60 +[05/02/2026 21:59:03] Active player connections: 1 +[05/02/2026 21:59:03] Client 15 set team to Blue +[05/02/2026 21:59:04] Active player connections: 2 +[05/02/2026 21:59:04] Game started On Server +[05/02/2026 21:59:04] Dedicated match PATCH success: 200 {"ok":true,"id":242} +[05/02/2026 21:59:04] Client 16 set team to Red +[05/02/2026 21:59:04] Dedicated match PATCH success: 200 {"ok":true,"id":242} +[05/02/2026 21:59:10] force = 70 * 0.1999104 = 13.99373 +[05/02/2026 21:59:10] launching puck at (0.00, -0.86) with (-0.04, 12.01) force +[05/02/2026 21:59:14] force = 70 * 0.9832281 = 68.82597 +[05/02/2026 21:59:14] launching puck at (-3.82, 3.01) with (262.67, -207.46) force +[05/02/2026 21:59:19] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:59:19] launching puck at (0.11, -5.00) with (-7.67, 348.37) force +[05/02/2026 21:59:19] Red goal scored, red score is now 1 +[05/02/2026 21:59:24] force = 70 * 0.9030207 = 63.21145 +[05/02/2026 21:59:24] launching puck at (-2.59, 3.08) with (163.42, -194.52) force +[05/02/2026 21:59:31] force = 70 * 0.4328116 = 30.29682 +[05/02/2026 21:59:31] launching puck at (-0.14, -1.31) with (4.22, 39.61) force +[05/02/2026 21:59:36] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:59:36] launching puck at (3.92, 3.10) with (-273.37, -216.08) force +[05/02/2026 21:59:43] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:59:43] launching puck at (4.47, -2.24) with (-311.66, 155.84) force +[05/02/2026 21:59:51] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:59:51] launching puck at (4.45, -2.29) with (-309.80, 159.51) force +[05/02/2026 21:59:57] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 21:59:57] launching puck at (-0.42, -4.98) with (29.37, 347.21) force +[05/02/2026 22:00:04] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 22:00:04] launching puck at (-4.19, 2.73) with (292.12, -189.97) force +[05/02/2026 22:00:09] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 22:00:09] launching puck at (-1.42, -4.79) with (99.20, 334.04) force +[05/02/2026 22:00:10] Red goal scored, red score is now 2 +[05/02/2026 22:00:15] force = 70 * 0.9285592 = 64.99915 +[05/02/2026 22:00:15] launching puck at (-3.23, 2.80) with (209.64, -182.31) force +[05/02/2026 22:00:21] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 22:00:21] launching puck at (-0.01, -5.00) with (0.37, 348.45) force +[05/02/2026 22:00:21] Red goal scored, red score is now 3 +[05/02/2026 22:00:22] Dedicated match PATCH success: 200 {"ok":true,"id":242} +[05/02/2026 22:00:24] Dedicated match PATCH success: 200 {"ok":true,"id":242,"winner_id":4,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} +[05/02/2026 22:00:32] Active player connections: 1 +[05/02/2026 22:03:26] Active player connections: 0 +[05/02/2026 22:03:31] Server will be closed due to no players in, 60 +[05/02/2026 22:03:41] Server will be closed due to no players in, 50 +[05/02/2026 22:03:51] Server will be closed due to no players in, 40 +[05/02/2026 22:04:01] Server will be closed due to no players in, 30 diff --git a/games/soccar/soccar_Data/Logs/243.txt b/games/soccar/soccar_Data/Logs/243.txt new file mode 100644 index 0000000..747bcf7 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/243.txt @@ -0,0 +1,58 @@ +[05/02/2026 22:06:30] Starting server at port 26903 +[05/02/2026 22:06:30] Failed to fetch red and blue names, isServer? +[05/02/2026 22:06:30] Starting auto close watchdog +[05/02/2026 22:06:30] Active player connections: 0 +[05/02/2026 22:06:35] Server will be closed due to no players in, 60 +[05/02/2026 22:06:36] Active player connections: 1 +[05/02/2026 22:06:36] Client 15 set team to Blue +[05/02/2026 22:06:36] Dedicated match PATCH success: 200 {"ok":true,"id":243} +[05/02/2026 22:06:36] Active player connections: 2 +[05/02/2026 22:06:36] Game started On Server +[05/02/2026 22:06:37] Client 16 set team to Red +[05/02/2026 22:06:37] Dedicated match PATCH success: 200 {"ok":true,"id":243} +[05/02/2026 22:06:41] force = 70 * 0.357412 = 25.01884 +[05/02/2026 22:06:41] launching puck at (0.06, -1.12) with (-1.51, 28.13) force +[05/02/2026 22:06:46] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 22:06:46] launching puck at (-4.30, 2.55) with (299.74, -177.69) force +[05/02/2026 22:06:52] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 22:06:52] launching puck at (-0.62, -4.96) with (43.21, 345.76) force +[05/02/2026 22:07:00] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 22:07:00] launching puck at (-4.90, 0.98) with (341.69, -68.33) force +[05/02/2026 22:07:07] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 22:07:07] launching puck at (1.21, -4.85) with (-84.08, 338.16) force +[05/02/2026 22:07:12] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 22:07:12] launching puck at (2.86, -4.10) with (-199.30, 285.83) force +[05/02/2026 22:07:17] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 22:07:17] launching puck at (4.88, -1.10) with (-339.99, 76.34) force +[05/02/2026 22:07:22] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 22:07:22] launching puck at (-3.77, 3.29) with (262.66, -228.97) force +[05/02/2026 22:07:29] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 22:07:29] launching puck at (-0.43, -4.98) with (29.80, 347.18) force +[05/02/2026 22:07:34] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 22:07:34] launching puck at (-4.41, -2.36) with (307.35, 164.18) force +[05/02/2026 22:07:39] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 22:07:39] launching puck at (-3.64, -3.42) with (253.88, 238.68) force +[05/02/2026 22:07:39] Red goal scored, red score is now 1 +[05/02/2026 22:07:48] force = 70 * 0.6722115 = 47.05481 +[05/02/2026 22:07:48] launching puck at (-1.70, 1.67) with (80.12, -78.49) force +[05/02/2026 22:07:54] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 22:07:54] launching puck at (-0.05, -5.00) with (3.46, 348.44) force +[05/02/2026 22:07:54] Red goal scored, red score is now 2 +[05/02/2026 22:07:59] force = 70 * 0.9197615 = 64.38331 +[05/02/2026 22:07:59] launching puck at (-2.71, 3.19) with (174.35, -205.40) force +[05/02/2026 22:08:07] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 22:08:07] launching puck at (0.01, -5.00) with (-0.59, 348.45) force +[05/02/2026 22:08:07] Red goal scored, red score is now 3 +[05/02/2026 22:08:08] Dedicated match PATCH success: 200 {"ok":true,"id":243} +[05/02/2026 22:08:10] Dedicated match PATCH success: 200 {"ok":true,"id":243,"winner_id":4,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} +[05/02/2026 22:08:15] Rematch requested +[05/02/2026 22:08:41] Active player connections: 1 +[05/02/2026 22:08:53] Active player connections: 0 +[05/02/2026 22:08:58] Server will be closed due to no players in, 60 +[05/02/2026 22:09:08] Server will be closed due to no players in, 50 +[05/02/2026 22:09:18] Server will be closed due to no players in, 40 +[05/02/2026 22:09:28] Server will be closed due to no players in, 30 +[05/02/2026 22:09:38] Server will be closed due to no players in, 20 +[05/02/2026 22:09:48] Server will be closed due to no players in, 10 +[05/02/2026 22:09:58] All players left, exiting +[05/02/2026 22:09:58] Dedicated match PATCH success: 200 {"ok":true,"id":243} diff --git a/games/soccar/soccar_Data/Logs/244.txt b/games/soccar/soccar_Data/Logs/244.txt new file mode 100644 index 0000000..ed72cf7 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/244.txt @@ -0,0 +1,41 @@ +[05/02/2026 22:12:20] Starting server at port 26159 +[05/02/2026 22:12:20] Failed to fetch red and blue names, isServer? +[05/02/2026 22:12:20] Starting auto close watchdog +[05/02/2026 22:12:20] Active player connections: 0 +[05/02/2026 22:12:25] Active player connections: 1 +[05/02/2026 22:12:25] Client 15 set team to Blue +[05/02/2026 22:12:25] Active player connections: 2 +[05/02/2026 22:12:25] Game started On Server +[05/02/2026 22:12:26] Dedicated match PATCH success: 200 {"ok":true,"id":244} +[05/02/2026 22:12:26] Client 16 set team to Red +[05/02/2026 22:12:26] Dedicated match PATCH success: 200 {"ok":true,"id":244} +[05/02/2026 22:12:30] force = 70 * 0.2732754 = 19.12928 +[05/02/2026 22:12:30] launching puck at (0.02, -0.97) with (-0.31, 18.53) force +[05/02/2026 22:12:36] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 22:12:36] launching puck at (-3.96, 3.05) with (276.13, -212.54) force +[05/02/2026 22:12:47] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 22:12:47] launching puck at (-0.42, -4.98) with (29.45, 347.21) force +[05/02/2026 22:12:47] Red goal scored, red score is now 1 +[05/02/2026 22:12:55] force = 70 * 0.8367562 = 58.57293 +[05/02/2026 22:12:55] launching puck at (-2.52, 2.33) with (147.79, -136.59) force +[05/02/2026 22:13:01] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 22:13:01] launching puck at (0.06, -5.00) with (-3.97, 348.43) force +[05/02/2026 22:13:01] Red goal scored, red score is now 2 +[05/02/2026 22:13:09] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 22:13:09] launching puck at (-2.96, 4.03) with (206.54, -280.65) force +[05/02/2026 22:13:15] force = 70 * 0.9955804 = 69.69063 +[05/02/2026 22:13:15] launching puck at (-0.05, -5.00) with (3.18, 348.44) force +[05/02/2026 22:13:16] Red goal scored, red score is now 3 +[05/02/2026 22:13:16] Dedicated match PATCH success: 200 {"ok":true,"id":244} +[05/02/2026 22:13:17] Dedicated match PATCH success: 200 {"ok":true,"id":244,"winner_id":5,"economy":{"entry_fee_rc":21,"winner_rc_bonus":34,"participant_cc":100}} +[05/02/2026 22:13:26] Rematch requested +[05/02/2026 22:14:01] Active player connections: 1 +[05/02/2026 22:14:02] Active player connections: 0 +[05/02/2026 22:14:07] Server will be closed due to no players in, 60 +[05/02/2026 22:14:17] Server will be closed due to no players in, 50 +[05/02/2026 22:14:27] Server will be closed due to no players in, 40 +[05/02/2026 22:14:37] Server will be closed due to no players in, 30 +[05/02/2026 22:14:47] Server will be closed due to no players in, 20 +[05/02/2026 22:14:57] Server will be closed due to no players in, 10 +[05/02/2026 22:15:07] All players left, exiting +[05/02/2026 22:15:08] Dedicated match PATCH success: 200 {"ok":true,"id":244} diff --git a/games/soccar/soccar_Data/Managed/Assembly-CSharp.dll b/games/soccar/soccar_Data/Managed/Assembly-CSharp.dll index 64ca651..39e3960 100644 Binary files a/games/soccar/soccar_Data/Managed/Assembly-CSharp.dll and b/games/soccar/soccar_Data/Managed/Assembly-CSharp.dll differ diff --git a/games/soccar/soccar_Data/boot.config b/games/soccar/soccar_Data/boot.config index fd90bd0..2a0f742 100644 --- a/games/soccar/soccar_Data/boot.config +++ b/games/soccar/soccar_Data/boot.config @@ -4,4 +4,4 @@ gfx-threading-mode=4 wait-for-native-debugger=0 hdr-display-enabled=0 gc-max-time-slice=3 -build-guid=1882f6858cd546e2a239fc6c36aa0f2d +build-guid=5b9d9db858ab4c42af30a32b78576ef9 diff --git a/games/soccar/soccar_Data/globalgamemanagers b/games/soccar/soccar_Data/globalgamemanagers index 6ae87f4..291c099 100644 Binary files a/games/soccar/soccar_Data/globalgamemanagers and b/games/soccar/soccar_Data/globalgamemanagers differ diff --git a/games/soccar/soccar_Data/globalgamemanagers.assets b/games/soccar/soccar_Data/globalgamemanagers.assets index d2270e3..e8eb110 100644 Binary files a/games/soccar/soccar_Data/globalgamemanagers.assets and b/games/soccar/soccar_Data/globalgamemanagers.assets differ diff --git a/games/soccar/soccar_Data/level0 b/games/soccar/soccar_Data/level0 index 317fbe8..1b6445c 100644 Binary files a/games/soccar/soccar_Data/level0 and b/games/soccar/soccar_Data/level0 differ diff --git a/games/soccar/soccar_Data/resources.assets b/games/soccar/soccar_Data/resources.assets index b92ed8d..b92c199 100644 Binary files a/games/soccar/soccar_Data/resources.assets and b/games/soccar/soccar_Data/resources.assets differ diff --git a/games/soccar/soccar_Data/sharedassets0.assets b/games/soccar/soccar_Data/sharedassets0.assets index 871c5d1..d708d75 100644 Binary files a/games/soccar/soccar_Data/sharedassets0.assets and b/games/soccar/soccar_Data/sharedassets0.assets differ diff --git a/matches.ts b/matches.ts index 91b2384..37f0d44 100644 --- a/matches.ts +++ b/matches.ts @@ -1,11 +1,11 @@ import express, { Express, Request, Response } from 'express'; import * as crypto from 'crypto'; import type { SupabaseClient } from '@supabase/supabase-js'; -import { Settings } from './types'; +import { Room, Settings } from './types'; import { createSupabase, supabaseConfigured } from './auth_bridge'; /** Per player on the match: deducted when a winner is recorded. */ -const MATCH_ENTRY_FEE_RC = 21; +export const MATCH_ENTRY_FEE_RC = 21; /** Added to the winning player's RC (after entry fee). */ const MATCH_WINNER_RC_BONUS = 34; /** Added to each player's CC when a winner is recorded. */ @@ -26,7 +26,8 @@ function coerceId(id: unknown): number | null { export async function insertMatchForNewRoom(settings: Settings, userRedId?: number): Promise { if (!supabaseConfigured(settings)) return null; const supabase = createSupabase(settings); - const payload = userRedId == null ? {} : { user_red: userRedId }; + const base = { entry_fee: MATCH_ENTRY_FEE_RC }; + const payload = userRedId == null ? base : { ...base, user_red: userRedId }; const { data, error } = await supabase.from('matches').insert(payload).select('id').single(); if (error || !data) { console.error('matches: insert failed', error?.message); @@ -35,6 +36,70 @@ export async function insertMatchForNewRoom(settings: Settings, userRedId?: numb return coerceId(data.id); } +/** Dedicated server: rematch row with both players and custom `entry_fee` (RC). */ +export async function insertRematchMatch( + settings: Settings, + userRedId: number, + userBlueId: number, + entryFee: number +): Promise { + if (!supabaseConfigured(settings)) return null; + const supabase = createSupabase(settings); + const { data, error } = await supabase + .from('matches') + .insert({ + user_red: userRedId, + user_blue: userBlueId, + entry_fee: entryFee, + }) + .select('id') + .single(); + if (error || !data) { + console.error('matches: rematch insert failed', error?.message); + return null; + } + return coerceId(data.id); +} + +/** Load `username` for two user ids (order not preserved in result). */ +export async function loadUsernamesForUserPair( + settings: Settings, + userA: number, + userB: number +): Promise<{ nameById: Map } | null> { + if (!supabaseConfigured(settings)) return null; + const supabase = createSupabase(settings); + const { data, error } = await supabase.from('users').select('id, username').in('id', [userA, userB]); + if (error || !data || data.length !== 2) { + if (error) console.error('matches: load usernames failed', error.message); + return null; + } + const nameById = new Map(); + for (const row of data as { id: unknown; username: unknown }[]) { + const id = coerceId(row.id); + if (id == null || typeof row.username !== 'string' || row.username.length < 1) return null; + nameById.set(id, row.username); + } + if (!nameById.has(userA) || !nameById.has(userB)) return null; + return { nameById }; +} + +/** Same JSON shape for GET / (room found) and POST /internal/rematch success. */ +export type MatchRoomSuccessEnvelope = { + ok: true; + entry_fee: number; + for_red: Room | null; + for_blue: Room | null; +}; + +export type CreateRematchRoomResult = MatchRoomSuccessEnvelope | { ok: false; status: number; error: string }; + +export type CreateRematchRoomFn = (args: { + userRedId: number; + userBlueId: number; + entryFee: number; +}) => Promise; + /** Latest 10 matches for this user (by created_at); counts wins/losses from winner_id only. */ export async function getPlayerLast10MatchRecord( settings: Settings, @@ -141,7 +206,11 @@ function rejectUnlessDedicatedServer(req: Request, res: Response, settings: Sett return false; } -export function registerMatchRoutes(app: Express, settings: Settings): void { +export function registerMatchRoutes( + app: Express, + settings: Settings, + deps?: { createRematchRoom?: CreateRematchRoomFn } +): void { const jsonParser = express.json(); /** @@ -167,6 +236,76 @@ export function registerMatchRoutes(app: Express, settings: Settings): void { }); }); + /** Public: RC balance for a player (`users.id` / matchmaking UserId). */ + app.get('/players/:playerId/rc', async (req: Request, res: Response) => { + if (!supabaseConfigured(settings)) { + res.status(503).json({ ok: false, error: 'Database not configured' }); + return; + } + const playerId = coerceId(req.params.playerId); + if (playerId == null || playerId < 1) { + res.status(400).json({ ok: false, error: 'Invalid player id' }); + return; + } + const supabase = createSupabase(settings); + const { data, error } = await supabase.from('users').select('rc').eq('id', playerId).maybeSingle(); + if (error) { + res.status(500).json({ ok: false, error: error.message }); + return; + } + if (!data) { + res.status(404).json({ ok: false, error: 'Player not found' }); + return; + } + const rc = Number((data as { rc: unknown }).rc ?? 0); + res.json({ ok: true, player_id: playerId, rc }); + }); + + /** + * Dedicated server only: open a room with two players and a custom RC entry fee. + * Response body matches GET / on room success: `{ ok, entry_fee, for_red, for_blue }`. + */ + app.post('/internal/rematch', jsonParser, async (req: Request, res: Response) => { + if (rejectUnlessDedicatedServer(req, res, settings)) return; + if (!deps?.createRematchRoom) { + res.status(503).json({ ok: false, error: 'Rematch handler not configured' }); + return; + } + + const body = req.body as Record; + const userRedId = coerceId(body.user_red_id); + const userBlueId = coerceId(body.user_blue_id); + const rawFee = body.entry_fee; + const entryFee = + typeof rawFee === 'bigint' + ? Number(rawFee) + : typeof rawFee === 'number' && Number.isFinite(rawFee) + ? Math.trunc(rawFee) + : typeof rawFee === 'string' && /^-?\d+$/.test(rawFee.trim()) + ? parseInt(rawFee.trim(), 10) + : null; + + if (userRedId == null || userRedId < 1 || userBlueId == null || userBlueId < 1) { + res.status(400).json({ ok: false, error: 'user_red_id and user_blue_id must be positive integers' }); + return; + } + if (userRedId === userBlueId) { + res.status(400).json({ ok: false, error: 'user_red_id and user_blue_id must differ' }); + return; + } + if (entryFee == null || !Number.isInteger(entryFee) || entryFee < 0) { + res.status(400).json({ ok: false, error: 'entry_fee must be a non-negative integer' }); + return; + } + + const result = await deps.createRematchRoom({ userRedId, userBlueId, entryFee }); + if (!result.ok) { + res.status(result.status).json({ ok: false, error: result.error }); + return; + } + res.json(result); + }); + app.patch('/internal/match/:matchId', jsonParser, async (req: Request, res: Response) => { if (rejectUnlessDedicatedServer(req, res, settings)) return; diff --git a/types.ts b/types.ts index 6473797..336759c 100644 --- a/types.ts +++ b/types.ts @@ -47,6 +47,8 @@ export interface Room { instance_started?: boolean; /** Row id in public.matches; game server uses this with X-Dedicated-Server-Secret */ match_id?: number; + /** RC entry fee for this match (matches `public.matches.entry_fee`). */ + entry_fee?: number; /** Only on GET / responses: authenticated user’s team (Players[0]=red, Players[1]=blue) */ your_team?: 'red' | 'blue' | null; }