diff --git a/app.ts b/app.ts index 4273928..329d616 100644 --- a/app.ts +++ b/app.ts @@ -11,6 +11,7 @@ import { computeRcPrizeFromEntryFee, getBetFeePercentFromSettings, getDefaultMatchEntryFeeRc, + getSettingsTableDict, MATCH_ENTRY_FEE_RC, registerMatchRoutes, updateMatchUserBlue, @@ -185,6 +186,7 @@ app.get('/settings', async (req: Request, res: Response) => { const entry_fee = await getDefaultMatchEntryFeeRc(typedSettings); const bet_fee = await getBetFeePercentFromSettings(typedSettings); const rc_prize = computeRcPrizeFromEntryFee(entry_fee, bet_fee); + const table_settings = await getSettingsTableDict(typedSettings); const m_settings = { minimum_players: typedSettings.minimum_players, maximum_players: typedSettings.maximum_players, @@ -195,11 +197,17 @@ app.get('/settings', async (req: Request, res: Response) => { entry_fee, bet_fee, rc_prize, + table_settings, }; logInfo(m_settings); res.send(m_settings); }); +app.get('/table_settings', async (_req: Request, res: Response) => { + const table_settings = await getSettingsTableDict(typedSettings); + res.json(table_settings); +}); + function parseAdminLinesParam(raw: unknown, defaultLines: number, cap: number): number { if (typeof raw !== 'string') return defaultLines; const n = parseInt(raw, 10); @@ -488,7 +496,7 @@ app.use((err: unknown, _req: Request, res: Response, next: express.NextFunction) res.status(400).json({ ok: false, error: - 'Invalid JSON body. Use strict JSON with double-quoted keys, e.g. {"username":"player1","password":"secret12"}', + 'Invalid JSON body. Use strict JSON with double-quoted keys, e.g. {"username":"player1","email":"you@example.com","password":"secret12"}', }); return; } diff --git a/auth_bridge.ts b/auth_bridge.ts index 27a1858..8dbfa74 100644 --- a/auth_bridge.ts +++ b/auth_bridge.ts @@ -3,11 +3,14 @@ import { createClient, SupabaseClient } from '@supabase/supabase-js'; import * as bcrypt from 'bcrypt'; import * as crypto from 'crypto'; import { Settings } from './types'; +import { logDebug, logInfo } from './server_log'; const BCRYPT_ROUNDS = 10; const TOKEN_TTL_SEC = 60 * 60 * 24 * 7; // 7 days const USERNAME_MIN = 2; const PASSWORD_MIN = 6; +const EMAIL_MAX = 254; +const SYSTEM_ACCOUNT_ID = 1; /** 1 USD = 4 RC (IAP packs) */ export const RC_PER_USD = 4; @@ -26,6 +29,7 @@ function isIapDummyMode(settings: Settings): boolean { export interface AuthUserPublic { id: string; username: string; + email: string | null; cc: number; rc: number; created_at: string; @@ -98,6 +102,50 @@ function coerceDbUserId(id: unknown): number | null { return null; } +function normalizeEmail(raw: string): string { + return raw.trim().toLowerCase(); +} + +function isValidEmail(email: string): boolean { + if (email.length < 3 || email.length > EMAIL_MAX) return false; + return /^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(email); +} + +function rowToAuthUserPublic(row: Record): AuthUserPublic { + return { + id: String(row.id), + username: typeof row.username === 'string' ? row.username : String(row.username ?? ''), + email: row.email != null && row.email !== '' ? String(row.email) : null, + cc: Number(row.cc ?? 0), + rc: Number(row.rc ?? 0), + created_at: typeof row.created_at === 'string' ? row.created_at : String(row.created_at ?? ''), + last_logged_at: row.last_logged_at != null && row.last_logged_at !== '' + ? String(row.last_logged_at) + : null, + }; +} + +function isMissingPurchaseRpcError(err: { code?: string; message?: string } | null): boolean { + if (!err) return false; + if (err.code === 'PGRST202') return true; + const m = err.message ?? ''; + return m.includes('purchase_rc') || m.includes('Could not find the function'); +} + +function summarizePostgrestErr(err: { code?: string; message?: string; details?: string; hint?: string }): object { + return { + code: err.code ?? null, + message: err.message ?? null, + details: err.details ?? null, + hint: err.hint ?? null, + }; +} + +/** Integer-ish RC for comparisons after reads (DB may still be `real` until bigint migration). */ +function roundedStoredRc(value: unknown): number { + return Math.round(Number(value ?? 0)); +} + export interface MatchmakingUser { userId: number; username: string; @@ -146,47 +194,65 @@ export function registerAuthRoutes(app: Express, settings: Settings): void { } const username = typeof req.body?.username === 'string' ? req.body.username.trim() : ''; const password = typeof req.body?.password === 'string' ? req.body.password : ''; + const emailRaw = typeof req.body?.email === 'string' ? req.body.email : ''; + const email = normalizeEmail(emailRaw); if (username.length < USERNAME_MIN) { res.status(400).json({ ok: false, error: `Username must be at least ${USERNAME_MIN} characters` }); return; } + if (!isValidEmail(email)) { + res.status(400).json({ ok: false, error: 'A valid email address is required' }); + return; + } if (password.length < PASSWORD_MIN) { res.status(400).json({ ok: false, error: `Password must be at least ${PASSWORD_MIN} characters` }); return; } const supabase = createSupabase(settings); - const { data: existing } = await supabase.from('users').select('id').eq('username', username).maybeSingle(); - if (existing) { + const [{ data: existingUser }, { data: existingEmail }] = await Promise.all([ + supabase.from('users').select('id').eq('username', username).maybeSingle(), + supabase.from('users').select('id').eq('email', email).maybeSingle(), + ]); + if (existingUser) { res.status(409).json({ ok: false, error: 'Username already taken' }); return; } + if (existingEmail) { + res.status(409).json({ ok: false, error: 'Email already registered' }); + return; + } const hash = await bcrypt.hash(password, BCRYPT_ROUNDS); const { data: row, error } = await supabase .from('users') .insert({ username, + email, password: hash, cc: 0, rc: 0, }) - .select('id, username, cc, rc, created_at, last_logged_at') + .select('id, username, email, cc, rc, created_at, last_logged_at') .single(); if (error || !row) { + if (error?.code === '23505') { + const msg = error.message ?? ''; + if (msg.includes('email')) { + res.status(409).json({ ok: false, error: 'Email already registered' }); + return; + } + if (msg.includes('username')) { + res.status(409).json({ ok: false, error: 'Username already taken' }); + return; + } + } res.status(500).json({ ok: false, error: error?.message ?? 'Registration failed' }); return; } - const user: AuthUserPublic = { - id: row.id, - username: row.username, - cc: row.cc, - rc: row.rc, - created_at: row.created_at, - last_logged_at: row.last_logged_at ?? null, - }; + const user = rowToAuthUserPublic(row as Record); const token = signToken(user.id, settings.auth_jwt_secret!.trim()); res.status(201).json({ ok: true, token, user }); }); @@ -206,7 +272,7 @@ export function registerAuthRoutes(app: Express, settings: Settings): void { const supabase = createSupabase(settings); const { data: row, error } = await supabase .from('users') - .select('id, username, password, cc, rc, created_at') + .select('id, username, email, password, cc, rc, created_at') .eq('username', username) .maybeSingle(); @@ -225,11 +291,7 @@ export function registerAuthRoutes(app: Express, settings: Settings): void { await supabase.from('users').update({ last_logged_at: nowIso }).eq('id', row.id); const user: AuthUserPublic = { - id: row.id, - username: row.username, - cc: row.cc, - rc: row.rc, - created_at: row.created_at, + ...rowToAuthUserPublic(row as Record), last_logged_at: nowIso, }; const token = signToken(user.id, settings.auth_jwt_secret!.trim()); @@ -255,22 +317,14 @@ export function registerAuthRoutes(app: Express, settings: Settings): void { const supabase = createSupabase(settings); const { data, error } = await supabase .from('users') - .select('id, username, cc, rc, created_at, last_logged_at') + .select('id, username, email, cc, rc, created_at, last_logged_at') .eq('id', v.userId) .maybeSingle(); if (error || !data) { res.status(404).json({ ok: false, error: 'User not found' }); return; } - const user: AuthUserPublic = { - id: data.id, - username: data.username, - cc: data.cc, - rc: data.rc, - created_at: data.created_at, - last_logged_at: data.last_logged_at ?? null, - }; - res.json({ ok: true, user }); + res.json({ ok: true, user: rowToAuthUserPublic(data as Record) }); }; app.get('/auth/me', handleGetCurrentUser); @@ -324,40 +378,280 @@ export function registerAuthRoutes(app: Express, settings: Settings): void { } const supabase = createSupabase(settings); - const { data: row, error: selErr } = await supabase + const buyerId = coerceDbUserId(v.userId); + if (buyerId == null || buyerId < 1) { + res.status(400).json({ ok: false, error: 'Invalid token user id' }); + return; + } + + const amount = Math.trunc(pack.rc); + const logLevel = settings.log_level ?? 0; + const selfPurchase = buyerId === SYSTEM_ACCOUNT_ID; + + logInfo('[purchase-rc] start', { + buyer_id: buyerId, + pack_id: packId, + amount, + self_purchase: selfPurchase, + }); + + const { data: rpcData, error: rpcErr } = await supabase.rpc('purchase_rc', { + p_buyer_id: buyerId, + p_amount: amount, + }); + + logDebug(logLevel, '[purchase-rc] rpc raw', { + has_error: Boolean(rpcErr), + error: rpcErr ? summarizePostgrestErr(rpcErr) : null, + data_type: rpcData == null ? 'null' : typeof rpcData, + data_is_array: Array.isArray(rpcData), + }); + + if (!rpcErr && rpcData != null && typeof rpcData === 'object' && !Array.isArray(rpcData)) { + const user = rowToAuthUserPublic(rpcData as Record); + logInfo('[purchase-rc] rpc success', { + buyer_id: buyerId, + path: 'purchase_rc', + buyer_rc_after: user.rc, + }); + res.json({ + ok: true, + pack: { id: packId, usd: pack.usd, rc_added: amount }, + user, + }); + return; + } + + if (rpcErr && !isMissingPurchaseRpcError(rpcErr)) { + logInfo('[purchase-rc] rpc failed (not fallback)', summarizePostgrestErr(rpcErr)); + const msg = rpcErr.message ?? ''; + if (msg.includes('insufficient_supply')) { + res.status(409).json({ ok: false, error: 'Insufficient RC in supply account' }); + return; + } + if (msg.includes('buyer_not_found')) { + res.status(404).json({ ok: false, error: 'User not found' }); + return; + } + if (msg.includes('invalid_buyer') || msg.includes('invalid_amount')) { + res.status(400).json({ ok: false, error: 'Invalid purchase' }); + return; + } + res.status(500).json({ ok: false, error: msg }); + return; + } + + if (rpcErr && isMissingPurchaseRpcError(rpcErr)) { + logInfo('[purchase-rc] rpc not available — fallback', { + ...summarizePostgrestErr(rpcErr), + hint: 'Apply schemas/rpc_purchase_rc.sql in Supabase SQL editor', + }); + } else if (!rpcErr && (rpcData == null || typeof rpcData !== 'object')) { + logInfo('[purchase-rc] rpc returned empty or non-object — fallback', { + rpc_data_null: rpcData == null, + typeof_data: typeof rpcData, + }); + } + + /** Fallback when `public.purchase_rc` is not installed — apply `schemas/rpc_purchase_rc.sql` in Supabase. */ + if (buyerId === SYSTEM_ACCOUNT_ID) { + logInfo('[purchase-rc] fallback self-purchase branch', { buyer_id: buyerId, amount }); + const { data: sysRow, error: oneErr } = await supabase + .from('users') + .select('id, username, email, cc, rc, created_at, last_logged_at') + .eq('id', SYSTEM_ACCOUNT_ID) + .single(); + if (oneErr || !sysRow) { + logInfo('[purchase-rc] fallback self: load system user failed', summarizePostgrestErr(oneErr ?? {})); + res.status(404).json({ ok: false, error: 'System account or user not found' }); + return; + } + const sourceRc = Math.round(Number((sysRow as { rc: unknown }).rc ?? 0)); + logDebug(logLevel, '[purchase-rc] fallback self: balances', { + system_rc: sourceRc, + }); + if (sourceRc < amount) { + logInfo('[purchase-rc] reject insufficient supply (fallback self)', { + source_rc: sourceRc, + amount, + }); + res.status(409).json({ ok: false, error: 'Insufficient RC in supply account' }); + return; + } + const { error: txErr } = await supabase.from('transactions').insert({ + from: SYSTEM_ACCOUNT_ID, + to: SYSTEM_ACCOUNT_ID, + amount, + remarks: 'purchase', + }); + if (txErr) { + logInfo('[purchase-rc] fallback self: transaction insert failed', summarizePostgrestErr(txErr)); + res.status(500).json({ ok: false, error: `Purchase logged failed: ${txErr.message}` }); + return; + } + logInfo('[purchase-rc] fallback self success (audit only, rc unchanged)', { + buyer_id: buyerId, + }); + res.json({ + ok: true, + pack: { id: packId, usd: pack.usd, rc_added: amount }, + user: rowToAuthUserPublic(sysRow as Record), + }); + return; + } + + const { data: rows, error: selErr } = await supabase .from('users') - .select('rc') - .eq('id', v.userId) - .maybeSingle(); - if (selErr || row === null) { + .select('id, rc') + .in('id', [buyerId, SYSTEM_ACCOUNT_ID]); + logDebug(logLevel, '[purchase-rc] fallback two-party select', { + error: selErr ? summarizePostgrestErr(selErr) : null, + row_count: rows?.length ?? 0, + ids: rows?.map((r) => ({ id: r.id, rc: r.rc })), + }); + if (selErr || !rows || rows.length < 2) { + logInfo('[purchase-rc] reject not enough user rows', { + row_count: rows?.length ?? 0, + need: 2, + select_error: selErr ? summarizePostgrestErr(selErr) : null, + }); res.status(404).json({ ok: false, error: 'User not found' }); return; } - const newRc = (row.rc ?? 0) + pack.rc; + const supply = rows.find((r) => coerceDbUserId(r.id) === SYSTEM_ACCOUNT_ID); + const target = rows.find((r) => coerceDbUserId(r.id) === buyerId); + if (!supply || !target) { + logInfo('[purchase-rc] reject missing supply or target row after select', { + has_supply: Boolean(supply), + has_target: Boolean(target), + }); + res.status(404).json({ ok: false, error: 'System account or user not found' }); + return; + } + + const sourceRc = Math.round(Number(supply.rc ?? 0)); + const targetRc = Math.round(Number(target.rc ?? 0)); + if (sourceRc < amount) { + logInfo('[purchase-rc] reject insufficient supply (fallback)', { + source_rc: sourceRc, + amount, + }); + res.status(409).json({ ok: false, error: 'Insufficient RC in supply account' }); + return; + } + + const newSourceRc = sourceRc - amount; + const { data: sourceAfter, error: sourceUpErr } = await supabase + .from('users') + .update({ rc: newSourceRc }) + .eq('id', SYSTEM_ACCOUNT_ID) + .select('id, rc') + .single(); + logDebug(logLevel, '[purchase-rc] fallback debit system', { + error: sourceUpErr ? summarizePostgrestErr(sourceUpErr) : null, + intended_rc: newSourceRc, + returned_row: sourceAfter, + }); + if (sourceUpErr || !sourceAfter) { + logInfo('[purchase-rc] debit system account failed', { + error: sourceUpErr ? summarizePostgrestErr(sourceUpErr) : { message: 'no row returned' }, + }); + res.status(500).json({ + ok: false, + error: + sourceUpErr?.message ?? + 'Could not debit supply account (id 1). Check RLS/policies or that this row exists.', + }); + return; + } + + const rcAfterDebit = roundedStoredRc((sourceAfter as { rc: unknown }).rc); + if (rcAfterDebit !== newSourceRc) { + logInfo( + '[purchase-rc] stored rc did not match debit — likely PostgreSQL `real` (float32) cannot represent this delta at the current balance. Apply schemas/alter_users_rc_bigint.sql.', + { + intended_rc: newSourceRc, + stored_rc_rounded: rcAfterDebit, + supply_rc_before: sourceRc, + amount, + } + ); + res.status(500).json({ + ok: false, + error: + 'RC storage type is too coarse for this balance (float32 loses small changes around large balances). Run schemas/alter_users_rc_bigint.sql in Supabase SQL, then retry.', + }); + return; + } + const { data: updated, error: upErr } = await supabase .from('users') - .update({ rc: newRc }) - .eq('id', v.userId) - .select('id, username, cc, rc, created_at, last_logged_at') + .update({ rc: targetRc + amount }) + .eq('id', buyerId) + .select('id, username, email, cc, rc, created_at, last_logged_at') .single(); + logDebug(logLevel, '[purchase-rc] fallback credit buyer', { + error: upErr ? summarizePostgrestErr(upErr) : null, + buyer_id: buyerId, + intended_rc: targetRc + amount, + returned_row_id: updated?.id, + }); + if (upErr || !updated) { + await supabase.from('users').update({ rc: sourceRc }).eq('id', SYSTEM_ACCOUNT_ID); + logInfo('[purchase-rc] credit buyer failed — rolled back system rc', { + buyer_id: buyerId, + error: upErr ? summarizePostgrestErr(upErr) : { message: 'no row returned' }, + }); res.status(500).json({ ok: false, error: upErr?.message ?? 'Failed to update balance' }); return; } - const user: AuthUserPublic = { - id: updated.id, - username: updated.username, - cc: updated.cc, - rc: updated.rc, - created_at: updated.created_at, - last_logged_at: updated.last_logged_at ?? null, - }; + const intendedBuyerRc = targetRc + amount; + const buyerRcStored = roundedStoredRc(updated.rc); + if (buyerRcStored !== intendedBuyerRc) { + await supabase.from('users').update({ rc: sourceRc }).eq('id', SYSTEM_ACCOUNT_ID); + await supabase.from('users').update({ rc: targetRc }).eq('id', buyerId); + logInfo( + '[purchase-rc] credit verification failed — rolled back both users; check users.rc column type (real vs bigint)', + { + buyer_id: buyerId, + intended_buyer_rc: intendedBuyerRc, + stored_buyer_rc: buyerRcStored, + amount, + } + ); + res.status(500).json({ + ok: false, + error: + 'RC balance update did not persist correctly (precision/column type). Run schemas/alter_users_rc_bigint.sql in Supabase, then retry.', + }); + return; + } + + const { error: txErr } = await supabase.from('transactions').insert({ + from: SYSTEM_ACCOUNT_ID, + to: buyerId, + amount, + remarks: 'purchase', + }); + if (txErr) { + logInfo('[purchase-rc] fallback: transaction insert failed after balance updates', summarizePostgrestErr(txErr)); + res.status(500).json({ ok: false, error: `Purchase logged failed: ${txErr.message}` }); + return; + } + + const user = rowToAuthUserPublic(updated as Record); + logInfo('[purchase-rc] fallback success', { + buyer_id: buyerId, + system_rc_after: sourceAfter.rc, + buyer_rc_after: user.rc, + }); res.json({ ok: true, - pack: { id: packId, usd: pack.usd, rc_added: pack.rc }, + pack: { id: packId, usd: pack.usd, rc_added: amount }, user, }); }); diff --git a/games/soccar/soccar_Data/Log.txt b/games/soccar/soccar_Data/Log.txt index 476475b..b6305ea 100644 --- a/games/soccar/soccar_Data/Log.txt +++ b/games/soccar/soccar_Data/Log.txt @@ -1,3 +1,3 @@ -Logger initiated at 05/05/2026 20:00:37 +Logger initiated at 05/31/2026 23:39:08 -[05/05/2026 20:00:37] Configured dedicated match reporting for match id 261 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base https://kickkingsapi.playpoolstudios.com +[05/31/2026 23:39:08] Configured dedicated match reporting for match id 146 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base https://kickkingsapi.playpoolstudios.com diff --git a/games/soccar/soccar_Data/Logs/1.txt b/games/soccar/soccar_Data/Logs/1.txt new file mode 100644 index 0000000..436b23c --- /dev/null +++ b/games/soccar/soccar_Data/Logs/1.txt @@ -0,0 +1,51 @@ +[05/14/2026 12:08:11] Starting server at port 26703 +[05/14/2026 12:08:11] Failed to fetch red and blue names, isServer? +[05/14/2026 12:08:11] Starting auto close watchdog +[05/14/2026 12:08:11] Active player connections: 0 +[05/14/2026 12:08:15] Active player connections: 1 +[05/14/2026 12:08:15] Client 15 set team to Blue +[05/14/2026 12:08:16] Active player connections: 2 +[05/14/2026 12:08:16] Game started On Server +[05/14/2026 12:08:16] Dedicated match PATCH success: 200 {"ok":true,"id":1} +[05/14/2026 12:08:16] Client 16 set team to Red +[05/14/2026 12:08:16] Dedicated match PATCH success: 200 {"ok":true,"id":1} +[05/14/2026 12:08:22] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:08:22] launching puck at (0.07, -5.00) with (-5.07, 348.42) force +[05/14/2026 12:08:25] force = 70 * 0.6672559 = 46.70791 +[05/14/2026 12:08:25] launching puck at (1.15, -2.06) with (-53.77, 96.12) force +[05/14/2026 12:08:33] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:08:33] launching puck at (-4.96, 0.61) with (345.84, -42.62) force +[05/14/2026 12:08:37] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:08:37] launching puck at (0.72, -4.95) with (-50.44, 344.78) force +[05/14/2026 12:08:42] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:08:42] launching puck at (-1.84, -4.65) with (128.58, 323.86) force +[05/14/2026 12:08:46] force = 70 * 0.8905123 = 62.33587 +[05/14/2026 12:08:46] launching puck at (3.80, -0.89) with (-236.69, 55.55) force +[05/14/2026 12:08:51] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:08:51] launching puck at (-2.90, -4.07) with (201.96, 283.96) force +[05/14/2026 12:08:56] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:08:56] launching puck at (1.13, -4.87) with (-78.77, 339.43) force +[05/14/2026 12:09:03] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:09:03] launching puck at (0.07, -5.00) with (-4.69, 348.42) force +[05/14/2026 12:09:16] Client 16 sent emoji emote 5 +[05/14/2026 12:09:18] force = 70 * 0.954338 = 66.80366 +[05/14/2026 12:09:18] launching puck at (4.41, -1.10) with (-294.78, 73.21) force +[05/14/2026 12:09:18] Active player connections: 1 +[05/14/2026 12:09:24] force = 70 * 0.8569616 = 59.98731 +[05/14/2026 12:09:24] launching puck at (3.54, -0.66) with (-212.39, 39.59) force +[05/14/2026 12:09:30] Client 16 sent emoji emote 0 +[05/14/2026 12:09:47] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:09:47] launching puck at (3.76, -3.30) with (-262.00, 229.72) force +[05/14/2026 12:10:10] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:10:10] launching puck at (4.18, 2.75) with (-291.07, -191.57) force +[05/14/2026 12:10:35] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:10:35] launching puck at (1.63, -4.73) with (-113.85, 329.33) force +[05/14/2026 12:10:53] Active player connections: 0 +[05/14/2026 12:10:58] Server will be closed due to no players in, 60 +[05/14/2026 12:11:08] Server will be closed due to no players in, 50 +[05/14/2026 12:11:18] Server will be closed due to no players in, 40 +[05/14/2026 12:11:28] Server will be closed due to no players in, 30 +[05/14/2026 12:11:38] Server will be closed due to no players in, 20 +[05/14/2026 12:11:48] Server will be closed due to no players in, 10 +[05/14/2026 12:11:58] All players left, exiting +[05/14/2026 12:11:59] Dedicated match PATCH success: 200 {"ok":true,"id":1} diff --git a/games/soccar/soccar_Data/Logs/10.txt b/games/soccar/soccar_Data/Logs/10.txt new file mode 100644 index 0000000..7f420f6 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/10.txt @@ -0,0 +1,93 @@ +[05/16/2026 05:35:44] Starting server at port 26495 +[05/16/2026 05:35:44] Failed to fetch red and blue names, isServer? +[05/16/2026 05:35:44] Starting auto close watchdog +[05/16/2026 05:35:44] Active player connections: 0 +[05/16/2026 05:35:47] Active player connections: 1 +[05/16/2026 05:35:48] Client 15 set team to Blue +[05/16/2026 05:35:48] Dedicated match PATCH success: 200 {"ok":true,"id":10} +[05/16/2026 05:35:48] Active player connections: 2 +[05/16/2026 05:35:48] Game started On Server +[05/16/2026 05:35:49] Client 16 set team to Red +[05/16/2026 05:35:49] Dedicated match PATCH success: 200 {"ok":true,"id":10} +[05/16/2026 05:35:53] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:35:53] launching puck at (0.03, -5.00) with (-2.19, 348.45) force +[05/16/2026 05:35:59] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:35:59] launching puck at (1.53, 4.76) with (-106.45, -331.80) force +[05/16/2026 05:36:06] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:36:06] launching puck at (3.94, -3.08) with (-274.62, 214.49) force +[05/16/2026 05:36:12] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:36:12] launching puck at (-0.53, 4.97) with (36.88, -346.50) force +[05/16/2026 05:36:19] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:36:19] launching puck at (-0.16, -5.00) with (11.31, 348.27) force +[05/16/2026 05:36:27] force = 70 * 0.7297345 = 51.08142 +[05/16/2026 05:36:27] launching puck at (-0.94, -2.53) with (48.02, 129.40) force +[05/16/2026 05:36:33] Client 15 sent emoji emote 0 +[05/16/2026 05:36:34] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:36:34] launching puck at (-3.67, -3.40) with (255.69, 236.73) force +[05/16/2026 05:36:42] Client 16 sent emoji emote 0 +[05/16/2026 05:36:42] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:36:42] launching puck at (0.16, -5.00) with (-11.08, 348.28) force +[05/16/2026 05:36:44] Client 16 sent emoji emote 5 +[05/16/2026 05:36:50] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:36:50] launching puck at (3.99, -3.02) with (-277.94, 210.16) force +[05/16/2026 05:37:00] force = 70 * 0.9512691 = 66.58884 +[05/16/2026 05:37:00] launching puck at (4.46, 0.70) with (-296.91, -46.65) force +[05/16/2026 05:37:06] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:37:06] launching puck at (0.31, -4.99) with (-21.83, 347.77) force +[05/16/2026 05:37:06] Red goal scored, red score is now 1 +[05/16/2026 05:37:12] Client 15 sent text emote Nice shot! +[05/16/2026 05:37:15] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:37:15] launching puck at (-0.02, 5.00) with (1.30, -348.45) force +[05/16/2026 05:37:22] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:37:22] launching puck at (-0.65, -4.96) with (45.18, 345.51) force +[05/16/2026 05:37:30] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:37:30] launching puck at (-2.10, -4.54) with (146.42, 316.20) force +[05/16/2026 05:37:37] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:37:37] launching puck at (-0.56, -4.97) with (38.80, 346.29) force +[05/16/2026 05:37:38] Red goal scored, red score is now 2 +[05/16/2026 05:37:44] Client 15 sent emoji emote 3 +[05/16/2026 05:37:46] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:37:46] launching puck at (0.09, 5.00) with (-6.10, -348.40) force +[05/16/2026 05:37:54] force = 70 * 0.9514491 = 66.60144 +[05/16/2026 05:37:54] launching puck at (3.76, 2.50) with (-250.60, -166.27) force +[05/16/2026 05:37:58] Client 16 sent emoji emote 0 +[05/16/2026 05:38:00] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:38:00] launching puck at (-0.19, 5.00) with (13.30, -348.20) force +[05/16/2026 05:38:00] Blue goal scored, blue score is now 1 +[05/16/2026 05:38:04] Client 15 sent emoji emote 5 +[05/16/2026 05:38:06] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:38:06] launching puck at (0.05, -5.00) with (-3.54, 348.44) force +[05/16/2026 05:38:13] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:38:13] launching puck at (0.28, 4.99) with (-19.41, -347.91) force +[05/16/2026 05:38:20] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:38:20] launching puck at (-0.26, -4.99) with (18.19, 347.98) force +[05/16/2026 05:38:28] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:38:28] launching puck at (4.78, 1.46) with (-333.35, -101.48) force +[05/16/2026 05:38:35] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:38:35] launching puck at (0.38, -4.99) with (-26.40, 347.45) force +[05/16/2026 05:38:40] Client 15 sent emoji emote 4 +[05/16/2026 05:38:44] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:38:44] launching puck at (4.97, 0.54) with (-346.41, -37.68) force +[05/16/2026 05:38:51] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:38:51] launching puck at (4.25, -2.64) with (-296.04, 183.80) force +[05/16/2026 05:38:56] Client 15 sent emoji emote 3 +[05/16/2026 05:39:02] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:39:02] launching puck at (5.00, -0.19) with (-348.19, 13.42) force +[05/16/2026 05:39:02] Red goal scored, red score is now 3 +[05/16/2026 05:39:02] Dedicated match PATCH success: 200 {"ok":true,"id":10} +[05/16/2026 05:39:04] Dedicated match winner PATCH success: 200 {"ok":true,"id":10,"winner_id":5,"economy":{"entry_fee_rc":196,"rc_prize":324,"participant_cc":100}} +[05/16/2026 05:39:05] Client 16 sent emoji emote 0 +[05/16/2026 05:39:05] Client 15 sent emoji emote 4 +[05/16/2026 05:39:16] Rematch requested +[05/16/2026 05:39:18] Rematch was confirmed, closing in 5 secs. new room : +[05/16/2026 05:39:18] {"ok":true,"entry_fee":98,"rc_prize":162,"for_red":{"Players":[{"Name":"Jameelcadz13","LastSeen":1778909958806,"l10_wins":2,"l10_losses":1,"UserId":5,"rc":0.0},{"Name":"lance","LastSeen":1778909958806,"l10_wins":1,"l10_losses":2,"UserId":4,"rc":0.0}],"GameName":"soccar","Port":26376,"InitTime":1778909958806,"instance_started":true,"match_id":11,"entry_fee":98,"rc_prize":162,"your_team":"red"},"for_blue":{"Players":[{"Name":"Jameelcadz13","LastSeen":1778909958806,"l10_wins":2,"l10_losses":1,"UserId":5,"rc":0.0},{"Name":"lance","LastSeen":1778909958806,"l10_wins":1,"l10_losses":2,"UserId":4,"rc":0.0}],"GameName":"soccar","Port":26376,"InitTime":1778909958806,"instance_started":true,"match_id":11,"entry_fee":98,"rc_prize":162,"your_team":"blue"},"your_team":""} +[05/16/2026 05:39:18] Active player connections: 1 +[05/16/2026 05:39:19] Active player connections: 0 +[05/16/2026 05:39:24] Server will be closed due to no players in, 60 +[05/16/2026 05:39:34] Server will be closed due to no players in, 50 +[05/16/2026 05:39:44] Server will be closed due to no players in, 40 +[05/16/2026 05:39:54] Server will be closed due to no players in, 30 +[05/16/2026 05:40:04] Server will be closed due to no players in, 20 +[05/16/2026 05:40:14] Server will be closed due to no players in, 10 +[05/16/2026 05:40:24] All players left, exiting +[05/16/2026 05:40:25] Dedicated match PATCH success: 200 {"ok":true,"id":10} diff --git a/games/soccar/soccar_Data/Logs/100.txt b/games/soccar/soccar_Data/Logs/100.txt new file mode 100644 index 0000000..3e05a94 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/100.txt @@ -0,0 +1,230 @@ +[05/24/2026 06:27:43] Starting server at port 26467 +[05/24/2026 06:27:43] Mirror server exception logging enabled +[05/24/2026 06:27:43] Failed to fetch red and blue names, isServer? +[05/24/2026 06:27:43] Starting auto close watchdog +[05/24/2026 06:27:44] Active player connections: 0 +[05/24/2026 06:27:46] Active player connections: 1 +[05/24/2026 06:27:46] Client 15 set team to Red +[05/24/2026 06:27:47] Dedicated match PATCH success: 200 {"ok":true,"id":100} +[05/24/2026 06:27:47] Active player connections: 2 +[05/24/2026 06:27:47] Game started On Server +[05/24/2026 06:27:47] Client 16 set team to Blue +[05/24/2026 06:27:47] Dedicated match PATCH success: 200 {"ok":true,"id":100} +[05/24/2026 06:27:51] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:27:51] launching puck at (-0.13, -5.00) with (8.76, 348.34) force +[05/24/2026 06:28:00] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:28:00] launching puck at (-1.37, 4.81) with (95.37, -335.15) force +[05/24/2026 06:28:10] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:28:10] launching puck at (-4.06, -2.91) with (283.12, 203.14) force +[05/24/2026 06:28:17] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:28:17] launching puck at (-2.02, 4.58) with (140.50, -318.87) force +[05/24/2026 06:28:23] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:28:23] launching puck at (2.44, -4.36) with (-170.02, 304.16) force +[05/24/2026 06:28:28] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:28:28] launching puck at (-3.62, 3.44) with (252.61, -240.01) force +[05/24/2026 06:28:39] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:28:39] launching puck at (-2.22, 4.48) with (154.59, -312.29) force +[05/24/2026 06:28:43] Client 15 sent emoji emote 2 +[05/24/2026 06:28:44] Client 15 sent emoji emote 3 +[05/24/2026 06:28:45] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:28:45] launching puck at (4.38, 2.40) with (-305.52, -167.55) force +[05/24/2026 06:28:45] Client 15 sent emoji emote 4 +[05/24/2026 06:28:47] Client 15 sent emoji emote 4 +[05/24/2026 06:28:52] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:28:52] launching puck at (-5.00, -0.18) with (348.22, 12.68) force +[05/24/2026 06:28:56] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:28:56] launching puck at (3.36, 3.70) with (-234.31, -257.91) force +[05/24/2026 06:28:57] Blue goal scored, blue score is now 1 +[05/24/2026 06:28:59] Client 16 sent emoji emote 2 +[05/24/2026 06:29:00] Client 15 sent text emote Nice shot! +[05/24/2026 06:29:03] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:29:03] launching puck at (-0.47, -4.98) with (33.01, 346.89) force +[05/24/2026 06:29:04] Client 16 sent text emote Thanks! +[05/24/2026 06:29:08] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:29:08] launching puck at (-1.60, 4.74) with (111.44, -330.15) force +[05/24/2026 06:29:15] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:29:15] launching puck at (-2.55, -4.30) with (177.38, 299.93) force +[05/24/2026 06:29:20] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:29:20] launching puck at (-1.94, 4.61) with (135.33, -321.10) force +[05/24/2026 06:29:27] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:29:27] launching puck at (-3.07, -3.95) with (213.65, 275.27) force +[05/24/2026 06:29:31] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:29:31] launching puck at (4.81, -1.37) with (-335.05, 95.70) force +[05/24/2026 06:29:37] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:29:37] launching puck at (4.07, -2.91) with (-283.43, 202.70) force +[05/24/2026 06:29:41] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:29:41] launching puck at (3.85, 3.19) with (-268.16, -222.51) force +[05/24/2026 06:29:45] Client 16 sent emoji emote 3 +[05/24/2026 06:29:47] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:29:47] launching puck at (4.90, -0.97) with (-341.77, 67.94) force +[05/24/2026 06:29:50] Client 15 sent emoji emote 1 +[05/24/2026 06:29:51] Client 15 sent emoji emote 1 +[05/24/2026 06:29:53] Client 15 sent emoji emote 1 +[05/24/2026 06:29:53] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:29:53] launching puck at (-3.89, 3.14) with (270.89, -219.17) force +[05/24/2026 06:29:56] Client 16 sent emoji emote 4 +[05/24/2026 06:29:56] Client 15 sent emoji emote 0 +[05/24/2026 06:29:57] Client 15 sent emoji emote 0 +[05/24/2026 06:30:02] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:30:02] launching puck at (1.53, 4.76) with (-106.64, -331.73) force +[05/24/2026 06:30:10] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:30:10] launching puck at (-4.99, 0.23) with (348.10, -15.79) force +[05/24/2026 06:30:17] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:30:17] launching puck at (3.74, -3.31) with (-260.92, 230.95) force +[05/24/2026 06:30:20] Client 15 sent emoji emote 1 +[05/24/2026 06:30:21] Client 15 sent emoji emote 1 +[05/24/2026 06:30:21] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:30:21] launching puck at (-1.94, 4.61) with (135.54, -321.01) force +[05/24/2026 06:30:22] Blue goal scored, blue score is now 2 +[05/24/2026 06:30:25] Client 16 sent emoji emote 5 +[05/24/2026 06:30:26] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:30:26] launching puck at (-0.23, -4.99) with (16.18, 348.08) force +[05/24/2026 06:30:32] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:30:32] launching puck at (4.42, -2.34) with (-307.89, 163.17) force +[05/24/2026 06:30:37] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:30:37] launching puck at (-4.54, -2.08) with (316.73, 145.27) force +[05/24/2026 06:30:41] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:30:41] launching puck at (-4.81, -1.35) with (335.48, 94.19) force +[05/24/2026 06:30:46] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:30:46] launching puck at (-4.94, 0.79) with (344.09, -55.00) force +[05/24/2026 06:30:50] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:30:50] launching puck at (-4.59, -1.99) with (319.60, 138.84) force +[05/24/2026 06:30:56] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:30:56] launching puck at (-2.50, -4.33) with (174.50, 301.61) force +[05/24/2026 06:31:00] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:31:00] launching puck at (-4.99, -0.23) with (348.07, 16.26) force +[05/24/2026 06:31:06] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:31:06] launching puck at (-0.89, -4.92) with (61.84, 342.92) force +[05/24/2026 06:31:09] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:31:09] launching puck at (-4.90, 0.99) with (341.56, -68.97) force +[05/24/2026 06:31:09] Client 15 sent emoji emote 0 +[05/24/2026 06:31:12] Client 16 sent emoji emote 3 +[05/24/2026 06:31:15] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:31:15] launching puck at (-4.86, -1.19) with (338.39, 83.15) force +[05/24/2026 06:31:19] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:31:19] launching puck at (-3.78, 3.27) with (263.65, -227.83) force +[05/24/2026 06:31:25] Client 16 sent emoji emote 1 +[05/24/2026 06:31:26] force = 70 * 0.9530667 = 66.71467 +[05/24/2026 06:31:26] launching puck at (3.56, -2.80) with (-237.65, 187.02) force +[05/24/2026 06:31:32] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:31:32] launching puck at (-1.11, 4.88) with (77.23, -339.79) force +[05/24/2026 06:31:32] Client 15 sent emoji emote 0 +[05/24/2026 06:31:38] Client 16 sent emoji emote 4 +[05/24/2026 06:31:40] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:31:40] launching puck at (-1.65, -4.72) with (115.08, 328.90) force +[05/24/2026 06:31:42] Client 15 sent emoji emote 4 +[05/24/2026 06:31:44] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:31:44] launching puck at (-0.93, 4.91) with (64.50, -342.43) force +[05/24/2026 06:31:49] Client 16 sent emoji emote 0 +[05/24/2026 06:31:50] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:31:50] launching puck at (-3.59, -3.48) with (249.92, 242.81) force +[05/24/2026 06:31:54] Client 15 sent emoji emote 4 +[05/24/2026 06:31:57] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:31:57] launching puck at (0.13, -5.00) with (-9.29, 348.33) force +[05/24/2026 06:32:01] Client 16 sent emoji emote 1 +[05/24/2026 06:32:02] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:32:02] launching puck at (-0.04, -5.00) with (2.93, 348.44) force +[05/24/2026 06:32:03] Red goal scored, red score is now 1 +[05/24/2026 06:32:05] Client 16 sent text emote Nice shot! +[05/24/2026 06:32:06] Client 15 sent emoji emote 3 +[05/24/2026 06:32:11] Client 15 sent text emote Thanks! +[05/24/2026 06:32:12] force = 70 * 0.5381016 = 37.66711 +[05/24/2026 06:32:12] launching puck at (0.13, -1.73) with (-4.90, 65.12) force +[05/24/2026 06:32:24] Client 16 sent emoji emote 3 +[05/24/2026 06:32:26] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:32:26] launching puck at (-0.54, -4.97) with (37.64, 346.41) force +[05/24/2026 06:32:37] force = 70 * 0.945786 = 66.20502 +[05/24/2026 06:32:37] launching puck at (0.66, 4.41) with (-43.94, -291.65) force +[05/24/2026 06:32:43] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:32:43] launching puck at (1.85, -4.65) with (-128.84, 323.76) force +[05/24/2026 06:32:48] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:32:48] launching puck at (4.74, 1.60) with (-330.06, -111.72) force +[05/24/2026 06:32:53] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:32:53] launching puck at (-0.16, -5.00) with (10.89, 348.28) force +[05/24/2026 06:32:56] Client 15 sent emoji emote 1 +[05/24/2026 06:32:57] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:32:57] launching puck at (2.23, 4.48) with (-155.29, -311.94) force +[05/24/2026 06:33:06] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:33:06] launching puck at (3.33, 3.73) with (-232.34, -259.68) force +[05/24/2026 06:33:10] Client 16 sent text emote Nice shot! +[05/24/2026 06:33:11] Client 16 sent text emote well played +[05/24/2026 06:33:14] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:33:14] launching puck at (0.00, -5.00) with (0.28, 348.45) force +[05/24/2026 06:33:19] Client 15 sent text emote well played +[05/24/2026 06:33:21] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:33:21] launching puck at (1.99, -4.59) with (-138.45, 319.77) force +[05/24/2026 06:33:25] Client 15 sent emoji emote 1 +[05/24/2026 06:33:30] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:33:30] launching puck at (4.77, -1.50) with (-332.41, 104.50) force +[05/24/2026 06:33:37] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:33:37] launching puck at (3.05, -3.96) with (-212.85, 275.89) force +[05/24/2026 06:33:42] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:33:42] launching puck at (3.00, -4.00) with (-209.07, 278.77) force +[05/24/2026 06:33:46] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:33:46] launching puck at (0.62, 4.96) with (-43.23, -345.76) force +[05/24/2026 06:33:53] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:33:53] launching puck at (4.94, -0.77) with (-344.27, 53.83) force +[05/24/2026 06:33:58] force = 70 * 0.777758 = 54.44306 +[05/24/2026 06:33:58] launching puck at (-2.58, 1.54) with (140.35, -84.01) force +[05/24/2026 06:34:04] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:34:04] launching puck at (4.38, -2.41) with (-305.17, 168.20) force +[05/24/2026 06:34:09] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:34:09] launching puck at (2.40, 4.38) with (-167.54, -305.53) force +[05/24/2026 06:34:14] force = 70 * 0.9301659 = 65.11161 +[05/24/2026 06:34:14] launching puck at (4.27, -0.41) with (-278.09, 26.86) force +[05/24/2026 06:34:21] force = 70 * 0.8010711 = 56.07498 +[05/24/2026 06:34:21] launching puck at (-0.07, 3.17) with (3.83, -177.50) force +[05/24/2026 06:34:24] Client 15 sent emoji emote 1 +[05/24/2026 06:34:25] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:34:25] launching puck at (1.16, 4.86) with (-80.84, -338.95) force +[05/24/2026 06:34:30] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:34:30] launching puck at (-1.64, -4.72) with (114.11, 329.24) force +[05/24/2026 06:34:34] Client 15 sent emoji emote 1 +[05/24/2026 06:34:36] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:34:36] launching puck at (-3.04, -3.97) with (211.85, 276.66) force +[05/24/2026 06:34:45] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:34:45] launching puck at (-3.59, -3.48) with (250.29, 242.43) force +[05/24/2026 06:34:50] Client 15 sent emoji emote 1 +[05/24/2026 06:34:51] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:34:51] launching puck at (-1.42, -4.79) with (98.93, 334.11) force +[05/24/2026 06:34:58] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:34:58] launching puck at (-0.75, -4.94) with (52.12, 344.53) force +[05/24/2026 06:35:01] Client 15 sent emoji emote 1 +[05/24/2026 06:35:02] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:35:02] launching puck at (-4.88, -1.10) with (339.98, 76.36) force +[05/24/2026 06:35:08] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:35:08] launching puck at (-0.19, -5.00) with (13.08, 348.21) force +[05/24/2026 06:35:15] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:35:15] launching puck at (-3.51, 3.56) with (244.42, -248.35) force +[05/24/2026 06:35:18] Client 16 sent emoji emote 4 +[05/24/2026 06:35:21] Client 15 sent emoji emote 0 +[05/24/2026 06:35:25] Client 16 sent emoji emote 0 +[05/24/2026 06:35:26] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:35:26] launching puck at (-0.28, 4.99) with (19.63, -347.90) force +[05/24/2026 06:35:29] Client 16 sent text emote What a save! +[05/24/2026 06:35:29] Client 15 sent emoji emote 1 +[05/24/2026 06:35:30] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:35:30] launching puck at (-3.97, 3.04) with (276.69, -211.81) force +[05/24/2026 06:35:35] Client 16 sent emoji emote 4 +[05/24/2026 06:35:35] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:35:35] launching puck at (0.54, 4.97) with (-37.91, -346.39) force +[05/24/2026 06:35:35] Blue goal scored, blue score is now 3 +[05/24/2026 06:35:36] Dedicated match PATCH success: 200 {"ok":true,"id":100} +[05/24/2026 06:35:37] Dedicated match winner PATCH success: 200 {"ok":true,"id":100,"winner_id":3,"economy":{"entry_fee_rc":11,"rc_prize":18,"participant_cc":100}} +[05/24/2026 06:35:38] Client 15 sent emoji emote 1 +[05/24/2026 06:35:38] Client 16 sent emoji emote 0 +[05/24/2026 06:35:43] Rematch requested +[05/24/2026 06:35:45] Rematch was confirmed, closing in 5 secs. new room : +[05/24/2026 06:35:45] {"ok":true,"entry_fee":14,"rc_prize":22,"for_red":{"Players":[{"Name":"peach","LastSeen":1779604545529,"l10_wins":4,"l10_losses":1,"UserId":13,"rc":0.0},{"Name":"warlock2","LastSeen":1779604545529,"l10_wins":3,"l10_losses":6,"UserId":3,"rc":0.0}],"GameName":"soccar","Port":26258,"InitTime":1779604545529,"instance_started":true,"match_id":104,"entry_fee":14,"rc_prize":22,"your_team":"red"},"for_blue":{"Players":[{"Name":"peach","LastSeen":1779604545529,"l10_wins":4,"l10_losses":1,"UserId":13,"rc":0.0},{"Name":"warlock2","LastSeen":1779604545529,"l10_wins":3,"l10_losses":6,"UserId":3,"rc":0.0}],"GameName":"soccar","Port":26258,"InitTime":1779604545529,"instance_started":true,"match_id":104,"entry_fee":14,"rc_prize":22,"your_team":"blue"},"your_team":""} +[05/24/2026 06:35:45] Mirror server: client disconnected (connId=720386550) +[05/24/2026 06:35:45] Active player connections: 1 +[05/24/2026 06:35:45] Mirror server: client disconnected (connId=-1479577868) +[05/24/2026 06:35:45] Active player connections: 0 +[05/24/2026 06:35:50] Server will be closed due to no players in, 60 +[05/24/2026 06:36:00] Server will be closed due to no players in, 50 +[05/24/2026 06:36:10] Server will be closed due to no players in, 40 +[05/24/2026 06:36:20] Server will be closed due to no players in, 30 +[05/24/2026 06:36:30] Server will be closed due to no players in, 20 +[05/24/2026 06:36:40] Server will be closed due to no players in, 10 +[05/24/2026 06:36:50] All players left, exiting +[05/24/2026 06:36:51] Dedicated match PATCH success: 200 {"ok":true,"id":100} diff --git a/games/soccar/soccar_Data/Logs/101.txt b/games/soccar/soccar_Data/Logs/101.txt new file mode 100644 index 0000000..f618eaa --- /dev/null +++ b/games/soccar/soccar_Data/Logs/101.txt @@ -0,0 +1,188 @@ +[05/24/2026 06:28:30] Starting server at port 26976 +[05/24/2026 06:28:30] Mirror server exception logging enabled +[05/24/2026 06:28:30] Failed to fetch red and blue names, isServer? +[05/24/2026 06:28:30] Starting auto close watchdog +[05/24/2026 06:28:30] Active player connections: 0 +[05/24/2026 06:28:32] Active player connections: 1 +[05/24/2026 06:28:33] Client 15 set team to Blue +[05/24/2026 06:28:33] Dedicated match PATCH success: 200 {"ok":true,"id":101} +[05/24/2026 06:28:33] Active player connections: 2 +[05/24/2026 06:28:33] Game started On Server +[05/24/2026 06:28:34] Client 16 set team to Red +[05/24/2026 06:28:34] Dedicated match PATCH success: 200 {"ok":true,"id":101} +[05/24/2026 06:28:36] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:28:36] launching puck at (0.09, -5.00) with (-5.95, 348.40) force +[05/24/2026 06:28:43] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:28:43] launching puck at (0.71, -4.95) with (-49.63, 344.90) force +[05/24/2026 06:28:43] Red goal scored, red score is now 1 +[05/24/2026 06:28:50] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:28:50] launching puck at (2.07, 4.55) with (-144.14, -317.24) force +[05/24/2026 06:28:56] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:28:56] launching puck at (4.38, -2.41) with (-305.15, 168.23) force +[05/24/2026 06:29:02] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:29:02] launching puck at (-2.56, 4.30) with (178.35, -299.35) force +[05/24/2026 06:29:08] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:29:08] launching puck at (-4.98, 0.40) with (347.36, -27.56) force +[05/24/2026 06:29:14] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:29:14] launching puck at (-3.56, 3.51) with (247.93, -244.85) force +[05/24/2026 06:29:19] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:29:19] launching puck at (-2.95, -4.04) with (205.55, 281.37) force +[05/24/2026 06:29:25] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:29:25] launching puck at (-3.90, 3.13) with (271.92, -217.90) force +[05/24/2026 06:29:31] force = 70 * 0.8881725 = 62.17208 +[05/24/2026 06:29:31] launching puck at (3.08, -2.36) with (-191.46, 146.58) force +[05/24/2026 06:29:38] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:29:38] launching puck at (1.76, 4.68) with (-122.38, -326.26) force +[05/24/2026 06:29:43] force = 70 * 0.8473805 = 59.31664 +[05/24/2026 06:29:43] launching puck at (-3.52, 0.16) with (208.68, -9.61) force +[05/24/2026 06:29:49] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:29:49] launching puck at (2.31, 4.43) with (-161.28, -308.88) force +[05/24/2026 06:29:54] force = 70 * 0.6407059 = 44.84941 +[05/24/2026 06:29:54] launching puck at (-1.94, 1.10) with (86.84, -49.22) force +[05/24/2026 06:30:01] force = 70 * 0.9770424 = 68.39297 +[05/24/2026 06:30:01] launching puck at (-4.78, 0.39) with (326.85, -26.75) force +[05/24/2026 06:30:02] Blue goal scored, blue score is now 1 +[05/24/2026 06:30:07] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:30:07] launching puck at (0.04, -5.00) with (-2.71, 348.44) force +[05/24/2026 06:30:17] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:30:17] launching puck at (3.86, 3.18) with (-268.88, -221.64) force +[05/24/2026 06:30:23] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:30:23] launching puck at (-0.78, -4.94) with (54.08, 344.23) force +[05/24/2026 06:30:23] Red goal scored, red score is now 2 +[05/24/2026 06:30:32] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:30:32] launching puck at (-0.94, 4.91) with (65.59, -342.22) force +[05/24/2026 06:30:36] force = 70 * 0.9633812 = 67.43668 +[05/24/2026 06:30:36] launching puck at (1.71, -4.32) with (-115.07, 291.33) force +[05/24/2026 06:30:43] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:30:43] launching puck at (5.00, 0.06) with (-348.43, -4.34) force +[05/24/2026 06:30:48] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:30:48] launching puck at (2.95, -4.04) with (-205.48, 281.42) force +[05/24/2026 06:30:54] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:30:54] launching puck at (4.95, -0.72) with (-344.86, 49.93) force +[05/24/2026 06:31:00] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:31:00] launching puck at (4.49, 2.19) with (-313.21, -152.71) force +[05/24/2026 06:31:06] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:31:06] launching puck at (3.78, 3.27) with (-263.75, -227.72) force +[05/24/2026 06:31:12] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:31:12] launching puck at (3.32, 3.74) with (-231.49, -260.45) force +[05/24/2026 06:31:20] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:31:20] launching puck at (4.45, 2.28) with (-310.25, -158.63) force +[05/24/2026 06:31:28] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:31:28] launching puck at (3.94, -3.08) with (-274.50, 214.64) force +[05/24/2026 06:31:34] force = 70 * 0.9741098 = 68.18768 +[05/24/2026 06:31:34] launching puck at (3.53, 3.20) with (-240.36, -218.38) force +[05/24/2026 06:31:39] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:31:39] launching puck at (-1.20, 4.85) with (83.43, -338.32) force +[05/24/2026 06:31:47] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:31:47] launching puck at (3.13, 3.90) with (-218.28, -271.61) force +[05/24/2026 06:31:55] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:31:55] launching puck at (0.77, 4.94) with (-53.49, -344.32) force +[05/24/2026 06:32:02] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:32:02] launching puck at (1.47, 4.78) with (-102.52, -333.03) force +[05/24/2026 06:32:08] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:32:08] launching puck at (3.91, 3.11) with (-272.75, -216.86) force +[05/24/2026 06:32:13] force = 70 * 0.9862788 = 69.03951 +[05/24/2026 06:32:13] launching puck at (-0.46, 4.88) with (31.89, -336.58) force +[05/24/2026 06:32:13] Blue goal scored, blue score is now 2 +[05/24/2026 06:32:18] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:32:18] launching puck at (0.06, -5.00) with (-3.99, 348.43) force +[05/24/2026 06:32:25] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:32:25] launching puck at (3.18, 3.86) with (-221.54, -268.96) force +[05/24/2026 06:32:31] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:32:31] launching puck at (-2.41, -4.38) with (167.96, 305.30) force +[05/24/2026 06:32:36] force = 70 * 0.9713845 = 67.99692 +[05/24/2026 06:32:36] launching puck at (-4.14, -2.30) with (281.26, 156.36) force +[05/24/2026 06:32:41] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:32:41] launching puck at (-4.96, 0.63) with (345.67, -43.99) force +[05/24/2026 06:32:46] force = 70 * 0.8770625 = 61.39437 +[05/24/2026 06:32:46] launching puck at (-3.74, -0.56) with (229.31, 34.43) force +[05/24/2026 06:32:52] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:32:52] launching puck at (-3.73, -3.33) with (259.68, 232.35) force +[05/24/2026 06:32:59] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:32:59] launching puck at (-0.17, 5.00) with (11.83, -348.25) force +[05/24/2026 06:33:06] force = 70 * 0.7888823 = 55.22176 +[05/24/2026 06:33:06] launching puck at (3.08, 0.07) with (-170.05, -4.14) force +[05/24/2026 06:33:12] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:33:12] launching puck at (1.18, 4.86) with (-82.27, -338.60) force +[05/24/2026 06:33:19] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:33:19] launching puck at (4.68, 1.77) with (-325.87, -123.39) force +[05/24/2026 06:33:24] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:33:24] launching puck at (-0.11, 5.00) with (7.56, -348.37) force +[05/24/2026 06:33:31] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:33:31] launching puck at (1.55, -4.75) with (-108.22, 331.22) force +[05/24/2026 06:33:37] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:33:37] launching puck at (4.82, 1.32) with (-336.06, -92.10) force +[05/24/2026 06:33:45] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:33:45] launching puck at (1.83, 4.65) with (-127.77, -324.18) force +[05/24/2026 06:33:51] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:33:51] launching puck at (0.45, 4.98) with (-31.52, -347.02) force +[05/24/2026 06:33:56] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:33:56] launching puck at (-1.53, -4.76) with (106.65, 331.73) force +[05/24/2026 06:34:02] force = 70 * 0.9281402 = 64.96982 +[05/24/2026 06:34:02] launching puck at (0.97, -4.16) with (-63.04, 270.16) force +[05/24/2026 06:34:08] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:34:08] launching puck at (0.20, -5.00) with (-13.95, 348.17) force +[05/24/2026 06:34:16] force = 70 * 0.8067232 = 56.47062 +[05/24/2026 06:34:16] launching puck at (-3.21, -0.01) with (181.10, 0.29) force +[05/24/2026 06:34:26] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:34:26] launching puck at (-4.13, 2.81) with (288.16, -195.91) force +[05/24/2026 06:34:32] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:34:32] launching puck at (-2.27, 4.46) with (158.19, -310.48) force +[05/24/2026 06:34:37] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:34:37] launching puck at (-1.75, -4.68) with (122.14, 326.35) force +[05/24/2026 06:34:44] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:34:44] launching puck at (-0.89, -4.92) with (61.98, 342.90) force +[05/24/2026 06:34:50] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:34:50] launching puck at (0.62, -4.96) with (-43.25, 345.76) force +[05/24/2026 06:34:56] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:34:56] launching puck at (-4.99, -0.23) with (348.09, 15.94) force +[05/24/2026 06:35:03] force = 70 * 0.8629373 = 60.40561 +[05/24/2026 06:35:03] launching puck at (2.73, 2.42) with (-165.02, -146.46) force +[05/24/2026 06:35:09] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:35:09] launching puck at (1.90, 4.63) with (-132.16, -322.42) force +[05/24/2026 06:35:14] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:35:14] launching puck at (1.93, -4.61) with (-134.52, 321.44) force +[05/24/2026 06:35:18] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:35:18] launching puck at (-0.44, -4.98) with (30.92, 347.08) force +[05/24/2026 06:35:23] force = 70 * 0.5699921 = 39.89944 +[05/24/2026 06:35:23] launching puck at (-0.81, -1.72) with (32.12, 68.44) force +[05/24/2026 06:35:26] force = 70 * 0.7169478 = 50.18634 +[05/24/2026 06:35:26] launching puck at (1.69, 2.01) with (-84.72, -101.04) force +[05/24/2026 06:35:32] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:35:32] launching puck at (4.21, -2.70) with (-293.42, 187.96) force +[05/24/2026 06:35:40] force = 70 * 0.9301128 = 65.10789 +[05/24/2026 06:35:40] launching puck at (4.19, 0.94) with (-272.49, -61.45) force +[05/24/2026 06:35:46] force = 70 * 0.9290237 = 65.03166 +[05/24/2026 06:35:46] launching puck at (3.61, 2.29) with (-234.87, -149.24) force +[05/24/2026 06:35:52] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:35:52] launching puck at (0.00, 5.00) with (-0.28, -348.45) force +[05/24/2026 06:35:58] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:35:58] launching puck at (-0.20, 5.00) with (14.06, -348.17) force +[05/24/2026 06:36:04] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:36:04] launching puck at (-1.20, -4.85) with (83.66, 338.26) force +[05/24/2026 06:36:10] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:36:10] launching puck at (3.75, -3.30) with (-261.57, 230.22) force +[05/24/2026 06:36:15] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:36:15] launching puck at (0.94, 4.91) with (-65.59, -342.22) force +[05/24/2026 06:36:21] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:36:21] launching puck at (-0.07, 5.00) with (5.06, -348.42) force +[05/24/2026 06:36:28] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:36:28] launching puck at (0.86, 4.93) with (-59.80, -343.28) force +[05/24/2026 06:36:28] Blue goal scored, blue score is now 3 +[05/24/2026 06:36:28] Dedicated match PATCH success: 200 {"ok":true,"id":101} +[05/24/2026 06:36:30] Dedicated match winner PATCH success: 200 {"ok":true,"id":101,"winner_id":14,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/24/2026 06:36:35] Rematch requested +[05/24/2026 06:36:38] Rematch was confirmed, closing in 5 secs. new room : +[05/24/2026 06:36:38] {"ok":true,"entry_fee":472,"rc_prize":782,"for_red":{"Players":[{"Name":"Modisi","LastSeen":1779604598805,"l10_wins":3,"l10_losses":3,"UserId":18,"rc":0.0},{"Name":"SebastianMCS","LastSeen":1779604598805,"l10_wins":3,"l10_losses":4,"UserId":14,"rc":0.0}],"GameName":"soccar","Port":26848,"InitTime":1779604598805,"instance_started":true,"match_id":105,"entry_fee":472,"rc_prize":782,"your_team":"red"},"for_blue":{"Players":[{"Name":"Modisi","LastSeen":1779604598805,"l10_wins":3,"l10_losses":3,"UserId":18,"rc":0.0},{"Name":"SebastianMCS","LastSeen":1779604598805,"l10_wins":3,"l10_losses":4,"UserId":14,"rc":0.0}],"GameName":"soccar","Port":26848,"InitTime":1779604598805,"instance_started":true,"match_id":105,"entry_fee":472,"rc_prize":782,"your_team":"blue"},"your_team":""} +[05/24/2026 06:36:39] Mirror server: client disconnected (connId=1761026696) +[05/24/2026 06:36:39] Active player connections: 1 +[05/24/2026 06:36:39] Mirror server: client disconnected (connId=207068051) +[05/24/2026 06:36:39] Active player connections: 0 +[05/24/2026 06:36:44] Server will be closed due to no players in, 60 +[05/24/2026 06:36:54] Server will be closed due to no players in, 50 +[05/24/2026 06:37:04] Server will be closed due to no players in, 40 +[05/24/2026 06:37:14] Server will be closed due to no players in, 30 +[05/24/2026 06:37:24] Server will be closed due to no players in, 20 +[05/24/2026 06:37:34] Server will be closed due to no players in, 10 +[05/24/2026 06:37:44] All players left, exiting +[05/24/2026 06:37:44] Dedicated match PATCH success: 200 {"ok":true,"id":101} diff --git a/games/soccar/soccar_Data/Logs/102.txt b/games/soccar/soccar_Data/Logs/102.txt new file mode 100644 index 0000000..e4f9f89 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/102.txt @@ -0,0 +1,102 @@ +[05/24/2026 06:28:50] Starting server at port 26500 +[05/24/2026 06:28:50] Mirror server exception logging enabled +[05/24/2026 06:28:50] Failed to fetch red and blue names, isServer? +[05/24/2026 06:28:50] Starting auto close watchdog +[05/24/2026 06:28:50] Active player connections: 0 +[05/24/2026 06:28:54] Active player connections: 1 +[05/24/2026 06:28:54] Client 15 set team to Red +[05/24/2026 06:28:55] Dedicated match PATCH success: 200 {"ok":true,"id":102} +[05/24/2026 06:28:55] Active player connections: 2 +[05/24/2026 06:28:55] Game started On Server +[05/24/2026 06:28:56] Client 16 set team to Blue +[05/24/2026 06:28:56] Dedicated match PATCH success: 200 {"ok":true,"id":102} +[05/24/2026 06:28:57] Client 15 sent emoji emote 0 +[05/24/2026 06:28:58] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:28:58] launching puck at (0.05, -5.00) with (-3.64, 348.43) force +[05/24/2026 06:29:04] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:29:04] launching puck at (2.52, 4.32) with (-175.53, -301.01) force +[05/24/2026 06:29:12] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:29:12] launching puck at (1.91, -4.62) with (-132.83, 322.14) force +[05/24/2026 06:29:18] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:29:18] launching puck at (4.70, 1.71) with (-327.47, -119.09) force +[05/24/2026 06:29:24] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:29:24] launching puck at (1.88, -4.63) with (-130.69, 323.02) force +[05/24/2026 06:29:29] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:29:29] launching puck at (-4.33, -2.49) with (302.01, 173.81) force +[05/24/2026 06:29:29] Red goal scored, red score is now 1 +[05/24/2026 06:29:32] Client 16 sent emoji emote 0 +[05/24/2026 06:29:36] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:29:36] launching puck at (0.10, 5.00) with (-7.16, -348.38) force +[05/24/2026 06:29:41] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:29:41] launching puck at (1.08, -4.88) with (-74.97, 340.29) force +[05/24/2026 06:29:47] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:29:47] launching puck at (3.31, 3.74) with (-231.02, -260.86) force +[05/24/2026 06:29:48] Blue goal scored, blue score is now 1 +[05/24/2026 06:29:59] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:29:59] launching puck at (-0.01, -5.00) with (0.87, 348.45) force +[05/24/2026 06:30:06] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:30:06] launching puck at (-2.27, 4.46) with (157.87, -310.64) force +[05/24/2026 06:30:13] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:30:13] launching puck at (-0.95, -4.91) with (66.10, 342.13) force +[05/24/2026 06:30:20] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:30:20] launching puck at (0.81, -4.93) with (-56.57, 343.83) force +[05/24/2026 06:30:29] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:30:29] launching puck at (1.40, -4.80) with (-97.38, 334.57) force +[05/24/2026 06:30:36] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:30:36] launching puck at (0.06, -5.00) with (-4.50, 348.42) force +[05/24/2026 06:30:44] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:30:44] launching puck at (0.55, -4.97) with (-38.41, 346.33) force +[05/24/2026 06:30:47] Client 15 sent emoji emote 4 +[05/24/2026 06:30:49] Client 15 sent text emote well played +[05/24/2026 06:30:50] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:30:50] launching puck at (-2.24, -4.47) with (156.20, 311.48) force +[05/24/2026 06:30:54] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:30:54] launching puck at (2.02, -4.58) with (-140.58, 318.84) force +[05/24/2026 06:30:55] Red goal scored, red score is now 2 +[05/24/2026 06:31:01] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:31:01] launching puck at (-0.01, 5.00) with (0.86, -348.45) force +[05/24/2026 06:31:09] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:31:09] launching puck at (2.84, 4.12) with (-197.83, -286.85) force +[05/24/2026 06:31:16] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:31:16] launching puck at (1.75, 4.68) with (-122.20, -326.32) force +[05/24/2026 06:31:20] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:31:20] launching puck at (4.52, -2.14) with (-314.98, 149.03) force +[05/24/2026 06:31:26] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:31:26] launching puck at (3.98, 3.03) with (-277.38, -210.90) force +[05/24/2026 06:31:30] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:31:30] launching puck at (1.26, -4.84) with (-87.80, 337.21) force +[05/24/2026 06:31:36] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:31:36] launching puck at (0.16, 5.00) with (-11.30, -348.27) force +[05/24/2026 06:31:42] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:31:42] launching puck at (-4.62, -1.91) with (322.10, 132.93) force +[05/24/2026 06:31:49] force = 70 * 0.9697531 = 67.88271 +[05/24/2026 06:31:49] launching puck at (-4.65, -0.75) with (315.99, 50.78) force +[05/24/2026 06:31:54] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:31:54] launching puck at (0.06, -5.00) with (-4.51, 348.42) force +[05/24/2026 06:31:59] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:31:59] launching puck at (-4.17, 2.76) with (290.43, -192.53) force +[05/24/2026 06:32:05] force = 70 * 0.8933749 = 62.53624 +[05/24/2026 06:32:05] launching puck at (-3.92, -0.21) with (245.24, 12.98) force +[05/24/2026 06:32:12] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:32:12] launching puck at (-0.25, -4.99) with (17.46, 348.02) force +[05/24/2026 06:32:18] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:32:18] launching puck at (2.04, -4.56) with (-142.49, 317.99) force +[05/24/2026 06:32:19] Red goal scored, red score is now 3 +[05/24/2026 06:32:19] Dedicated match PATCH success: 200 {"ok":true,"id":102} +[05/24/2026 06:32:20] Dedicated match winner PATCH success: 200 {"ok":true,"id":102,"winner_id":17,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/24/2026 06:32:21] Client 16 sent emoji emote 0 +[05/24/2026 06:32:32] Rematch requested +[05/24/2026 06:32:38] Rematch was confirmed, closing in 5 secs. new room : +[05/24/2026 06:32:38] {"ok":true,"entry_fee":379,"rc_prize":628,"for_red":{"Players":[{"Name":"Choel","LastSeen":1779604358557,"l10_wins":4,"l10_losses":2,"UserId":17,"rc":0.0},{"Name":"anne123","LastSeen":1779604358557,"l10_wins":2,"l10_losses":5,"UserId":15,"rc":0.0}],"GameName":"soccar","Port":26074,"InitTime":1779604358557,"instance_started":true,"match_id":103,"entry_fee":379,"rc_prize":628,"your_team":"red"},"for_blue":{"Players":[{"Name":"Choel","LastSeen":1779604358557,"l10_wins":4,"l10_losses":2,"UserId":17,"rc":0.0},{"Name":"anne123","LastSeen":1779604358557,"l10_wins":2,"l10_losses":5,"UserId":15,"rc":0.0}],"GameName":"soccar","Port":26074,"InitTime":1779604358557,"instance_started":true,"match_id":103,"entry_fee":379,"rc_prize":628,"your_team":"blue"},"your_team":""} +[05/24/2026 06:32:38] Mirror server: client disconnected (connId=2006082888) +[05/24/2026 06:32:38] Active player connections: 1 +[05/24/2026 06:32:38] Mirror server: client disconnected (connId=224790811) +[05/24/2026 06:32:38] Active player connections: 0 +[05/24/2026 06:32:43] Server will be closed due to no players in, 60 +[05/24/2026 06:32:53] Server will be closed due to no players in, 50 +[05/24/2026 06:33:03] Server will be closed due to no players in, 40 +[05/24/2026 06:33:13] Server will be closed due to no players in, 30 +[05/24/2026 06:33:23] Server will be closed due to no players in, 20 +[05/24/2026 06:33:33] Server will be closed due to no players in, 10 +[05/24/2026 06:33:43] All players left, exiting +[05/24/2026 06:33:44] Dedicated match PATCH success: 200 {"ok":true,"id":102} diff --git a/games/soccar/soccar_Data/Logs/103.txt b/games/soccar/soccar_Data/Logs/103.txt new file mode 100644 index 0000000..7268861 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/103.txt @@ -0,0 +1,141 @@ +[05/24/2026 06:32:40] Starting server at port 26074 +[05/24/2026 06:32:40] Mirror server exception logging enabled +[05/24/2026 06:32:40] Failed to fetch red and blue names, isServer? +[05/24/2026 06:32:40] Starting auto close watchdog +[05/24/2026 06:32:40] Active player connections: 0 +[05/24/2026 06:32:43] Active player connections: 1 +[05/24/2026 06:32:43] Active player connections: 2 +[05/24/2026 06:32:43] Game started On Server +[05/24/2026 06:32:43] Client 15 set team to Blue +[05/24/2026 06:32:43] Client 16 set team to Red +[05/24/2026 06:32:43] Dedicated match PATCH success: 200 {"ok":true,"id":103} +[05/24/2026 06:32:44] Dedicated match PATCH success: 200 {"ok":true,"id":103} +[05/24/2026 06:32:45] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:32:45] launching puck at (0.11, -5.00) with (-7.72, 348.37) force +[05/24/2026 06:32:50] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:32:50] launching puck at (1.72, 4.70) with (-119.57, -327.30) force +[05/24/2026 06:32:54] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:32:54] launching puck at (-0.61, -4.96) with (42.45, 345.86) force +[05/24/2026 06:32:55] Red goal scored, red score is now 1 +[05/24/2026 06:32:58] Client 15 sent emoji emote 5 +[05/24/2026 06:33:02] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:33:02] launching puck at (0.07, 5.00) with (-4.69, -348.42) force +[05/24/2026 06:33:08] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:33:08] launching puck at (1.53, -4.76) with (-106.82, 331.68) force +[05/24/2026 06:33:14] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:33:14] launching puck at (0.85, 4.93) with (-59.24, -343.38) force +[05/24/2026 06:33:19] force = 70 * 0.990294 = 69.32058 +[05/24/2026 06:33:19] launching puck at (-4.70, -1.51) with (326.12, 104.80) force +[05/24/2026 06:33:26] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:33:26] launching puck at (0.34, 4.99) with (-23.73, -347.64) force +[05/24/2026 06:33:32] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:33:32] launching puck at (-3.84, 3.20) with (267.51, -223.29) force +[05/24/2026 06:33:39] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:33:39] launching puck at (-2.73, 4.19) with (190.53, -291.75) force +[05/24/2026 06:33:43] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:33:43] launching puck at (-5.00, -0.20) with (348.17, 14.12) force +[05/24/2026 06:33:49] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:33:49] launching puck at (-4.75, 1.57) with (330.84, -109.38) force +[05/24/2026 06:33:55] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:33:55] launching puck at (1.76, -4.68) with (-122.53, 326.20) force +[05/24/2026 06:33:55] Red goal scored, red score is now 2 +[05/24/2026 06:33:59] Client 15 sent emoji emote 1 +[05/24/2026 06:34:01] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:34:01] launching puck at (0.12, 5.00) with (-8.57, -348.35) force +[05/24/2026 06:34:02] Client 16 sent emoji emote 5 +[05/24/2026 06:34:06] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:34:06] launching puck at (1.31, -4.82) with (-91.40, 336.25) force +[05/24/2026 06:34:14] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:34:14] launching puck at (-1.90, 4.62) with (132.62, -322.23) force +[05/24/2026 06:34:17] Client 15 sent emoji emote 4 +[05/24/2026 06:34:21] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:34:21] launching puck at (4.93, -0.81) with (-343.80, 56.75) force +[05/24/2026 06:34:27] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:34:27] launching puck at (2.83, 4.13) with (-196.92, -287.47) force +[05/24/2026 06:34:31] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:34:31] launching puck at (4.97, -0.57) with (-346.15, 40.03) force +[05/24/2026 06:34:32] Client 15 sent emoji emote 0 +[05/24/2026 06:34:35] Client 16 sent emoji emote 0 +[05/24/2026 06:34:37] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:34:37] launching puck at (3.49, 3.58) with (-242.97, -249.77) force +[05/24/2026 06:34:41] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:34:41] launching puck at (1.92, -4.62) with (-133.79, 321.74) force +[05/24/2026 06:34:46] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:34:46] launching puck at (4.95, -0.71) with (-344.88, 49.78) force +[05/24/2026 06:34:51] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:34:51] launching puck at (3.75, -3.30) with (-261.60, 230.18) force +[05/24/2026 06:34:56] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:34:56] launching puck at (-2.52, 4.32) with (175.67, -300.93) force +[05/24/2026 06:34:57] Blue goal scored, blue score is now 1 +[05/24/2026 06:34:59] Client 16 sent text emote Nice shot! +[05/24/2026 06:35:00] Client 15 sent emoji emote 0 +[05/24/2026 06:35:01] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:35:01] launching puck at (0.27, -4.99) with (-19.16, 347.93) force +[05/24/2026 06:35:07] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:35:07] launching puck at (-3.46, 3.61) with (241.30, -251.39) force +[05/24/2026 06:35:11] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:35:11] launching puck at (1.85, -4.65) with (-128.61, 323.85) force +[05/24/2026 06:35:18] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:35:18] launching puck at (-3.34, 3.72) with (232.75, -259.32) force +[05/24/2026 06:35:23] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:35:23] launching puck at (-4.92, -0.88) with (343.02, 61.31) force +[05/24/2026 06:35:29] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:35:29] launching puck at (2.76, 4.17) with (-192.09, -290.72) force +[05/24/2026 06:35:38] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:35:38] launching puck at (-4.45, -2.28) with (310.29, 158.56) force +[05/24/2026 06:35:45] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:35:45] launching puck at (-1.14, -4.87) with (79.63, 339.23) force +[05/24/2026 06:35:56] force = 70 * 0.8960762 = 62.72533 +[05/24/2026 06:35:56] launching puck at (-3.93, -0.46) with (246.28, 28.55) force +[05/24/2026 06:36:02] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:36:02] launching puck at (2.93, 4.05) with (-204.46, -282.16) force +[05/24/2026 06:36:06] Client 15 sent emoji emote 0 +[05/24/2026 06:36:07] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:36:07] launching puck at (4.29, 2.57) with (-298.82, -179.23) force +[05/24/2026 06:36:13] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:36:13] launching puck at (3.40, 3.66) with (-237.23, -255.23) force +[05/24/2026 06:36:17] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:36:17] launching puck at (0.02, 5.00) with (-1.25, -348.45) force +[05/24/2026 06:36:17] Blue goal scored, blue score is now 2 +[05/24/2026 06:36:20] Client 15 sent emoji emote 0 +[05/24/2026 06:36:21] Client 16 sent emoji emote 4 +[05/24/2026 06:36:23] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:36:23] launching puck at (0.09, -5.00) with (-6.62, 348.39) force +[05/24/2026 06:36:25] Client 16 sent emoji emote 0 +[05/24/2026 06:36:28] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:36:28] launching puck at (-2.58, 4.28) with (180.12, -298.29) force +[05/24/2026 06:36:33] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:36:33] launching puck at (-2.22, -4.48) with (155.06, 312.05) force +[05/24/2026 06:36:40] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:36:40] launching puck at (-3.46, -3.61) with (240.81, 251.86) force +[05/24/2026 06:36:47] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:36:47] launching puck at (-0.77, -4.94) with (53.68, 344.29) force +[05/24/2026 06:36:54] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:36:54] launching puck at (-0.75, 4.94) with (52.04, -344.54) force +[05/24/2026 06:37:00] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:37:00] launching puck at (-3.48, -3.59) with (242.54, 250.19) force +[05/24/2026 06:37:06] force = 70 * 0.925437 = 64.78059 +[05/24/2026 06:37:06] launching puck at (3.57, 2.29) with (-231.15, -148.64) force +[05/24/2026 06:37:12] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:37:12] launching puck at (-0.14, 5.00) with (9.79, -348.32) force +[05/24/2026 06:37:12] Blue goal scored, blue score is now 3 +[05/24/2026 06:37:13] Dedicated match PATCH success: 200 {"ok":true,"id":103} +[05/24/2026 06:37:14] Dedicated match winner PATCH success: 200 {"ok":true,"id":103,"winner_id":15,"economy":{"entry_fee_rc":379,"rc_prize":628,"participant_cc":100}} +[05/24/2026 06:37:14] Client 16 sent emoji emote 4 +[05/24/2026 06:37:16] Client 16 sent text emote GG +[05/24/2026 06:37:16] Client 15 sent emoji emote 0 +[05/24/2026 06:37:26] Rematch requested +[05/24/2026 06:37:34] Rematch was confirmed, closing in 5 secs. new room : +[05/24/2026 06:37:34] {"ok":true,"entry_fee":393,"rc_prize":652,"for_red":{"Players":[{"Name":"Choel","LastSeen":1779604654461,"l10_wins":4,"l10_losses":3,"UserId":17,"rc":0.0},{"Name":"anne123","LastSeen":1779604654461,"l10_wins":3,"l10_losses":5,"UserId":15,"rc":0.0}],"GameName":"soccar","Port":26911,"InitTime":1779604654461,"instance_started":true,"match_id":106,"entry_fee":393,"rc_prize":652,"your_team":"red"},"for_blue":{"Players":[{"Name":"Choel","LastSeen":1779604654461,"l10_wins":4,"l10_losses":3,"UserId":17,"rc":0.0},{"Name":"anne123","LastSeen":1779604654461,"l10_wins":3,"l10_losses":5,"UserId":15,"rc":0.0}],"GameName":"soccar","Port":26911,"InitTime":1779604654461,"instance_started":true,"match_id":106,"entry_fee":393,"rc_prize":652,"your_team":"blue"},"your_team":""} +[05/24/2026 06:37:34] Mirror server: client disconnected (connId=224827544) +[05/24/2026 06:37:34] Active player connections: 1 +[05/24/2026 06:37:34] Mirror server: client disconnected (connId=2006058809) +[05/24/2026 06:37:34] Active player connections: 0 +[05/24/2026 06:37:39] Server will be closed due to no players in, 60 +[05/24/2026 06:37:49] Server will be closed due to no players in, 50 +[05/24/2026 06:37:59] Server will be closed due to no players in, 40 +[05/24/2026 06:38:09] Server will be closed due to no players in, 30 +[05/24/2026 06:38:19] Server will be closed due to no players in, 20 +[05/24/2026 06:38:29] Server will be closed due to no players in, 10 +[05/24/2026 06:38:39] All players left, exiting +[05/24/2026 06:38:40] Dedicated match PATCH success: 200 {"ok":true,"id":103} diff --git a/games/soccar/soccar_Data/Logs/104.txt b/games/soccar/soccar_Data/Logs/104.txt new file mode 100644 index 0000000..37dcb37 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/104.txt @@ -0,0 +1,49 @@ +[05/24/2026 06:35:47] Starting server at port 26258 +[05/24/2026 06:35:47] Mirror server exception logging enabled +[05/24/2026 06:35:47] Failed to fetch red and blue names, isServer? +[05/24/2026 06:35:47] Starting auto close watchdog +[05/24/2026 06:35:47] Active player connections: 0 +[05/24/2026 06:35:49] Active player connections: 1 +[05/24/2026 06:35:49] Client 15 set team to Red +[05/24/2026 06:35:50] Dedicated match PATCH success: 200 {"ok":true,"id":104} +[05/24/2026 06:35:50] Active player connections: 2 +[05/24/2026 06:35:50] Game started On Server +[05/24/2026 06:35:50] Client 16 set team to Blue +[05/24/2026 06:35:50] Dedicated match PATCH success: 200 {"ok":true,"id":104} +[05/24/2026 06:35:58] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:35:58] launching puck at (-1.35, -4.81) with (94.31, 335.45) force +[05/24/2026 06:36:07] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:36:07] launching puck at (3.18, 3.86) with (-221.55, -268.95) force +[05/24/2026 06:36:11] Mirror server: client disconnected (connId=-1479579442) +[05/24/2026 06:36:11] Active player connections: 1 +[05/24/2026 06:36:36] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:36:36] launching puck at (2.13, 4.52) with (-148.43, -315.26) force +[05/24/2026 06:37:00] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:37:00] launching puck at (0.37, 4.99) with (-25.68, -347.51) force +[05/24/2026 06:37:01] Blue goal scored, blue score is now 1 +[05/24/2026 06:37:03] Client 16 sent emoji emote 3 +[05/24/2026 06:37:20] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:37:20] launching puck at (-0.07, 5.00) with (4.60, -348.42) force +[05/24/2026 06:38:13] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:38:13] launching puck at (0.41, 4.98) with (-28.42, -347.29) force +[05/24/2026 06:38:31] Client 16 sent emoji emote 0 +[05/24/2026 06:38:32] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:38:32] launching puck at (3.48, 3.59) with (-242.86, -249.88) force +[05/24/2026 06:38:32] Blue goal scored, blue score is now 2 +[05/24/2026 06:38:55] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:38:55] launching puck at (0.19, 5.00) with (-13.52, -348.19) force +[05/24/2026 06:39:58] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:39:58] launching puck at (0.20, 5.00) with (-13.99, -348.17) force +[05/24/2026 06:39:58] Blue goal scored, blue score is now 3 +[05/24/2026 06:39:59] Dedicated match PATCH success: 200 {"ok":true,"id":104} +[05/24/2026 06:40:01] Dedicated match winner PATCH success: 200 {"ok":true,"id":104,"winner_id":3,"economy":{"entry_fee_rc":14,"rc_prize":22,"participant_cc":100}} +[05/24/2026 06:40:21] Mirror server: client disconnected (connId=720379380) +[05/24/2026 06:40:21] Active player connections: 0 +[05/24/2026 06:40:26] Server will be closed due to no players in, 60 +[05/24/2026 06:40:36] Server will be closed due to no players in, 50 +[05/24/2026 06:40:46] Server will be closed due to no players in, 40 +[05/24/2026 06:40:56] Server will be closed due to no players in, 30 +[05/24/2026 06:41:06] Server will be closed due to no players in, 20 +[05/24/2026 06:41:16] Server will be closed due to no players in, 10 +[05/24/2026 06:41:26] All players left, exiting +[05/24/2026 06:41:26] Dedicated match PATCH success: 200 {"ok":true,"id":104} diff --git a/games/soccar/soccar_Data/Logs/105.txt b/games/soccar/soccar_Data/Logs/105.txt new file mode 100644 index 0000000..9b01f73 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/105.txt @@ -0,0 +1,75 @@ +[05/24/2026 06:36:40] Starting server at port 26848 +[05/24/2026 06:36:40] Mirror server exception logging enabled +[05/24/2026 06:36:40] Failed to fetch red and blue names, isServer? +[05/24/2026 06:36:40] Starting auto close watchdog +[05/24/2026 06:36:40] Active player connections: 0 +[05/24/2026 06:36:43] Active player connections: 1 +[05/24/2026 06:36:43] Active player connections: 2 +[05/24/2026 06:36:43] Game started On Server +[05/24/2026 06:36:44] Client 15 set team to Blue +[05/24/2026 06:36:44] Client 16 set team to Red +[05/24/2026 06:36:44] Dedicated match PATCH success: 200 {"ok":true,"id":105} +[05/24/2026 06:36:44] Dedicated match PATCH success: 200 {"ok":true,"id":105} +[05/24/2026 06:36:49] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:36:49] launching puck at (0.13, -5.00) with (-9.08, 348.33) force +[05/24/2026 06:36:54] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:36:54] launching puck at (-4.20, 2.71) with (292.68, -189.09) force +[05/24/2026 06:37:00] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:37:00] launching puck at (-2.02, -4.58) with (140.50, 318.87) force +[05/24/2026 06:37:06] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:37:06] launching puck at (-0.32, 4.99) with (22.55, -347.72) force +[05/24/2026 06:37:11] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:37:11] launching puck at (0.32, -4.99) with (-21.99, 347.76) force +[05/24/2026 06:37:11] Red goal scored, red score is now 1 +[05/24/2026 06:37:20] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:37:20] launching puck at (-1.57, 4.75) with (109.23, -330.89) force +[05/24/2026 06:37:25] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:37:25] launching puck at (-2.52, -4.32) with (175.49, 301.04) force +[05/24/2026 06:37:32] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:37:32] launching puck at (-1.09, 4.88) with (76.00, -340.06) force +[05/24/2026 06:37:38] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:37:38] launching puck at (-3.94, -3.08) with (274.67, 214.43) force +[05/24/2026 06:37:44] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:37:44] launching puck at (-2.59, 4.28) with (180.24, -298.22) force +[05/24/2026 06:37:45] Blue goal scored, blue score is now 1 +[05/24/2026 06:37:53] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:37:53] launching puck at (0.04, -5.00) with (-2.91, 348.44) force +[05/24/2026 06:38:01] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:38:01] launching puck at (3.66, 3.41) with (-255.00, -237.47) force +[05/24/2026 06:38:06] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:38:06] launching puck at (-1.44, -4.79) with (100.05, 333.78) force +[05/24/2026 06:38:07] Red goal scored, red score is now 2 +[05/24/2026 06:38:17] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:38:17] launching puck at (1.83, 4.65) with (-127.88, -324.14) force +[05/24/2026 06:38:22] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:38:22] launching puck at (1.11, -4.88) with (-77.22, 339.79) force +[05/24/2026 06:38:28] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:38:28] launching puck at (3.14, 3.89) with (-219.04, -271.00) force +[05/24/2026 06:38:34] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:38:34] launching puck at (2.34, -4.42) with (-162.73, 308.12) force +[05/24/2026 06:38:41] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:38:41] launching puck at (5.00, -0.04) with (-348.44, 2.73) force +[05/24/2026 06:38:45] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:38:45] launching puck at (0.45, -4.98) with (-31.67, 347.01) force +[05/24/2026 06:38:51] force = 70 * 0.9859076 = 69.01353 +[05/24/2026 06:38:51] launching puck at (0.13, -4.89) with (-8.99, 337.56) force +[05/24/2026 06:38:57] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:38:57] launching puck at (-1.87, -4.64) with (130.59, 323.06) force +[05/24/2026 06:38:57] Red goal scored, red score is now 3 +[05/24/2026 06:38:57] Dedicated match PATCH success: 200 {"ok":true,"id":105} +[05/24/2026 06:38:59] Dedicated match winner PATCH success: 200 {"ok":true,"id":105,"winner_id":18,"economy":{"entry_fee_rc":472,"rc_prize":782,"participant_cc":100}} +[05/24/2026 06:39:09] Rematch requested +[05/24/2026 06:39:20] Rematch was confirmed, closing in 5 secs. new room : +[05/24/2026 06:39:20] {"ok":true,"entry_fee":404,"rc_prize":670,"for_red":{"Players":[{"Name":"Modisi","LastSeen":1779604760527,"l10_wins":4,"l10_losses":3,"UserId":18,"rc":0.0},{"Name":"SebastianMCS","LastSeen":1779604760527,"l10_wins":3,"l10_losses":5,"UserId":14,"rc":0.0}],"GameName":"soccar","Port":26416,"InitTime":1779604760527,"instance_started":true,"match_id":108,"entry_fee":404,"rc_prize":670,"your_team":"red"},"for_blue":{"Players":[{"Name":"Modisi","LastSeen":1779604760527,"l10_wins":4,"l10_losses":3,"UserId":18,"rc":0.0},{"Name":"SebastianMCS","LastSeen":1779604760527,"l10_wins":3,"l10_losses":5,"UserId":14,"rc":0.0}],"GameName":"soccar","Port":26416,"InitTime":1779604760527,"instance_started":true,"match_id":108,"entry_fee":404,"rc_prize":670,"your_team":"blue"},"your_team":""} +[05/24/2026 06:39:20] Mirror server: client disconnected (connId=1761020071) +[05/24/2026 06:39:20] Active player connections: 1 +[05/24/2026 06:39:20] Mirror server: client disconnected (connId=207068038) +[05/24/2026 06:39:20] Active player connections: 0 +[05/24/2026 06:39:25] Server will be closed due to no players in, 60 +[05/24/2026 06:39:35] Server will be closed due to no players in, 50 +[05/24/2026 06:39:45] Server will be closed due to no players in, 40 +[05/24/2026 06:39:55] Server will be closed due to no players in, 30 +[05/24/2026 06:40:05] Server will be closed due to no players in, 20 +[05/24/2026 06:40:15] Server will be closed due to no players in, 10 +[05/24/2026 06:40:25] All players left, exiting +[05/24/2026 06:40:26] Dedicated match PATCH success: 200 {"ok":true,"id":105} diff --git a/games/soccar/soccar_Data/Logs/106.txt b/games/soccar/soccar_Data/Logs/106.txt new file mode 100644 index 0000000..fe1f5d0 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/106.txt @@ -0,0 +1,89 @@ +[05/24/2026 06:37:35] Starting server at port 26911 +[05/24/2026 06:37:36] Mirror server exception logging enabled +[05/24/2026 06:37:36] Failed to fetch red and blue names, isServer? +[05/24/2026 06:37:36] Starting auto close watchdog +[05/24/2026 06:37:36] Active player connections: 0 +[05/24/2026 06:37:39] Active player connections: 1 +[05/24/2026 06:37:39] Client 15 set team to Red +[05/24/2026 06:37:40] Dedicated match PATCH success: 200 {"ok":true,"id":106} +[05/24/2026 06:37:40] Active player connections: 2 +[05/24/2026 06:37:40] Game started On Server +[05/24/2026 06:37:40] Client 16 set team to Blue +[05/24/2026 06:37:41] Dedicated match PATCH success: 200 {"ok":true,"id":106} +[05/24/2026 06:37:41] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:37:41] launching puck at (0.23, -4.99) with (-15.88, 348.09) force +[05/24/2026 06:37:46] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:37:46] launching puck at (-3.44, 3.63) with (239.56, -253.05) force +[05/24/2026 06:37:51] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:37:51] launching puck at (1.30, -4.83) with (-90.65, 336.45) force +[05/24/2026 06:37:55] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:37:55] launching puck at (-2.28, 4.45) with (158.88, -310.12) force +[05/24/2026 06:38:00] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:38:00] launching puck at (-2.20, -4.49) with (153.12, 313.01) force +[05/24/2026 06:38:06] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:38:06] launching puck at (2.13, 4.52) with (-148.73, -315.12) force +[05/24/2026 06:38:15] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:38:15] launching puck at (2.54, 4.31) with (-177.09, -300.10) force +[05/24/2026 06:38:19] Client 15 sent emoji emote 2 +[05/24/2026 06:38:23] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:38:23] launching puck at (3.27, 3.78) with (-228.05, -263.46) force +[05/24/2026 06:38:30] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:38:30] launching puck at (-0.15, 5.00) with (10.58, -348.29) force +[05/24/2026 06:38:36] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:38:36] launching puck at (3.90, 3.13) with (-271.46, -218.47) force +[05/24/2026 06:38:40] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:38:40] launching puck at (4.17, 2.76) with (-290.65, -192.21) force +[05/24/2026 06:38:40] Client 16 sent emoji emote 0 +[05/24/2026 06:38:44] Client 15 sent text emote WOW +[05/24/2026 06:38:46] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:38:46] launching puck at (-3.17, 3.86) with (221.25, -269.20) force +[05/24/2026 06:38:46] Blue goal scored, blue score is now 1 +[05/24/2026 06:38:48] Client 15 sent text emote Nice shot! +[05/24/2026 06:38:50] Client 15 sent text emote well played +[05/24/2026 06:38:51] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:38:51] launching puck at (0.05, -5.00) with (-3.22, 348.44) force +[05/24/2026 06:38:56] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:38:56] launching puck at (1.75, 4.68) with (-121.80, -326.47) force +[05/24/2026 06:38:58] Blue goal scored, blue score is now 2 +[05/24/2026 06:39:00] Client 16 sent emoji emote 0 +[05/24/2026 06:39:00] Client 15 sent text emote Nice shot! +[05/24/2026 06:39:03] Client 15 sent text emote WOW +[05/24/2026 06:39:07] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:39:07] launching puck at (0.11, -5.00) with (-7.35, 348.38) force +[05/24/2026 06:39:12] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:39:12] launching puck at (1.10, 4.88) with (-76.38, -339.98) force +[05/24/2026 06:39:19] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:39:19] launching puck at (2.57, -4.29) with (-178.86, 299.05) force +[05/24/2026 06:39:24] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:39:24] launching puck at (3.55, 3.52) with (-247.20, -245.58) force +[05/24/2026 06:39:35] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:39:35] launching puck at (-0.04, -5.00) with (2.59, 348.44) force +[05/24/2026 06:39:41] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:39:41] launching puck at (4.41, 2.37) with (-307.00, -164.83) force +[05/24/2026 06:39:45] Client 16 sent text emote Oops +[05/24/2026 06:39:47] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:39:47] launching puck at (-4.82, 1.32) with (336.04, -92.17) force +[05/24/2026 06:39:53] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:39:53] launching puck at (0.10, 5.00) with (-7.29, -348.38) force +[05/24/2026 06:39:55] Client 16 sent emoji emote 4 +[05/24/2026 06:39:58] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:39:58] launching puck at (-0.71, 4.95) with (49.73, -344.89) force +[05/24/2026 06:40:04] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:40:04] launching puck at (-2.73, 4.19) with (190.39, -291.84) force +[05/24/2026 06:40:06] Blue goal scored, blue score is now 3 +[05/24/2026 06:40:06] Dedicated match PATCH success: 200 {"ok":true,"id":106} +[05/24/2026 06:40:08] Client 16 sent emoji emote 0 +[05/24/2026 06:40:08] Dedicated match winner PATCH success: 200 {"ok":true,"id":106,"winner_id":15,"economy":{"entry_fee_rc":393,"rc_prize":652,"participant_cc":100}} +[05/24/2026 06:40:10] Client 15 sent emoji emote 2 +[05/24/2026 06:40:13] Mirror server: client disconnected (connId=224830800) +[05/24/2026 06:40:13] Active player connections: 1 +[05/24/2026 06:40:30] Mirror server: client disconnected (connId=2006082097) +[05/24/2026 06:40:30] Active player connections: 0 +[05/24/2026 06:40:35] Server will be closed due to no players in, 60 +[05/24/2026 06:40:45] Server will be closed due to no players in, 50 +[05/24/2026 06:40:55] Server will be closed due to no players in, 40 +[05/24/2026 06:41:05] Server will be closed due to no players in, 30 +[05/24/2026 06:41:15] Server will be closed due to no players in, 20 +[05/24/2026 06:41:25] Server will be closed due to no players in, 10 +[05/24/2026 06:41:35] All players left, exiting +[05/24/2026 06:41:35] Dedicated match PATCH success: 200 {"ok":true,"id":106} diff --git a/games/soccar/soccar_Data/Logs/107.txt b/games/soccar/soccar_Data/Logs/107.txt new file mode 100644 index 0000000..a039a0f --- /dev/null +++ b/games/soccar/soccar_Data/Logs/107.txt @@ -0,0 +1,162 @@ +[05/24/2026 06:39:08] Starting server at port 26305 +[05/24/2026 06:39:08] Mirror server exception logging enabled +[05/24/2026 06:39:08] Failed to fetch red and blue names, isServer? +[05/24/2026 06:39:08] Starting auto close watchdog +[05/24/2026 06:39:08] Active player connections: 0 +[05/24/2026 06:39:10] Active player connections: 1 +[05/24/2026 06:39:10] Client 15 set team to Blue +[05/24/2026 06:39:10] Dedicated match PATCH success: 200 {"ok":true,"id":107} +[05/24/2026 06:39:10] Active player connections: 2 +[05/24/2026 06:39:10] Game started On Server +[05/24/2026 06:39:11] Client 16 set team to Red +[05/24/2026 06:39:11] Dedicated match PATCH success: 200 {"ok":true,"id":107} +[05/24/2026 06:39:15] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:39:15] launching puck at (-0.06, -5.00) with (4.14, 348.43) force +[05/24/2026 06:39:25] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:39:25] launching puck at (-0.02, 5.00) with (1.47, -348.45) force +[05/24/2026 06:39:32] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:39:32] launching puck at (1.26, -4.84) with (-87.84, 337.20) force +[05/24/2026 06:39:37] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:39:37] launching puck at (-0.89, 4.92) with (62.07, -342.88) force +[05/24/2026 06:39:42] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:39:42] launching puck at (-1.50, -4.77) with (104.36, 332.46) force +[05/24/2026 06:39:48] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:39:48] launching puck at (-1.58, 4.74) with (110.18, -330.58) force +[05/24/2026 06:39:56] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:39:56] launching puck at (1.67, -4.71) with (-116.39, 328.44) force +[05/24/2026 06:40:01] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:40:01] launching puck at (2.90, 4.08) with (-201.81, -284.07) force +[05/24/2026 06:40:07] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:40:07] launching puck at (1.63, -4.73) with (-113.56, 329.43) force +[05/24/2026 06:40:11] Client 16 sent emoji emote 1 +[05/24/2026 06:40:13] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:40:13] launching puck at (1.66, 4.72) with (-115.68, -328.69) force +[05/24/2026 06:40:19] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:40:19] launching puck at (-0.33, -4.99) with (22.71, 347.71) force +[05/24/2026 06:40:19] Red goal scored, red score is now 1 +[05/24/2026 06:40:25] Client 15 sent emoji emote 5 +[05/24/2026 06:40:27] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:40:27] launching puck at (-0.60, 4.96) with (41.68, -345.95) force +[05/24/2026 06:40:33] force = 70 * 0.8290838 = 58.03587 +[05/24/2026 06:40:33] launching puck at (3.03, 1.49) with (-175.84, -86.33) force +[05/24/2026 06:40:39] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:40:39] launching puck at (0.61, 4.96) with (-42.42, -345.86) force +[05/24/2026 06:40:39] Blue goal scored, blue score is now 1 +[05/24/2026 06:40:48] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:40:48] launching puck at (-1.04, -4.89) with (72.41, 340.85) force +[05/24/2026 06:40:53] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:40:53] launching puck at (0.08, 5.00) with (-5.44, -348.41) force +[05/24/2026 06:41:01] force = 70 * 0.9545534 = 66.81874 +[05/24/2026 06:41:01] launching puck at (0.75, 4.49) with (-50.27, -299.77) force +[05/24/2026 06:41:08] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:41:08] launching puck at (2.07, 4.55) with (-144.34, -317.15) force +[05/24/2026 06:41:17] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:41:17] launching puck at (4.28, -2.58) with (-298.45, 179.85) force +[05/24/2026 06:41:23] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:41:23] launching puck at (0.27, 4.99) with (-19.08, -347.93) force +[05/24/2026 06:41:27] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:41:27] launching puck at (-0.79, -4.94) with (54.85, 344.11) force +[05/24/2026 06:41:35] force = 70 * 0.8413951 = 58.89766 +[05/24/2026 06:41:35] launching puck at (2.54, 2.37) with (-149.35, -139.77) force +[05/24/2026 06:41:39] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:41:39] launching puck at (0.77, -4.94) with (-53.58, 344.31) force +[05/24/2026 06:41:48] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:41:48] launching puck at (-2.11, -4.53) with (147.27, 315.80) force +[05/24/2026 06:41:53] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:41:53] launching puck at (1.24, -4.84) with (-86.45, 337.56) force +[05/24/2026 06:41:59] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:41:59] launching puck at (-2.00, 4.58) with (139.14, -319.47) force +[05/24/2026 06:42:05] force = 70 * 0.9921913 = 69.45338 +[05/24/2026 06:42:05] launching puck at (-3.53, -3.49) with (245.19, 242.23) force +[05/24/2026 06:42:13] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:42:13] launching puck at (-0.56, 4.97) with (38.92, -346.27) force +[05/24/2026 06:42:20] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:42:20] launching puck at (2.35, -4.41) with (-163.99, 307.45) force +[05/24/2026 06:42:26] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:42:26] launching puck at (3.28, 3.77) with (-228.63, -262.96) force +[05/24/2026 06:42:30] force = 70 * 0.91848 = 64.2936 +[05/24/2026 06:42:30] launching puck at (-3.54, -2.20) with (227.88, 141.45) force +[05/24/2026 06:42:33] force = 70 * 0.9908155 = 69.35709 +[05/24/2026 06:42:33] launching puck at (-0.73, 4.89) with (50.65, -339.37) force +[05/24/2026 06:42:41] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:42:41] launching puck at (2.75, -4.18) with (-191.62, 291.03) force +[05/24/2026 06:42:41] Red goal scored, red score is now 2 +[05/24/2026 06:42:47] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:42:47] launching puck at (0.34, 4.99) with (-23.47, -347.66) force +[05/24/2026 06:42:59] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:42:59] launching puck at (-4.94, -0.79) with (344.05, 55.20) force +[05/24/2026 06:43:02] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:43:02] launching puck at (2.19, -4.50) with (-152.49, 313.32) force +[05/24/2026 06:43:09] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:43:09] launching puck at (4.28, -2.59) with (-298.26, 180.18) force +[05/24/2026 06:43:15] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:43:15] launching puck at (0.47, 4.98) with (-32.81, -346.91) force +[05/24/2026 06:43:21] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:43:21] launching puck at (4.13, -2.81) with (-288.12, 195.98) force +[05/24/2026 06:43:27] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:43:27] launching puck at (0.07, 5.00) with (-5.21, -348.41) force +[05/24/2026 06:43:32] force = 70 * 0.9371573 = 65.60101 +[05/24/2026 06:43:32] launching puck at (-0.35, 4.35) with (22.70, -285.36) force +[05/24/2026 06:43:39] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:43:39] launching puck at (-1.78, 4.67) with (123.95, -325.66) force +[05/24/2026 06:43:43] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:43:43] launching puck at (-0.04, 5.00) with (2.72, -348.44) force +[05/24/2026 06:43:46] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:43:46] launching puck at (4.27, -2.60) with (-297.63, 181.20) force +[05/24/2026 06:43:53] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:43:53] launching puck at (4.70, -1.72) with (-327.23, 119.74) force +[05/24/2026 06:44:00] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:44:00] launching puck at (2.53, 4.31) with (-176.48, -300.46) force +[05/24/2026 06:44:09] force = 70 * 0.8540527 = 59.78369 +[05/24/2026 06:44:09] launching puck at (-3.41, -1.08) with (203.80, 64.80) force +[05/24/2026 06:44:14] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:44:14] launching puck at (0.77, 4.94) with (-53.42, -344.33) force +[05/24/2026 06:44:19] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:44:19] launching puck at (-2.29, -4.45) with (159.50, 309.81) force +[05/24/2026 06:44:26] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:44:26] launching puck at (-0.76, 4.94) with (52.75, -344.44) force +[05/24/2026 06:44:34] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:44:34] launching puck at (2.24, -4.47) with (-156.36, 311.40) force +[05/24/2026 06:44:42] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:44:42] launching puck at (-4.99, 0.34) with (347.65, -23.67) force +[05/24/2026 06:44:46] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:44:46] launching puck at (-0.08, -5.00) with (5.65, 348.41) force +[05/24/2026 06:44:51] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:44:51] launching puck at (-0.22, 4.99) with (15.60, -348.10) force +[05/24/2026 06:44:57] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:44:57] launching puck at (2.85, -4.11) with (-198.62, 286.30) force +[05/24/2026 06:45:06] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:45:06] launching puck at (0.39, 4.99) with (-26.88, -347.42) force +[05/24/2026 06:45:10] Client 15 sent emoji emote 0 +[05/24/2026 06:45:11] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:45:11] launching puck at (-2.44, -4.36) with (170.19, 304.06) force +[05/24/2026 06:45:17] Client 16 sent emoji emote 1 +[05/24/2026 06:45:18] force = 70 * 0.8693675 = 60.85572 +[05/24/2026 06:45:18] launching puck at (3.15, -1.95) with (-191.84, 118.88) force +[05/24/2026 06:45:24] force = 70 * 0.899101 = 62.93707 +[05/24/2026 06:45:24] launching puck at (-0.68, 3.92) with (42.68, -246.92) force +[05/24/2026 06:45:29] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:45:29] launching puck at (-3.82, 3.22) with (266.34, -224.68) force +[05/24/2026 06:45:34] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:45:34] launching puck at (-0.91, -4.92) with (63.48, 342.62) force +[05/24/2026 06:45:39] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:45:39] launching puck at (-4.62, 1.92) with (321.80, -133.66) force +[05/24/2026 06:45:47] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:45:47] launching puck at (0.92, -4.91) with (-64.39, 342.45) force +[05/24/2026 06:45:47] Red goal scored, red score is now 3 +[05/24/2026 06:45:48] Dedicated match PATCH success: 200 {"ok":true,"id":107} +[05/24/2026 06:45:49] Dedicated match winner PATCH success: 200 {"ok":true,"id":107,"winner_id":13,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/24/2026 06:45:56] Mirror server: client disconnected (connId=-1479579200) +[05/24/2026 06:45:56] Active player connections: 1 +[05/24/2026 06:45:58] Rematch requested +[05/24/2026 06:46:26] Mirror server transport error (connId=442713918, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting. +[05/24/2026 06:46:26] Mirror server: client disconnected (connId=442713918) +[05/24/2026 06:46:26] Active player connections: 0 +[05/24/2026 06:46:31] Server will be closed due to no players in, 60 +[05/24/2026 06:46:41] Server will be closed due to no players in, 50 +[05/24/2026 06:46:51] Server will be closed due to no players in, 40 +[05/24/2026 06:47:01] Server will be closed due to no players in, 30 +[05/24/2026 06:47:11] Server will be closed due to no players in, 20 +[05/24/2026 06:47:21] Server will be closed due to no players in, 10 +[05/24/2026 06:47:31] All players left, exiting +[05/24/2026 06:47:31] Dedicated match PATCH success: 200 {"ok":true,"id":107} diff --git a/games/soccar/soccar_Data/Logs/108.txt b/games/soccar/soccar_Data/Logs/108.txt new file mode 100644 index 0000000..690153d --- /dev/null +++ b/games/soccar/soccar_Data/Logs/108.txt @@ -0,0 +1,94 @@ +[05/24/2026 06:39:22] Starting server at port 26416 +[05/24/2026 06:39:22] Mirror server exception logging enabled +[05/24/2026 06:39:22] Failed to fetch red and blue names, isServer? +[05/24/2026 06:39:22] Starting auto close watchdog +[05/24/2026 06:39:22] Active player connections: 0 +[05/24/2026 06:39:25] Active player connections: 1 +[05/24/2026 06:39:25] Active player connections: 2 +[05/24/2026 06:39:25] Game started On Server +[05/24/2026 06:39:25] Client 15 set team to Blue +[05/24/2026 06:39:25] Client 16 set team to Red +[05/24/2026 06:39:26] Dedicated match PATCH success: 200 {"ok":true,"id":108} +[05/24/2026 06:39:26] Dedicated match PATCH success: 200 {"ok":true,"id":108} +[05/24/2026 06:39:28] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:39:28] launching puck at (0.14, -5.00) with (-9.56, 348.32) force +[05/24/2026 06:39:34] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:39:34] launching puck at (-4.09, 2.88) with (285.05, -200.41) force +[05/24/2026 06:39:39] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:39:39] launching puck at (1.88, -4.64) with (-130.69, 323.02) force +[05/24/2026 06:39:46] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:39:46] launching puck at (-0.21, 5.00) with (14.58, -348.15) force +[05/24/2026 06:39:47] Blue goal scored, blue score is now 1 +[05/24/2026 06:39:51] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:39:51] launching puck at (0.52, -4.97) with (-36.12, 346.58) force +[05/24/2026 06:39:58] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:39:58] launching puck at (4.66, 1.80) with (-325.03, -125.60) force +[05/24/2026 06:40:04] force = 70 * 0.9052545 = 63.36781 +[05/24/2026 06:40:04] launching puck at (2.80, -2.91) with (-177.65, 184.40) force +[05/24/2026 06:40:09] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:40:09] launching puck at (4.60, 1.96) with (-320.48, -136.79) force +[05/24/2026 06:40:14] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:40:14] launching puck at (1.67, -4.71) with (-116.08, 328.55) force +[05/24/2026 06:40:22] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:40:22] launching puck at (4.08, 2.88) with (-284.67, -200.96) force +[05/24/2026 06:40:27] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:40:27] launching puck at (3.87, -3.16) with (-269.98, 220.29) force +[05/24/2026 06:40:33] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:40:33] launching puck at (-3.46, 3.61) with (241.30, -251.38) force +[05/24/2026 06:40:40] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:40:40] launching puck at (-2.60, -4.27) with (181.37, 297.53) force +[05/24/2026 06:40:41] Red goal scored, red score is now 1 +[05/24/2026 06:40:47] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:40:47] launching puck at (-1.50, 4.77) with (104.48, -332.42) force +[05/24/2026 06:40:52] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:40:52] launching puck at (-5.00, 0.10) with (348.38, -7.11) force +[05/24/2026 06:40:58] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:40:58] launching puck at (-3.85, 3.19) with (268.14, -222.54) force +[05/24/2026 06:41:03] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:41:03] launching puck at (-4.03, -2.96) with (280.78, 206.35) force +[05/24/2026 06:41:09] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:41:09] launching puck at (2.29, 4.44) with (-159.62, -309.74) force +[05/24/2026 06:41:16] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:41:16] launching puck at (1.25, -4.84) with (-86.94, 337.43) force +[05/24/2026 06:41:16] Red goal scored, red score is now 2 +[05/24/2026 06:41:26] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:41:26] launching puck at (-1.13, 4.87) with (78.89, -339.40) force +[05/24/2026 06:41:31] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:41:31] launching puck at (2.44, -4.37) with (-169.73, 304.32) force +[05/24/2026 06:41:39] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:41:39] launching puck at (4.50, 2.18) with (-313.48, -152.16) force +[05/24/2026 06:41:46] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:41:46] launching puck at (-0.46, 4.98) with (31.78, -347.00) force +[05/24/2026 06:41:54] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:41:54] launching puck at (-1.44, 4.79) with (100.61, -333.61) force +[05/24/2026 06:41:59] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:41:59] launching puck at (-1.76, -4.68) with (122.74, 326.12) force +[05/24/2026 06:42:05] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:42:05] launching puck at (-1.66, -4.72) with (115.79, 328.65) force +[05/24/2026 06:42:10] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:42:10] launching puck at (-5.00, 0.08) with (348.41, -5.72) force +[05/24/2026 06:42:18] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:42:18] launching puck at (3.30, -3.75) with (-230.10, 261.67) force +[05/24/2026 06:42:25] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:42:25] launching puck at (0.32, -4.99) with (-22.12, 347.75) force +[05/24/2026 06:42:31] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:42:31] launching puck at (1.05, -4.89) with (-73.41, 340.63) force +[05/24/2026 06:42:37] force = 70 * 0.9209998 = 64.46999 +[05/24/2026 06:42:37] launching puck at (-2.47, -3.40) with (159.07, 218.89) force +[05/24/2026 06:42:37] Red goal scored, red score is now 3 +[05/24/2026 06:42:38] Dedicated match PATCH success: 200 {"ok":true,"id":108} +[05/24/2026 06:42:39] Dedicated match winner PATCH success: 200 {"ok":true,"id":108,"winner_id":18,"economy":{"entry_fee_rc":404,"rc_prize":670,"participant_cc":100}} +[05/24/2026 06:42:44] Rematch requested +[05/24/2026 06:42:50] Rematch was confirmed, closing in 5 secs. new room : +[05/24/2026 06:42:50] {"ok":true,"entry_fee":760,"rc_prize":1260,"for_red":{"Players":[{"Name":"Modisi","LastSeen":1779604970133,"l10_wins":5,"l10_losses":3,"UserId":18,"rc":0.0},{"Name":"SebastianMCS","LastSeen":1779604970133,"l10_wins":3,"l10_losses":6,"UserId":14,"rc":0.0}],"GameName":"soccar","Port":26342,"InitTime":1779604970133,"instance_started":true,"match_id":110,"entry_fee":760,"rc_prize":1260,"your_team":"red"},"for_blue":{"Players":[{"Name":"Modisi","LastSeen":1779604970133,"l10_wins":5,"l10_losses":3,"UserId":18,"rc":0.0},{"Name":"SebastianMCS","LastSeen":1779604970133,"l10_wins":3,"l10_losses":6,"UserId":14,"rc":0.0}],"GameName":"soccar","Port":26342,"InitTime":1779604970133,"instance_started":true,"match_id":110,"entry_fee":760,"rc_prize":1260,"your_team":"blue"},"your_team":""} +[05/24/2026 06:42:50] Mirror server: client disconnected (connId=1761042066) +[05/24/2026 06:42:50] Mirror server: client disconnected (connId=207068037) +[05/24/2026 06:42:50] Active player connections: 0 +[05/24/2026 06:42:55] Server will be closed due to no players in, 60 +[05/24/2026 06:43:05] Server will be closed due to no players in, 50 +[05/24/2026 06:43:15] Server will be closed due to no players in, 40 +[05/24/2026 06:43:25] Server will be closed due to no players in, 30 +[05/24/2026 06:43:35] Server will be closed due to no players in, 20 +[05/24/2026 06:43:45] Server will be closed due to no players in, 10 +[05/24/2026 06:43:55] All players left, exiting +[05/24/2026 06:43:55] Dedicated match PATCH success: 200 {"ok":true,"id":108} diff --git a/games/soccar/soccar_Data/Logs/109.txt b/games/soccar/soccar_Data/Logs/109.txt new file mode 100644 index 0000000..761b9a2 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/109.txt @@ -0,0 +1,51 @@ +[05/24/2026 06:42:12] Starting server at port 26961 +[05/24/2026 06:42:12] Mirror server exception logging enabled +[05/24/2026 06:42:12] Failed to fetch red and blue names, isServer? +[05/24/2026 06:42:12] Starting auto close watchdog +[05/24/2026 06:42:12] Active player connections: 0 +[05/24/2026 06:42:13] Active player connections: 1 +[05/24/2026 06:42:14] Client 15 set team to Blue +[05/24/2026 06:42:14] Dedicated match PATCH success: 200 {"ok":true,"id":109} +[05/24/2026 06:42:14] Active player connections: 2 +[05/24/2026 06:42:14] Game started On Server +[05/24/2026 06:42:14] Client 16 set team to Red +[05/24/2026 06:42:15] Dedicated match PATCH success: 200 {"ok":true,"id":109} +[05/24/2026 06:42:32] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:42:32] launching puck at (0.10, 5.00) with (-7.29, -348.38) force +[05/24/2026 06:42:35] Mirror server transport error (connId=720397744, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting. +[05/24/2026 06:42:35] Mirror server: client disconnected (connId=720397744) +[05/24/2026 06:42:35] Active player connections: 1 +[05/24/2026 06:42:54] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:42:54] launching puck at (0.88, 4.92) with (-61.21, -343.03) force +[05/24/2026 06:43:15] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:43:15] launching puck at (-0.68, 4.95) with (47.32, -345.23) force +[05/24/2026 06:43:16] Blue goal scored, blue score is now 1 +[05/24/2026 06:43:18] Client 15 sent emoji emote 0 +[05/24/2026 06:43:36] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:43:36] launching puck at (0.00, 5.00) with (-0.30, -348.45) force +[05/24/2026 06:43:58] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:43:58] launching puck at (-2.07, 4.55) with (144.22, -317.21) force +[05/24/2026 06:43:58] Blue goal scored, blue score is now 2 +[05/24/2026 06:44:01] Client 15 sent emoji emote 0 +[05/24/2026 06:44:17] Client 15 sent emoji emote 2 +[05/24/2026 06:44:20] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:44:20] launching puck at (-0.05, 5.00) with (3.16, -348.44) force +[05/24/2026 06:44:42] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:44:42] launching puck at (1.29, 4.83) with (-89.70, -336.71) force +[05/24/2026 06:45:04] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:45:04] launching puck at (0.14, 5.00) with (-10.10, -348.31) force +[05/24/2026 06:45:24] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:45:24] launching puck at (2.11, 4.53) with (-147.23, -315.82) force +[05/24/2026 06:45:24] Blue goal scored, blue score is now 3 +[05/24/2026 06:45:24] Dedicated match PATCH success: 200 {"ok":true,"id":109} +[05/24/2026 06:45:26] Dedicated match winner PATCH success: 200 {"ok":true,"id":109,"winner_id":15,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/24/2026 06:45:36] Mirror server: client disconnected (connId=2006076222) +[05/24/2026 06:45:36] Active player connections: 0 +[05/24/2026 06:45:41] Server will be closed due to no players in, 60 +[05/24/2026 06:45:51] Server will be closed due to no players in, 50 +[05/24/2026 06:46:01] Server will be closed due to no players in, 40 +[05/24/2026 06:46:11] Server will be closed due to no players in, 30 +[05/24/2026 06:46:21] Server will be closed due to no players in, 20 +[05/24/2026 06:46:31] Server will be closed due to no players in, 10 +[05/24/2026 06:46:41] All players left, exiting +[05/24/2026 06:46:41] Dedicated match PATCH success: 200 {"ok":true,"id":109} diff --git a/games/soccar/soccar_Data/Logs/11.txt b/games/soccar/soccar_Data/Logs/11.txt new file mode 100644 index 0000000..f5c88ce --- /dev/null +++ b/games/soccar/soccar_Data/Logs/11.txt @@ -0,0 +1,128 @@ +[05/16/2026 05:39:20] Starting server at port 26376 +[05/16/2026 05:39:20] Failed to fetch red and blue names, isServer? +[05/16/2026 05:39:20] Starting auto close watchdog +[05/16/2026 05:39:20] Active player connections: 0 +[05/16/2026 05:39:23] Active player connections: 1 +[05/16/2026 05:39:23] Client 15 set team to Red +[05/16/2026 05:39:24] Active player connections: 2 +[05/16/2026 05:39:24] Game started On Server +[05/16/2026 05:39:24] Dedicated match PATCH success: 200 {"ok":true,"id":11} +[05/16/2026 05:39:24] Client 16 set team to Blue +[05/16/2026 05:39:24] Dedicated match PATCH success: 200 {"ok":true,"id":11} +[05/16/2026 05:39:27] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:39:27] launching puck at (0.14, -5.00) with (-9.92, 348.31) force +[05/16/2026 05:39:33] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:39:33] launching puck at (1.72, 4.70) with (-119.68, -327.26) force +[05/16/2026 05:39:38] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:39:38] launching puck at (1.04, -4.89) with (-72.54, 340.82) force +[05/16/2026 05:39:44] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:39:44] launching puck at (3.35, 3.72) with (-233.16, -258.95) force +[05/16/2026 05:39:49] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:39:49] launching puck at (-0.47, -4.98) with (32.77, 346.91) force +[05/16/2026 05:39:55] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:39:55] launching puck at (1.43, 4.79) with (-99.97, -333.80) force +[05/16/2026 05:40:03] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:40:03] launching puck at (4.94, 0.77) with (-344.33, -53.44) force +[05/16/2026 05:40:11] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:40:11] launching puck at (-0.82, 4.93) with (57.00, -343.76) force +[05/16/2026 05:40:12] Blue goal scored, blue score is now 1 +[05/16/2026 05:40:14] Client 15 sent emoji emote 0 +[05/16/2026 05:40:16] force = 70 * 0.8246963 = 57.72874 +[05/16/2026 05:40:16] launching puck at (1.90, 2.75) with (-109.70, -158.67) force +[05/16/2026 05:40:16] Client 16 sent emoji emote 5 +[05/16/2026 05:40:23] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:40:23] launching puck at (0.07, 5.00) with (-4.92, -348.42) force +[05/16/2026 05:40:30] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:40:30] launching puck at (0.83, -4.93) with (-58.05, 343.58) force +[05/16/2026 05:40:39] force = 70 * 0.9374717 = 65.62302 +[05/16/2026 05:40:39] launching puck at (-4.23, -1.07) with (277.87, 70.10) force +[05/16/2026 05:40:46] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:40:46] launching puck at (-3.27, -3.78) with (228.08, 263.44) force +[05/16/2026 05:40:53] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:40:53] launching puck at (-0.55, 4.97) with (38.41, -346.33) force +[05/16/2026 05:41:00] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:41:00] launching puck at (3.36, -3.70) with (-234.50, 257.73) force +[05/16/2026 05:41:08] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:41:08] launching puck at (2.19, 4.50) with (-152.34, -313.39) force +[05/16/2026 05:41:09] Blue goal scored, blue score is now 2 +[05/16/2026 05:41:11] Client 15 sent text emote Nice shot! +[05/16/2026 05:41:15] Client 16 sent emoji emote 5 +[05/16/2026 05:41:15] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:41:15] launching puck at (-0.01, -5.00) with (1.01, 348.45) force +[05/16/2026 05:41:23] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:41:23] launching puck at (-0.88, 4.92) with (61.51, -342.98) force +[05/16/2026 05:41:28] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:41:28] launching puck at (2.91, -4.07) with (-202.67, 283.45) force +[05/16/2026 05:41:28] Red goal scored, red score is now 1 +[05/16/2026 05:41:37] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:41:37] launching puck at (0.16, 5.00) with (-11.48, -348.26) force +[05/16/2026 05:41:43] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:41:43] launching puck at (-4.17, -2.75) with (290.87, 191.86) force +[05/16/2026 05:41:49] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:41:49] launching puck at (-1.77, 4.68) with (123.51, -325.83) force +[05/16/2026 05:41:54] force = 70 * 0.8942896 = 62.60027 +[05/16/2026 05:41:54] launching puck at (3.33, -2.10) with (-208.41, 131.39) force +[05/16/2026 05:42:01] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:42:01] launching puck at (4.12, 2.83) with (-287.04, -197.55) force +[05/16/2026 05:42:05] Client 16 sent text emote well played +[05/16/2026 05:42:07] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:42:07] launching puck at (3.15, -3.88) with (-219.77, 270.41) force +[05/16/2026 05:42:14] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:42:14] launching puck at (4.41, 2.36) with (-307.19, -164.47) force +[05/16/2026 05:42:19] Client 16 sent text emote Oops +[05/16/2026 05:42:20] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:42:20] launching puck at (4.20, -2.72) with (-292.39, 189.55) force +[05/16/2026 05:42:21] Client 16 sent text emote GG +[05/16/2026 05:42:24] Client 16 sent text emote What a save! +[05/16/2026 05:42:29] force = 70 * 0.8883478 = 62.18435 +[05/16/2026 05:42:29] launching puck at (3.88, -0.09) with (-241.22, 5.38) force +[05/16/2026 05:42:36] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:42:36] launching puck at (-4.37, -2.42) with (304.74, 168.98) force +[05/16/2026 05:42:39] Client 16 sent emoji emote 5 +[05/16/2026 05:42:43] force = 70 * 0.9729726 = 68.10809 +[05/16/2026 05:42:43] launching puck at (2.30, -4.16) with (-156.53, 283.13) force +[05/16/2026 05:42:50] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:42:50] launching puck at (-0.05, -5.00) with (3.82, 348.43) force +[05/16/2026 05:42:57] force = 70 * 0.8670243 = 60.6917 +[05/16/2026 05:42:57] launching puck at (3.69, 0.12) with (-223.72, -7.28) force +[05/16/2026 05:43:03] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:43:03] launching puck at (0.00, -5.00) with (0.04, 348.45) force +[05/16/2026 05:43:09] force = 70 * 0.6562154 = 45.93508 +[05/16/2026 05:43:09] launching puck at (-1.78, 1.46) with (81.87, -66.93) force +[05/16/2026 05:43:17] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:43:17] launching puck at (-4.98, 0.45) with (347.02, -31.62) force +[05/16/2026 05:43:23] force = 70 * 0.6679578 = 46.75705 +[05/16/2026 05:43:23] launching puck at (-1.98, -1.28) with (92.72, 59.97) force +[05/16/2026 05:43:32] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:43:32] launching puck at (1.22, -4.85) with (-85.35, 337.84) force +[05/16/2026 05:43:36] Client 15 sent emoji emote 2 +[05/16/2026 05:43:40] force = 70 * 0.9627262 = 67.39084 +[05/16/2026 05:43:40] launching puck at (-3.37, 3.19) with (226.97, -214.87) force +[05/16/2026 05:43:47] force = 70 * 0.9339602 = 65.37721 +[05/16/2026 05:43:47] launching puck at (-3.52, -2.53) with (229.94, 165.15) force +[05/16/2026 05:43:53] force = 70 * 0.9147965 = 64.03575 +[05/16/2026 05:43:53] launching puck at (-2.70, -3.13) with (173.05, 200.40) force +[05/16/2026 05:43:59] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:43:59] launching puck at (-4.46, -2.25) with (311.16, 156.85) force +[05/16/2026 05:43:59] Red goal scored, red score is now 2 +[05/16/2026 05:44:03] Client 16 sent text emote Nice shot! +[05/16/2026 05:44:09] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:44:09] launching puck at (0.10, 5.00) with (-6.66, -348.39) force +[05/16/2026 05:44:14] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:44:14] launching puck at (1.04, -4.89) with (-72.79, 340.77) force +[05/16/2026 05:44:21] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:44:21] launching puck at (0.94, 4.91) with (-65.74, -342.20) force +[05/16/2026 05:44:22] Blue goal scored, blue score is now 3 +[05/16/2026 05:44:23] Dedicated match PATCH success: 200 {"ok":true,"id":11} +[05/16/2026 05:44:25] Dedicated match winner PATCH success: 200 {"ok":true,"id":11,"winner_id":4,"economy":{"entry_fee_rc":98,"rc_prize":162,"participant_cc":100}} +[05/16/2026 05:44:28] Rematch requested +[05/16/2026 05:44:29] Active player connections: 1 +[05/16/2026 05:45:50] Active player connections: 0 +[05/16/2026 05:45:55] Server will be closed due to no players in, 60 +[05/16/2026 05:46:05] Server will be closed due to no players in, 50 +[05/16/2026 05:46:15] Server will be closed due to no players in, 40 +[05/16/2026 05:46:25] Server will be closed due to no players in, 30 +[05/16/2026 05:46:35] Server will be closed due to no players in, 20 +[05/16/2026 05:46:45] Server will be closed due to no players in, 10 +[05/16/2026 05:46:55] All players left, exiting +[05/16/2026 05:46:55] Dedicated match PATCH success: 200 {"ok":true,"id":11} diff --git a/games/soccar/soccar_Data/Logs/110.txt b/games/soccar/soccar_Data/Logs/110.txt new file mode 100644 index 0000000..8662c57 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/110.txt @@ -0,0 +1,139 @@ +[05/24/2026 06:42:51] Starting server at port 26342 +[05/24/2026 06:42:51] Mirror server exception logging enabled +[05/24/2026 06:42:51] Failed to fetch red and blue names, isServer? +[05/24/2026 06:42:51] Starting auto close watchdog +[05/24/2026 06:42:51] Active player connections: 0 +[05/24/2026 06:42:55] Active player connections: 1 +[05/24/2026 06:42:55] Active player connections: 2 +[05/24/2026 06:42:55] Game started On Server +[05/24/2026 06:42:55] Client 15 set team to Blue +[05/24/2026 06:42:55] Client 16 set team to Red +[05/24/2026 06:42:55] Dedicated match PATCH success: 200 {"ok":true,"id":110} +[05/24/2026 06:42:55] Dedicated match PATCH success: 200 {"ok":true,"id":110} +[05/24/2026 06:42:59] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:42:59] launching puck at (0.02, -5.00) with (-1.24, 348.45) force +[05/24/2026 06:43:09] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:43:09] launching puck at (-4.92, 0.92) with (342.55, -63.86) force +[05/24/2026 06:43:14] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:43:14] launching puck at (-4.73, -1.62) with (329.77, 112.55) force +[05/24/2026 06:43:20] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:43:20] launching puck at (-4.70, 1.71) with (327.41, -119.25) force +[05/24/2026 06:43:26] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:43:26] launching puck at (-3.19, -3.85) with (222.59, 268.09) force +[05/24/2026 06:43:33] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:43:33] launching puck at (-4.07, -2.90) with (283.97, 201.94) force +[05/24/2026 06:43:39] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:43:39] launching puck at (-1.78, -4.67) with (123.87, 325.69) force +[05/24/2026 06:43:45] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:43:45] launching puck at (-4.92, 0.90) with (342.80, -62.52) force +[05/24/2026 06:43:50] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:43:50] launching puck at (-3.32, -3.74) with (231.18, 260.72) force +[05/24/2026 06:43:56] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:43:56] launching puck at (-3.78, 3.27) with (263.44, -228.07) force +[05/24/2026 06:44:02] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:44:02] launching puck at (-4.58, -2.01) with (318.97, 140.27) force +[05/24/2026 06:44:07] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:44:07] launching puck at (-4.69, -1.74) with (326.60, 121.46) force +[05/24/2026 06:44:18] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:44:18] launching puck at (-4.72, 1.65) with (329.03, -114.71) force +[05/24/2026 06:44:24] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:44:24] launching puck at (-5.00, 0.16) with (348.27, -11.21) force +[05/24/2026 06:44:29] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:44:29] launching puck at (-3.18, -3.86) with (221.50, 268.99) force +[05/24/2026 06:44:36] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:44:36] launching puck at (0.98, -4.90) with (-67.95, 341.76) force +[05/24/2026 06:44:40] force = 70 * 0.9685051 = 67.79536 +[05/24/2026 06:44:40] launching puck at (-3.63, -2.99) with (246.02, 202.60) force +[05/24/2026 06:44:46] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:44:46] launching puck at (-2.18, -4.50) with (151.66, 313.72) force +[05/24/2026 06:44:51] force = 70 * 0.9171834 = 64.20284 +[05/24/2026 06:44:51] launching puck at (-3.13, -2.73) with (201.22, 175.49) force +[05/24/2026 06:44:51] Red goal scored, red score is now 1 +[05/24/2026 06:44:58] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:44:58] launching puck at (-1.96, 4.60) with (136.36, -320.66) force +[05/24/2026 06:45:03] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:45:03] launching puck at (-2.25, -4.47) with (156.78, 311.19) force +[05/24/2026 06:45:09] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:45:09] launching puck at (-3.43, -3.64) with (239.16, 253.42) force +[05/24/2026 06:45:16] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:45:16] launching puck at (-0.99, -4.90) with (68.77, 341.60) force +[05/24/2026 06:45:22] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:45:22] launching puck at (-4.56, -2.05) with (317.72, 143.10) force +[05/24/2026 06:45:28] force = 70 * 0.9058311 = 63.40818 +[05/24/2026 06:45:28] launching puck at (4.02, -0.42) with (-255.18, 26.70) force +[05/24/2026 06:45:34] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:45:34] launching puck at (4.49, -2.20) with (-312.74, 153.67) force +[05/24/2026 06:45:39] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:45:39] launching puck at (-0.57, -4.97) with (39.96, 346.15) force +[05/24/2026 06:45:39] Red goal scored, red score is now 2 +[05/24/2026 06:45:48] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:45:48] launching puck at (-1.04, 4.89) with (72.74, -340.78) force +[05/24/2026 06:45:53] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:45:53] launching puck at (2.30, -4.44) with (-160.24, 309.42) force +[05/24/2026 06:45:59] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:45:59] launching puck at (-2.14, 4.52) with (149.09, -314.95) force +[05/24/2026 06:46:05] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:46:05] launching puck at (-1.76, 4.68) with (122.47, -326.22) force +[05/24/2026 06:46:11] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:46:11] launching puck at (-4.38, 2.41) with (305.13, -168.28) force +[05/24/2026 06:46:18] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:46:18] launching puck at (-2.91, -4.07) with (202.86, 283.32) force +[05/24/2026 06:46:24] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:46:24] launching puck at (-2.01, -4.58) with (139.96, 319.11) force +[05/24/2026 06:46:30] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:46:30] launching puck at (2.07, -4.55) with (-144.05, 317.29) force +[05/24/2026 06:46:37] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:46:37] launching puck at (-0.72, -4.95) with (50.33, 344.80) force +[05/24/2026 06:46:43] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:46:43] launching puck at (3.61, -3.46) with (-251.70, 240.97) force +[05/24/2026 06:46:49] force = 70 * 0.9843665 = 68.90565 +[05/24/2026 06:46:49] launching puck at (4.81, -0.78) with (-331.62, 53.93) force +[05/24/2026 06:46:55] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:46:55] launching puck at (-4.23, 2.66) with (294.96, -185.53) force +[05/24/2026 06:47:02] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:47:02] launching puck at (-2.61, 4.27) with (181.84, -297.24) force +[05/24/2026 06:47:10] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:47:10] launching puck at (-3.01, 3.99) with (209.54, -278.41) force +[05/24/2026 06:47:15] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:47:15] launching puck at (-4.89, 1.05) with (340.68, -73.17) force +[05/24/2026 06:47:20] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:47:20] launching puck at (-5.00, -0.01) with (348.45, 0.86) force +[05/24/2026 06:47:25] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:47:25] launching puck at (-3.48, 3.59) with (242.38, -250.34) force +[05/24/2026 06:47:30] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:47:30] launching puck at (-4.65, 1.84) with (323.91, -128.46) force +[05/24/2026 06:47:38] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:47:38] launching puck at (-2.66, 4.23) with (185.28, -295.11) force +[05/24/2026 06:47:43] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:47:43] launching puck at (1.07, -4.88) with (-74.90, 340.31) force +[05/24/2026 06:47:49] force = 70 * 0.8119636 = 56.83745 +[05/24/2026 06:47:49] launching puck at (3.22, -0.37) with (-183.29, 20.81) force +[05/24/2026 06:47:54] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:47:54] launching puck at (3.38, -3.69) with (-235.37, 256.94) force +[05/24/2026 06:48:01] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:48:01] launching puck at (-1.31, -4.82) with (91.49, 336.23) force +[05/24/2026 06:48:07] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:48:07] launching puck at (-0.52, -4.97) with (36.14, 346.57) force +[05/24/2026 06:48:12] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:48:12] launching puck at (-2.78, -4.16) with (193.78, 289.60) force +[05/24/2026 06:48:18] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:48:18] launching puck at (-0.46, 4.98) with (31.89, -346.99) force +[05/24/2026 06:48:24] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:48:24] launching puck at (-4.16, -2.78) with (289.63, 193.74) force +[05/24/2026 06:48:30] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:48:30] launching puck at (-1.08, -4.88) with (75.09, 340.27) force +[05/24/2026 06:48:30] Red goal scored, red score is now 3 +[05/24/2026 06:48:30] Dedicated match PATCH success: 200 {"ok":true,"id":110} +[05/24/2026 06:48:32] Dedicated match winner PATCH success: 200 {"ok":true,"id":110,"winner_id":18,"economy":{"entry_fee_rc":760,"rc_prize":1260,"participant_cc":100}} +[05/24/2026 06:48:46] Mirror server: client disconnected (connId=1761023938) +[05/24/2026 06:48:46] Active player connections: 1 +[05/24/2026 06:48:58] Mirror server: client disconnected (connId=207068053) +[05/24/2026 06:48:58] Active player connections: 0 +[05/24/2026 06:49:03] Server will be closed due to no players in, 60 +[05/24/2026 06:49:13] Server will be closed due to no players in, 50 +[05/24/2026 06:49:23] Server will be closed due to no players in, 40 +[05/24/2026 06:49:33] Server will be closed due to no players in, 30 +[05/24/2026 06:49:43] Server will be closed due to no players in, 20 +[05/24/2026 06:49:53] Server will be closed due to no players in, 10 +[05/24/2026 06:50:03] All players left, exiting +[05/24/2026 06:50:03] Dedicated match PATCH success: 200 {"ok":true,"id":110} diff --git a/games/soccar/soccar_Data/Logs/111.txt b/games/soccar/soccar_Data/Logs/111.txt new file mode 100644 index 0000000..7491272 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/111.txt @@ -0,0 +1,155 @@ +[05/24/2026 06:44:46] Starting server at port 26122 +[05/24/2026 06:44:46] Mirror server exception logging enabled +[05/24/2026 06:44:46] Failed to fetch red and blue names, isServer? +[05/24/2026 06:44:46] Starting auto close watchdog +[05/24/2026 06:44:46] Active player connections: 0 +[05/24/2026 06:44:49] Active player connections: 1 +[05/24/2026 06:44:49] Client 15 set team to Blue +[05/24/2026 06:44:49] Dedicated match PATCH success: 200 {"ok":true,"id":111} +[05/24/2026 06:44:50] Active player connections: 2 +[05/24/2026 06:44:50] Game started On Server +[05/24/2026 06:44:50] Client 16 set team to Red +[05/24/2026 06:44:50] Dedicated match PATCH success: 200 {"ok":true,"id":111} +[05/24/2026 06:44:54] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:44:54] launching puck at (0.26, -4.99) with (-18.03, 347.99) force +[05/24/2026 06:44:59] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:44:59] launching puck at (-4.03, 2.97) with (280.51, -206.72) force +[05/24/2026 06:45:05] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:45:05] launching puck at (2.50, -4.33) with (-174.46, 301.64) force +[05/24/2026 06:45:10] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:45:10] launching puck at (4.64, -1.85) with (-323.63, 129.16) force +[05/24/2026 06:45:14] Client 16 sent emoji emote 2 +[05/24/2026 06:45:16] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:45:16] launching puck at (-2.33, -4.42) with (162.70, 308.14) force +[05/24/2026 06:45:17] Client 15 sent emoji emote 1 +[05/24/2026 06:45:22] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:45:22] launching puck at (4.95, 0.71) with (-344.89, -49.67) force +[05/24/2026 06:45:28] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:45:28] launching puck at (4.24, -2.66) with (-295.17, 185.19) force +[05/24/2026 06:45:29] Red goal scored, red score is now 1 +[05/24/2026 06:45:33] Client 16 sent emoji emote 5 +[05/24/2026 06:45:45] force = 70 * 0.4026508 = 28.18555 +[05/24/2026 06:45:45] launching puck at (-0.21, -1.21) with (5.98, 34.20) force +[05/24/2026 06:45:55] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:45:55] launching puck at (0.07, -5.00) with (-5.00, 348.42) force +[05/24/2026 06:46:00] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:46:00] launching puck at (1.54, 4.76) with (-107.39, -331.49) force +[05/24/2026 06:46:06] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:46:06] launching puck at (1.53, -4.76) with (-106.53, 331.77) force +[05/24/2026 06:46:11] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:46:11] launching puck at (-4.04, -2.95) with (281.37, 205.54) force +[05/24/2026 06:46:17] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:46:17] launching puck at (4.10, -2.86) with (-285.81, 199.33) force +[05/24/2026 06:46:18] Red goal scored, red score is now 2 +[05/24/2026 06:46:20] Client 15 sent text emote Nice shot! +[05/24/2026 06:46:23] Client 16 sent text emote Thanks! +[05/24/2026 06:46:25] force = 70 * 0.5133873 = 35.93711 +[05/24/2026 06:46:25] launching puck at (-1.60, 0.18) with (57.64, -6.63) force +[05/24/2026 06:46:30] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:46:30] launching puck at (0.05, -5.00) with (-3.51, 348.44) force +[05/24/2026 06:46:35] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:46:35] launching puck at (4.20, 2.71) with (-293.00, -188.60) force +[05/24/2026 06:46:40] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:46:40] launching puck at (1.91, -4.62) with (-132.84, 322.14) force +[05/24/2026 06:46:44] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:46:44] launching puck at (-0.02, 5.00) with (1.13, -348.45) force +[05/24/2026 06:46:51] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:46:51] launching puck at (4.99, 0.24) with (-348.06, -16.58) force +[05/24/2026 06:46:57] force = 70 * 0.8515322 = 59.60725 +[05/24/2026 06:46:57] launching puck at (-3.56, 0.02) with (211.96, -1.33) force +[05/24/2026 06:47:06] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:47:06] launching puck at (-1.92, -4.62) with (133.89, 321.70) force +[05/24/2026 06:47:11] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:47:11] launching puck at (-4.99, -0.33) with (347.70, 22.88) force +[05/24/2026 06:47:18] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:47:18] launching puck at (2.71, -4.20) with (-189.12, 292.67) force +[05/24/2026 06:47:22] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:47:22] launching puck at (4.28, 2.59) with (-298.08, -180.46) force +[05/24/2026 06:47:31] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:47:31] launching puck at (-0.85, 4.93) with (59.04, -343.41) force +[05/24/2026 06:47:36] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:47:36] launching puck at (-2.70, 4.21) with (188.03, -293.37) force +[05/24/2026 06:47:42] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:47:42] launching puck at (1.33, -4.82) with (-92.94, 335.83) force +[05/24/2026 06:47:45] Client 16 sent emoji emote 4 +[05/24/2026 06:47:47] Client 16 sent text emote What a save! +[05/24/2026 06:47:49] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:47:49] launching puck at (4.11, 2.85) with (-286.27, -198.66) force +[05/24/2026 06:47:50] Blue goal scored, blue score is now 1 +[05/24/2026 06:47:53] Client 15 sent emoji emote 0 +[05/24/2026 06:47:54] Client 15 sent emoji emote 3 +[05/24/2026 06:47:55] Client 16 sent text emote Nice shot! +[05/24/2026 06:47:57] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:47:57] launching puck at (0.08, -5.00) with (-5.51, 348.41) force +[05/24/2026 06:47:59] Client 15 sent text emote Thanks! +[05/24/2026 06:48:04] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:48:04] launching puck at (0.12, 5.00) with (-8.36, -348.35) force +[05/24/2026 06:48:15] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:48:15] launching puck at (0.63, -4.96) with (-43.84, 345.68) force +[05/24/2026 06:48:19] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:48:19] launching puck at (-4.16, 2.77) with (290.12, -193.00) force +[05/24/2026 06:48:25] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:48:25] launching puck at (-4.72, -1.66) with (328.68, 115.71) force +[05/24/2026 06:48:30] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:48:30] launching puck at (-3.66, 3.41) with (254.97, -237.51) force +[05/24/2026 06:48:34] Client 15 sent emoji emote 2 +[05/24/2026 06:48:37] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:48:37] launching puck at (-2.25, -4.47) with (156.50, 311.33) force +[05/24/2026 06:48:41] Client 15 sent emoji emote 0 +[05/24/2026 06:48:43] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:48:43] launching puck at (-0.95, 4.91) with (66.22, -342.10) force +[05/24/2026 06:48:43] Blue goal scored, blue score is now 2 +[05/24/2026 06:48:48] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:48:48] launching puck at (0.11, -5.00) with (-7.92, 348.36) force +[05/24/2026 06:48:53] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:48:53] launching puck at (-5.00, 0.16) with (348.28, -11.14) force +[05/24/2026 06:48:57] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:48:57] launching puck at (2.83, -4.12) with (-197.28, 287.23) force +[05/24/2026 06:49:03] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:49:03] launching puck at (2.28, 4.45) with (-158.60, -310.27) force +[05/24/2026 06:49:09] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:49:09] launching puck at (0.18, -5.00) with (-12.62, 348.22) force +[05/24/2026 06:49:10] Client 15 sent text emote Nice shot! +[05/24/2026 06:49:13] Client 15 sent emoji emote 0 +[05/24/2026 06:49:13] Client 16 sent text emote What a save! +[05/24/2026 06:49:16] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:49:16] launching puck at (4.97, -0.53) with (-346.48, 37.02) force +[05/24/2026 06:49:21] force = 70 * 0.7906667 = 55.34667 +[05/24/2026 06:49:21] launching puck at (-3.07, 0.40) with (169.74, -22.13) force +[05/24/2026 06:49:25] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:49:25] launching puck at (2.43, 4.37) with (-169.18, -304.63) force +[05/24/2026 06:49:30] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:49:30] launching puck at (1.03, -4.89) with (-72.01, 340.93) force +[05/24/2026 06:49:36] force = 70 * 0.667497 = 46.72479 +[05/24/2026 06:49:36] launching puck at (0.22, -2.35) with (-10.17, 109.77) force +[05/24/2026 06:49:46] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:49:46] launching puck at (0.79, -4.94) with (-54.78, 344.12) force +[05/24/2026 06:49:51] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:49:51] launching puck at (4.70, 1.72) with (-327.28, -119.61) force +[05/24/2026 06:49:54] Client 15 sent text emote Nice shot! +[05/24/2026 06:50:00] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:50:00] launching puck at (1.68, -4.71) with (-117.14, 328.17) force +[05/24/2026 06:50:05] Client 16 sent emoji emote 4 +[05/24/2026 06:50:07] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:50:07] launching puck at (0.35, -4.99) with (-24.51, 347.59) force +[05/24/2026 06:50:12] force = 70 * 0.5564413 = 38.95089 +[05/24/2026 06:50:12] launching puck at (-1.68, -0.72) with (65.43, 27.94) force +[05/24/2026 06:50:16] Client 16 sent emoji emote 4 +[05/24/2026 06:50:19] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:50:19] launching puck at (0.71, -4.95) with (-49.75, 344.88) force +[05/24/2026 06:50:19] Red goal scored, red score is now 3 +[05/24/2026 06:50:19] Dedicated match PATCH success: 200 {"ok":true,"id":111} +[05/24/2026 06:50:21] Dedicated match winner PATCH success: 200 {"ok":true,"id":111,"winner_id":17,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/24/2026 06:50:21] Client 15 sent text emote GG +[05/24/2026 06:50:26] Mirror server: client disconnected (connId=720400937) +[05/24/2026 06:50:26] Active player connections: 1 +[05/24/2026 06:50:50] Mirror server: client disconnected (connId=224810456) +[05/24/2026 06:50:50] Active player connections: 0 +[05/24/2026 06:50:55] Server will be closed due to no players in, 60 +[05/24/2026 06:51:05] Server will be closed due to no players in, 50 +[05/24/2026 06:51:15] Server will be closed due to no players in, 40 +[05/24/2026 06:51:25] Server will be closed due to no players in, 30 +[05/24/2026 06:51:35] Server will be closed due to no players in, 20 +[05/24/2026 06:51:45] Server will be closed due to no players in, 10 +[05/24/2026 06:51:55] All players left, exiting +[05/24/2026 06:51:55] Dedicated match PATCH success: 200 {"ok":true,"id":111} diff --git a/games/soccar/soccar_Data/Logs/112.txt b/games/soccar/soccar_Data/Logs/112.txt new file mode 100644 index 0000000..7858760 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/112.txt @@ -0,0 +1,138 @@ +[05/24/2026 06:48:55] Starting server at port 26753 +[05/24/2026 06:48:55] Mirror server exception logging enabled +[05/24/2026 06:48:55] Failed to fetch red and blue names, isServer? +[05/24/2026 06:48:55] Starting auto close watchdog +[05/24/2026 06:48:55] Active player connections: 0 +[05/24/2026 06:48:57] Active player connections: 1 +[05/24/2026 06:48:58] Client 15 set team to Blue +[05/24/2026 06:48:58] Dedicated match PATCH success: 200 {"ok":true,"id":112} +[05/24/2026 06:48:58] Active player connections: 2 +[05/24/2026 06:48:58] Game started On Server +[05/24/2026 06:48:59] Client 16 set team to Red +[05/24/2026 06:48:59] Dedicated match PATCH success: 200 {"ok":true,"id":112} +[05/24/2026 06:49:02] force = 70 * 0.5464908 = 38.25436 +[05/24/2026 06:49:02] launching puck at (-0.12, 1.77) with (4.70, -67.78) force +[05/24/2026 06:49:09] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:49:09] launching puck at (1.06, 4.89) with (-74.00, -340.50) force +[05/24/2026 06:49:14] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:49:14] launching puck at (2.03, -4.57) with (-141.25, 318.54) force +[05/24/2026 06:49:21] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:49:21] launching puck at (4.46, 2.26) with (-310.92, -157.31) force +[05/24/2026 06:49:28] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:49:28] launching puck at (3.29, -3.77) with (-229.09, 262.56) force +[05/24/2026 06:49:34] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:49:34] launching puck at (-2.42, 4.37) with (168.79, -304.85) force +[05/24/2026 06:49:41] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:49:41] launching puck at (4.11, -2.85) with (-286.36, 198.54) force +[05/24/2026 06:49:50] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:49:50] launching puck at (4.53, -2.13) with (-315.36, 148.22) force +[05/24/2026 06:50:00] force = 70 * 0.9361455 = 65.53019 +[05/24/2026 06:50:00] launching puck at (1.10, -4.21) with (-71.88, 276.05) force +[05/24/2026 06:50:07] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:50:07] launching puck at (4.50, 2.18) with (-313.75, -151.60) force +[05/24/2026 06:50:13] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:50:13] launching puck at (-0.65, -4.96) with (45.27, 345.50) force +[05/24/2026 06:50:19] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:50:19] launching puck at (4.38, 2.41) with (-305.26, -168.04) force +[05/24/2026 06:50:20] Blue goal scored, blue score is now 1 +[05/24/2026 06:50:23] Client 16 sent text emote Nice shot! +[05/24/2026 06:50:28] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:50:28] launching puck at (-0.21, -5.00) with (14.30, 348.16) force +[05/24/2026 06:50:34] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:50:34] launching puck at (3.36, 3.71) with (-233.87, -258.31) force +[05/24/2026 06:50:45] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:50:45] launching puck at (3.78, -3.27) with (-263.68, 227.80) force +[05/24/2026 06:50:52] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:50:52] launching puck at (1.20, 4.85) with (-83.72, -338.25) force +[05/24/2026 06:50:59] force = 70 * 0.9893119 = 69.25183 +[05/24/2026 06:50:59] launching puck at (4.92, 0.30) with (-340.81, -21.01) force +[05/24/2026 06:51:05] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:51:05] launching puck at (-2.46, 4.36) with (171.13, -303.54) force +[05/24/2026 06:51:11] force = 70 * 0.8826112 = 61.78278 +[05/24/2026 06:51:11] launching puck at (-3.82, -0.21) with (236.09, 13.10) force +[05/24/2026 06:51:16] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:51:16] launching puck at (-3.57, 3.50) with (248.69, -244.07) force +[05/24/2026 06:51:22] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:51:22] launching puck at (-4.39, -2.39) with (306.00, 166.68) force +[05/24/2026 06:51:27] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:51:27] launching puck at (-1.48, 4.77) with (103.44, -332.75) force +[05/24/2026 06:51:34] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:51:34] launching puck at (2.55, -4.30) with (-177.44, 299.89) force +[05/24/2026 06:51:39] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:51:39] launching puck at (3.72, 3.34) with (-259.19, -232.90) force +[05/24/2026 06:51:45] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:51:45] launching puck at (-0.06, -5.00) with (4.49, 348.42) force +[05/24/2026 06:51:45] Red goal scored, red score is now 1 +[05/24/2026 06:51:51] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:51:51] launching puck at (1.18, 4.86) with (-82.23, -338.61) force +[05/24/2026 06:51:56] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:51:56] launching puck at (-2.61, -4.27) with (181.69, 297.34) force +[05/24/2026 06:52:02] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:52:02] launching puck at (-3.43, 3.63) with (239.29, -253.30) force +[05/24/2026 06:52:07] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:52:07] launching puck at (-2.42, -4.38) with (168.68, 304.91) force +[05/24/2026 06:52:13] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:52:13] launching puck at (-0.71, 4.95) with (49.32, -344.95) force +[05/24/2026 06:52:19] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:52:19] launching puck at (-4.99, -0.27) with (347.95, 18.71) force +[05/24/2026 06:52:25] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:52:25] launching puck at (-2.71, 4.20) with (188.60, -293.00) force +[05/24/2026 06:52:30] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:52:30] launching puck at (-3.39, -3.68) with (236.08, 256.29) force +[05/24/2026 06:52:36] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:52:36] launching puck at (-4.99, -0.28) with (347.93, 19.18) force +[05/24/2026 06:52:44] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:52:44] launching puck at (-4.71, 1.67) with (328.48, -116.28) force +[05/24/2026 06:52:50] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:52:50] launching puck at (-1.74, -4.69) with (121.10, 326.73) force +[05/24/2026 06:52:57] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:52:57] launching puck at (-0.05, -5.00) with (3.21, 348.44) force +[05/24/2026 06:53:02] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:53:02] launching puck at (-4.99, -0.24) with (348.06, 16.54) force +[05/24/2026 06:53:10] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:53:10] launching puck at (0.00, -5.00) with (-0.10, 348.45) force +[05/24/2026 06:53:16] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:53:16] launching puck at (-1.82, -4.66) with (126.98, 324.49) force +[05/24/2026 06:53:21] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:53:21] launching puck at (0.01, -5.00) with (-0.38, 348.45) force +[05/24/2026 06:53:22] Blue goal scored, blue score is now 2 +[05/24/2026 06:53:25] Client 16 sent emoji emote 1 +[05/24/2026 06:53:28] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:53:28] launching puck at (0.22, -5.00) with (-15.07, 348.13) force +[05/24/2026 06:53:34] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:53:34] launching puck at (-3.07, 3.95) with (213.64, -275.28) force +[05/24/2026 06:53:39] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:53:39] launching puck at (0.63, -4.96) with (-43.99, 345.67) force +[05/24/2026 06:53:46] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:53:46] launching puck at (4.26, 2.62) with (-296.84, -182.50) force +[05/24/2026 06:53:51] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:53:51] launching puck at (-2.92, -4.06) with (203.53, 282.83) force +[05/24/2026 06:53:58] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:53:58] launching puck at (-1.05, 4.89) with (73.03, -340.71) force +[05/24/2026 06:54:03] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:54:03] launching puck at (4.22, -2.69) with (-293.86, 187.27) force +[05/24/2026 06:54:10] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:54:10] launching puck at (-1.93, 4.61) with (134.58, -321.42) force +[05/24/2026 06:54:15] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:54:15] launching puck at (-0.43, -4.98) with (30.24, 347.14) force +[05/24/2026 06:54:23] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:54:23] launching puck at (4.05, 2.94) with (-281.98, -204.71) force +[05/24/2026 06:54:28] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:54:28] launching puck at (2.95, 4.04) with (-205.51, -281.40) force +[05/24/2026 06:54:33] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:54:33] launching puck at (2.78, 4.16) with (-193.69, -289.66) force +[05/24/2026 06:54:34] Blue goal scored, blue score is now 3 +[05/24/2026 06:54:35] Dedicated match PATCH success: 200 {"ok":true,"id":112} +[05/24/2026 06:54:36] Dedicated match winner PATCH success: 200 {"ok":true,"id":112,"winner_id":14,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/24/2026 06:54:44] Mirror server: client disconnected (connId=-1479581413) +[05/24/2026 06:54:44] Active player connections: 1 +[05/24/2026 06:54:45] Mirror server: client disconnected (connId=1761030287) +[05/24/2026 06:54:45] Active player connections: 0 +[05/24/2026 06:54:50] Server will be closed due to no players in, 60 +[05/24/2026 06:55:00] Server will be closed due to no players in, 50 +[05/24/2026 06:55:10] Server will be closed due to no players in, 40 +[05/24/2026 06:55:20] Server will be closed due to no players in, 30 +[05/24/2026 06:55:30] Server will be closed due to no players in, 20 +[05/24/2026 06:55:40] Server will be closed due to no players in, 10 +[05/24/2026 06:55:50] All players left, exiting +[05/24/2026 06:55:50] Dedicated match PATCH success: 200 {"ok":true,"id":112} diff --git a/games/soccar/soccar_Data/Logs/113.txt b/games/soccar/soccar_Data/Logs/113.txt new file mode 100644 index 0000000..3209b15 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/113.txt @@ -0,0 +1,120 @@ +[05/24/2026 06:54:56] Starting server at port 26737 +[05/24/2026 06:54:56] Mirror server exception logging enabled +[05/24/2026 06:54:56] Failed to fetch red and blue names, isServer? +[05/24/2026 06:54:56] Starting auto close watchdog +[05/24/2026 06:54:56] Active player connections: 0 +[05/24/2026 06:54:59] Active player connections: 1 +[05/24/2026 06:54:59] Client 15 set team to Blue +[05/24/2026 06:54:59] Dedicated match PATCH success: 200 {"ok":true,"id":113} +[05/24/2026 06:54:59] Active player connections: 2 +[05/24/2026 06:54:59] Game started On Server +[05/24/2026 06:55:00] Client 16 set team to Red +[05/24/2026 06:55:00] Dedicated match PATCH success: 200 {"ok":true,"id":113} +[05/24/2026 06:55:02] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:55:02] launching puck at (0.26, -4.99) with (-18.11, 347.98) force +[05/24/2026 06:55:08] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:55:08] launching puck at (-3.20, 3.84) with (223.19, -267.60) force +[05/24/2026 06:55:13] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:55:13] launching puck at (4.92, -0.90) with (-342.79, 62.57) force +[05/24/2026 06:55:19] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:55:19] launching puck at (-0.21, 5.00) with (14.93, -348.13) force +[05/24/2026 06:55:21] Blue goal scored, blue score is now 1 +[05/24/2026 06:55:26] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:55:26] launching puck at (0.34, -4.99) with (-23.96, 347.63) force +[05/24/2026 06:55:31] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:55:31] launching puck at (-3.67, 3.40) with (255.76, -236.66) force +[05/24/2026 06:55:37] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:55:37] launching puck at (-4.18, -2.74) with (291.52, 190.88) force +[05/24/2026 06:55:43] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:55:43] launching puck at (-1.69, 4.71) with (117.81, -327.93) force +[05/24/2026 06:55:49] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:55:49] launching puck at (-4.79, -1.43) with (334.00, 99.33) force +[05/24/2026 06:55:55] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:55:55] launching puck at (-4.07, 2.91) with (283.47, -202.65) force +[05/24/2026 06:56:00] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:56:00] launching puck at (-1.05, -4.89) with (72.92, 340.74) force +[05/24/2026 06:56:07] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:56:07] launching puck at (-3.13, -3.90) with (218.47, 271.46) force +[05/24/2026 06:56:13] force = 70 * 0.9559585 = 66.91709 +[05/24/2026 06:56:13] launching puck at (-3.54, -2.88) with (236.68, 193.04) force +[05/24/2026 06:56:20] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:56:20] launching puck at (2.33, -4.42) with (-162.44, 308.27) force +[05/24/2026 06:56:25] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:56:25] launching puck at (2.00, -4.58) with (-139.37, 319.37) force +[05/24/2026 06:56:25] Red goal scored, red score is now 1 +[05/24/2026 06:56:37] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:56:37] launching puck at (3.25, 3.80) with (-226.24, -265.02) force +[05/24/2026 06:56:42] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:56:42] launching puck at (0.07, -5.00) with (-4.84, 348.42) force +[05/24/2026 06:56:49] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:56:49] launching puck at (2.61, 4.26) with (-181.99, -297.15) force +[05/24/2026 06:56:56] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:56:56] launching puck at (3.96, 3.05) with (-276.31, -212.30) force +[05/24/2026 06:57:02] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:57:02] launching puck at (4.42, 2.33) with (-308.32, -162.35) force +[05/24/2026 06:57:08] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:57:08] launching puck at (0.01, 5.00) with (-0.66, -348.45) force +[05/24/2026 06:57:09] Blue goal scored, blue score is now 2 +[05/24/2026 06:57:16] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:57:16] launching puck at (0.12, -5.00) with (-8.65, 348.35) force +[05/24/2026 06:57:23] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:57:23] launching puck at (-4.27, 2.61) with (297.39, -181.61) force +[05/24/2026 06:57:28] force = 70 * 0.9122512 = 63.85758 +[05/24/2026 06:57:28] launching puck at (4.04, -0.77) with (-257.81, 48.95) force +[05/24/2026 06:57:34] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:57:34] launching puck at (-1.99, 4.59) with (138.66, -319.68) force +[05/24/2026 06:57:39] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:57:39] launching puck at (-4.45, -2.28) with (310.02, 159.09) force +[05/24/2026 06:57:45] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:57:45] launching puck at (1.23, 4.85) with (-85.38, -337.83) force +[05/24/2026 06:57:52] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:57:52] launching puck at (-3.86, -3.18) with (268.67, 221.89) force +[05/24/2026 06:57:57] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:57:57] launching puck at (-4.69, 1.73) with (327.01, -120.35) force +[05/24/2026 06:58:03] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:58:03] launching puck at (-3.90, -3.13) with (271.64, 218.25) force +[05/24/2026 06:58:09] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:58:09] launching puck at (0.04, -5.00) with (-3.03, 348.44) force +[05/24/2026 06:58:14] force = 70 * 0.8266594 = 57.86616 +[05/24/2026 06:58:14] launching puck at (3.21, -1.00) with (-185.50, 57.59) force +[05/24/2026 06:58:15] Red goal scored, red score is now 2 +[05/24/2026 06:58:21] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:58:21] launching puck at (2.16, 4.51) with (-150.75, -314.16) force +[05/24/2026 06:58:26] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:58:26] launching puck at (1.16, -4.86) with (-80.92, 338.93) force +[05/24/2026 06:58:31] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:58:31] launching puck at (0.10, 5.00) with (-6.76, -348.39) force +[05/24/2026 06:58:38] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:58:38] launching puck at (-3.33, -3.73) with (231.90, 260.08) force +[05/24/2026 06:58:44] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:58:44] launching puck at (1.60, 4.74) with (-111.26, -330.21) force +[05/24/2026 06:58:47] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:58:47] launching puck at (-0.71, -4.95) with (49.36, 344.94) force +[05/24/2026 06:58:53] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:58:53] launching puck at (-3.31, 3.75) with (230.71, -261.13) force +[05/24/2026 06:58:58] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:58:58] launching puck at (-2.45, -4.36) with (170.93, 303.65) force +[05/24/2026 06:59:03] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:59:03] launching puck at (-4.71, -1.68) with (328.30, 116.79) force +[05/24/2026 06:59:08] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:59:08] launching puck at (-0.19, -5.00) with (13.21, 348.20) force +[05/24/2026 06:59:13] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:59:13] launching puck at (1.63, 4.73) with (-113.34, -329.51) force +[05/24/2026 06:59:14] Blue goal scored, blue score is now 3 +[05/24/2026 06:59:14] Dedicated match PATCH success: 200 {"ok":true,"id":113} +[05/24/2026 06:59:16] Dedicated match winner PATCH success: 200 {"ok":true,"id":113,"winner_id":14,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/24/2026 06:59:21] Rematch requested +[05/24/2026 06:59:24] Rematch was confirmed, closing in 5 secs. new room : +[05/24/2026 06:59:24] {"ok":true,"entry_fee":999,"rc_prize":1658,"for_red":{"Players":[{"Name":"Modisi","LastSeen":1779605964355,"l10_wins":5,"l10_losses":4,"UserId":18,"rc":0.0},{"Name":"SebastianMCS","LastSeen":1779605964355,"l10_wins":4,"l10_losses":5,"UserId":14,"rc":0.0}],"GameName":"soccar","Port":26179,"InitTime":1779605964355,"instance_started":true,"match_id":115,"entry_fee":999,"rc_prize":1658,"your_team":"red"},"for_blue":{"Players":[{"Name":"Modisi","LastSeen":1779605964355,"l10_wins":5,"l10_losses":4,"UserId":18,"rc":0.0},{"Name":"SebastianMCS","LastSeen":1779605964355,"l10_wins":4,"l10_losses":5,"UserId":14,"rc":0.0}],"GameName":"soccar","Port":26179,"InitTime":1779605964355,"instance_started":true,"match_id":115,"entry_fee":999,"rc_prize":1658,"your_team":"blue"},"your_team":""} +[05/24/2026 06:59:24] Mirror server: client disconnected (connId=1761042613) +[05/24/2026 06:59:24] Active player connections: 1 +[05/24/2026 06:59:24] Mirror server: client disconnected (connId=207068044) +[05/24/2026 06:59:24] Active player connections: 0 +[05/24/2026 06:59:29] Server will be closed due to no players in, 60 +[05/24/2026 06:59:39] Server will be closed due to no players in, 50 +[05/24/2026 06:59:49] Server will be closed due to no players in, 40 +[05/24/2026 06:59:59] Server will be closed due to no players in, 30 +[05/24/2026 07:00:09] Server will be closed due to no players in, 20 +[05/24/2026 07:00:19] Server will be closed due to no players in, 10 +[05/24/2026 07:00:29] All players left, exiting +[05/24/2026 07:00:30] Dedicated match PATCH success: 200 {"ok":true,"id":113} diff --git a/games/soccar/soccar_Data/Logs/114.txt b/games/soccar/soccar_Data/Logs/114.txt new file mode 100644 index 0000000..61af27c --- /dev/null +++ b/games/soccar/soccar_Data/Logs/114.txt @@ -0,0 +1,142 @@ +[05/24/2026 06:56:20] Starting server at port 26006 +[05/24/2026 06:56:20] Mirror server exception logging enabled +[05/24/2026 06:56:20] Failed to fetch red and blue names, isServer? +[05/24/2026 06:56:20] Starting auto close watchdog +[05/24/2026 06:56:20] Active player connections: 0 +[05/24/2026 06:56:23] Active player connections: 1 +[05/24/2026 06:56:23] Client 15 set team to Blue +[05/24/2026 06:56:23] Active player connections: 2 +[05/24/2026 06:56:23] Game started On Server +[05/24/2026 06:56:23] Dedicated match PATCH success: 200 {"ok":true,"id":114} +[05/24/2026 06:56:24] Client 16 set team to Red +[05/24/2026 06:56:24] Dedicated match PATCH success: 200 {"ok":true,"id":114} +[05/24/2026 06:56:37] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:56:37] launching puck at (-0.18, -5.00) with (12.21, 348.24) force +[05/24/2026 06:56:41] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:56:41] launching puck at (-1.42, -4.79) with (98.84, 334.14) force +[05/24/2026 06:56:48] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:56:48] launching puck at (0.18, -5.00) with (-12.55, 348.23) force +[05/24/2026 06:56:48] Red goal scored, red score is now 1 +[05/24/2026 06:56:54] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:56:54] launching puck at (-0.21, 5.00) with (14.38, -348.16) force +[05/24/2026 06:57:00] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:57:00] launching puck at (3.83, -3.22) with (-266.87, 224.06) force +[05/24/2026 06:57:05] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:57:05] launching puck at (-4.62, 1.91) with (322.08, -132.99) force +[05/24/2026 06:57:12] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:57:12] launching puck at (1.37, -4.81) with (-95.16, 335.21) force +[05/24/2026 06:57:17] force = 70 * 0.8928517 = 62.49962 +[05/24/2026 06:57:17] launching puck at (-3.92, 0.17) with (244.91, -10.40) force +[05/24/2026 06:57:23] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:57:23] launching puck at (0.77, -4.94) with (-53.82, 344.27) force +[05/24/2026 06:57:31] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:57:31] launching puck at (-2.04, 4.57) with (141.96, -318.22) force +[05/24/2026 06:57:36] force = 70 * 0.8163114 = 57.1418 +[05/24/2026 06:57:36] launching puck at (2.63, 1.96) with (-150.33, -111.73) force +[05/24/2026 06:57:47] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:57:47] launching puck at (-1.82, 4.66) with (126.86, -324.54) force +[05/24/2026 06:57:58] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:57:58] launching puck at (0.80, -4.94) with (-55.74, 343.97) force +[05/24/2026 06:58:05] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:58:05] launching puck at (4.28, 2.59) with (-298.14, -180.36) force +[05/24/2026 06:58:12] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:58:12] launching puck at (1.93, -4.61) with (-134.27, 321.55) force +[05/24/2026 06:58:19] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:58:19] launching puck at (-1.72, 4.69) with (119.91, -327.17) force +[05/24/2026 06:58:24] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:58:24] launching puck at (-2.29, 4.44) with (159.60, -309.75) force +[05/24/2026 06:58:31] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:58:31] launching puck at (-0.99, 4.90) with (69.16, -341.52) force +[05/24/2026 06:58:39] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:58:39] launching puck at (-1.86, 4.64) with (129.74, -323.40) force +[05/24/2026 06:58:46] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:58:46] launching puck at (1.95, 4.60) with (-136.07, -320.79) force +[05/24/2026 06:58:46] Blue goal scored, blue score is now 1 +[05/24/2026 06:58:53] force = 70 * 0.7319598 = 51.23718 +[05/24/2026 06:58:53] launching puck at (-0.15, 2.71) with (7.70, -138.90) force +[05/24/2026 06:59:01] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:59:01] launching puck at (-0.22, 5.00) with (15.20, -348.12) force +[05/24/2026 06:59:01] Blue goal scored, blue score is now 2 +[05/24/2026 06:59:10] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:59:10] launching puck at (-0.18, -5.00) with (12.74, 348.22) force +[05/24/2026 06:59:15] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:59:15] launching puck at (-2.52, 4.32) with (175.85, -300.83) force +[05/24/2026 06:59:21] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:59:21] launching puck at (-1.34, -4.82) with (93.52, 335.67) force +[05/24/2026 06:59:26] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:59:26] launching puck at (-3.17, 3.87) with (220.77, -269.59) force +[05/24/2026 06:59:35] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:59:35] launching puck at (-3.73, -3.33) with (260.06, 231.92) force +[05/24/2026 06:59:49] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:59:49] launching puck at (0.89, -4.92) with (-62.35, 342.83) force +[05/24/2026 06:59:53] Client 15 sent text emote What a save! +[05/24/2026 06:59:58] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:59:58] launching puck at (-2.69, -4.22) with (187.33, 293.82) force +[05/24/2026 07:00:00] Red goal scored, red score is now 2 +[05/24/2026 07:00:05] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:00:05] launching puck at (-0.06, 5.00) with (4.05, -348.43) force +[05/24/2026 07:00:06] Client 16 sent emoji emote 3 +[05/24/2026 07:00:10] Client 15 sent emoji emote 0 +[05/24/2026 07:00:14] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:00:14] launching puck at (-2.19, -4.50) with (152.49, 313.31) force +[05/24/2026 07:00:19] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:00:19] launching puck at (-1.14, 4.87) with (79.75, -339.21) force +[05/24/2026 07:00:23] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:00:23] launching puck at (-0.17, -5.00) with (11.86, 348.25) force +[05/24/2026 07:00:35] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:00:35] launching puck at (0.65, 4.96) with (-45.19, -345.51) force +[05/24/2026 07:00:41] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:00:41] launching puck at (-5.00, -0.03) with (348.45, 2.02) force +[05/24/2026 07:00:45] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:00:45] launching puck at (-0.14, 5.00) with (9.67, -348.32) force +[05/24/2026 07:00:50] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:00:50] launching puck at (3.48, 3.59) with (-242.49, -250.23) force +[05/24/2026 07:00:59] force = 70 * 0.9182532 = 64.27773 +[05/24/2026 07:00:59] launching puck at (3.59, 2.12) with (-230.71, -136.38) force +[05/24/2026 07:01:06] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:01:06] launching puck at (3.47, -3.60) with (-241.48, 251.21) force +[05/24/2026 07:01:17] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:01:17] launching puck at (-0.29, 4.99) with (20.42, -347.85) force +[05/24/2026 07:01:27] force = 70 * 0.3564312 = 24.95019 +[05/24/2026 07:01:27] launching puck at (-0.05, 1.12) with (1.26, -28.01) force +[05/24/2026 07:01:34] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:01:34] launching puck at (5.00, 0.04) with (-348.44, -3.09) force +[05/24/2026 07:01:42] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:01:42] launching puck at (0.39, -4.98) with (-27.17, 347.39) force +[05/24/2026 07:01:48] force = 70 * 0.8061624 = 56.43137 +[05/24/2026 07:01:48] launching puck at (1.50, 2.83) with (-84.37, -159.85) force +[05/24/2026 07:01:55] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:01:55] launching puck at (2.58, -4.28) with (-179.82, 298.47) force +[05/24/2026 07:02:00] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:02:00] launching puck at (0.09, 5.00) with (-6.27, -348.40) force +[05/24/2026 07:02:05] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:02:05] launching puck at (0.57, -4.97) with (-40.00, 346.15) force +[05/24/2026 07:02:11] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:02:11] launching puck at (3.75, 3.31) with (-261.47, -230.33) force +[05/24/2026 07:02:18] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:02:18] launching puck at (4.85, -1.21) with (-338.05, 84.50) force +[05/24/2026 07:02:23] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:02:23] launching puck at (-2.47, -4.35) with (171.87, 303.12) force +[05/24/2026 07:02:28] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:02:28] launching puck at (-1.09, 4.88) with (75.80, -340.11) force +[05/24/2026 07:02:34] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:02:34] launching puck at (3.89, 3.15) with (-270.88, -219.19) force +[05/24/2026 07:02:46] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:02:46] launching puck at (-4.08, -2.89) with (284.51, 201.18) force +[05/24/2026 07:02:52] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:02:52] launching puck at (-1.86, 4.64) with (129.62, -323.45) force +[05/24/2026 07:02:52] Blue goal scored, blue score is now 3 +[05/24/2026 07:02:52] Dedicated match PATCH success: 200 {"ok":true,"id":114} +[05/24/2026 07:02:54] Dedicated match winner PATCH success: 200 {"ok":true,"id":114,"winner_id":17,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/24/2026 07:03:03] Mirror server: client disconnected (connId=224806585) +[05/24/2026 07:03:04] Active player connections: 1 +[05/24/2026 07:03:04] Mirror server: client disconnected (connId=-1479580970) +[05/24/2026 07:03:04] Active player connections: 0 +[05/24/2026 07:03:09] Server will be closed due to no players in, 60 +[05/24/2026 07:03:19] Server will be closed due to no players in, 50 +[05/24/2026 07:03:29] Server will be closed due to no players in, 40 +[05/24/2026 07:03:39] Server will be closed due to no players in, 30 +[05/24/2026 07:03:49] Server will be closed due to no players in, 20 +[05/24/2026 07:03:59] Server will be closed due to no players in, 10 +[05/24/2026 07:04:09] All players left, exiting +[05/24/2026 07:04:09] Dedicated match PATCH success: 200 {"ok":true,"id":114} diff --git a/games/soccar/soccar_Data/Logs/115.txt b/games/soccar/soccar_Data/Logs/115.txt new file mode 100644 index 0000000..d9b2d29 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/115.txt @@ -0,0 +1,101 @@ +[05/24/2026 06:59:25] Starting server at port 26179 +[05/24/2026 06:59:25] Mirror server exception logging enabled +[05/24/2026 06:59:25] Failed to fetch red and blue names, isServer? +[05/24/2026 06:59:25] Starting auto close watchdog +[05/24/2026 06:59:25] Active player connections: 0 +[05/24/2026 06:59:29] Active player connections: 1 +[05/24/2026 06:59:29] Active player connections: 2 +[05/24/2026 06:59:29] Game started On Server +[05/24/2026 06:59:29] Client 15 set team to Blue +[05/24/2026 06:59:29] Client 16 set team to Red +[05/24/2026 06:59:29] Dedicated match PATCH success: 200 {"ok":true,"id":115} +[05/24/2026 06:59:29] Dedicated match PATCH success: 200 {"ok":true,"id":115} +[05/24/2026 06:59:31] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:59:31] launching puck at (0.14, -5.00) with (-9.88, 348.31) force +[05/24/2026 06:59:43] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:59:43] launching puck at (-4.43, 2.33) with (308.45, -162.11) force +[05/24/2026 06:59:48] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:59:48] launching puck at (3.25, -3.80) with (-226.63, 264.69) force +[05/24/2026 06:59:54] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:59:54] launching puck at (1.49, 4.77) with (-103.75, -332.65) force +[05/24/2026 06:59:55] Blue goal scored, blue score is now 1 +[05/24/2026 07:00:00] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:00:00] launching puck at (0.18, -5.00) with (-12.51, 348.23) force +[05/24/2026 07:00:06] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:00:06] launching puck at (-3.24, 3.81) with (225.61, -265.56) force +[05/24/2026 07:00:10] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:00:10] launching puck at (-3.14, 3.89) with (218.88, -271.13) force +[05/24/2026 07:00:17] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:00:17] launching puck at (-4.92, 0.88) with (342.99, -61.48) force +[05/24/2026 07:00:22] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:00:22] launching puck at (-0.59, -4.96) with (41.26, 346.00) force +[05/24/2026 07:00:28] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:00:28] launching puck at (-3.40, 3.67) with (236.71, -255.71) force +[05/24/2026 07:00:34] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:00:34] launching puck at (-3.00, -4.00) with (209.15, 278.70) force +[05/24/2026 07:00:41] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:00:41] launching puck at (-4.78, 1.45) with (333.38, -101.39) force +[05/24/2026 07:00:47] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:00:47] launching puck at (-0.64, -4.96) with (44.26, 345.63) force +[05/24/2026 07:00:52] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:00:52] launching puck at (1.44, -4.79) with (-100.61, 333.61) force +[05/24/2026 07:00:58] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:00:58] launching puck at (3.64, 3.43) with (-253.75, -238.81) force +[05/24/2026 07:01:05] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:01:05] launching puck at (-0.49, 4.98) with (34.39, -346.75) force +[05/24/2026 07:01:06] Blue goal scored, blue score is now 2 +[05/24/2026 07:01:10] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:01:10] launching puck at (0.06, -5.00) with (-4.14, 348.43) force +[05/24/2026 07:01:17] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:01:17] launching puck at (3.56, 3.51) with (-248.05, -244.73) force +[05/24/2026 07:01:23] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:01:23] launching puck at (2.79, -4.15) with (-194.49, 289.12) force +[05/24/2026 07:01:28] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:01:28] launching puck at (0.41, 4.98) with (-28.78, -347.26) force +[05/24/2026 07:01:36] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:01:36] launching puck at (4.88, 1.10) with (-339.95, -76.50) force +[05/24/2026 07:01:41] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:01:41] launching puck at (0.97, 4.90) with (-67.73, -341.81) force +[05/24/2026 07:01:46] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:01:46] launching puck at (4.90, 0.98) with (-341.65, -68.51) force +[05/24/2026 07:01:52] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:01:52] launching puck at (2.27, 4.45) with (-158.35, -310.40) force +[05/24/2026 07:01:58] force = 70 * 0.9110144 = 63.77101 +[05/24/2026 07:01:58] launching puck at (4.09, -0.16) with (-261.09, 10.13) force +[05/24/2026 07:02:04] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:02:04] launching puck at (2.02, 4.57) with (-141.07, -318.62) force +[05/24/2026 07:02:09] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:02:09] launching puck at (4.40, -2.37) with (-306.76, 165.27) force +[05/24/2026 07:02:14] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:02:14] launching puck at (2.11, 4.53) with (-147.17, -315.85) force +[05/24/2026 07:02:19] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:02:19] launching puck at (3.55, -3.52) with (-247.62, 245.17) force +[05/24/2026 07:02:20] Red goal scored, red score is now 1 +[05/24/2026 07:02:25] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:02:25] launching puck at (2.18, 4.50) with (-152.03, -313.54) force +[05/24/2026 07:02:31] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:02:31] launching puck at (0.96, -4.91) with (-67.17, 341.92) force +[05/24/2026 07:02:36] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:02:36] launching puck at (-3.94, 3.08) with (274.57, -214.55) force +[05/24/2026 07:02:41] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:02:41] launching puck at (1.88, -4.63) with (-131.25, 322.79) force +[05/24/2026 07:02:47] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:02:47] launching puck at (0.92, 4.91) with (-64.17, -342.49) force +[05/24/2026 07:02:47] Blue goal scored, blue score is now 3 +[05/24/2026 07:02:48] Dedicated match PATCH success: 200 {"ok":true,"id":115} +[05/24/2026 07:02:49] Dedicated match winner PATCH success: 200 {"ok":true,"id":115,"winner_id":14,"economy":{"entry_fee_rc":999,"rc_prize":1658,"participant_cc":100}} +[05/24/2026 07:02:54] Rematch requested +[05/24/2026 07:02:57] Rematch was confirmed, closing in 5 secs. new room : +[05/24/2026 07:02:57] {"ok":true,"entry_fee":500,"rc_prize":830,"for_red":{"Players":[{"Name":"Modisi","LastSeen":1779606177169,"l10_wins":5,"l10_losses":4,"UserId":18,"rc":0.0},{"Name":"SebastianMCS","LastSeen":1779606177169,"l10_wins":5,"l10_losses":4,"UserId":14,"rc":0.0}],"GameName":"soccar","Port":26020,"InitTime":1779606177169,"instance_started":true,"match_id":116,"entry_fee":500,"rc_prize":830,"your_team":"red"},"for_blue":{"Players":[{"Name":"Modisi","LastSeen":1779606177169,"l10_wins":5,"l10_losses":4,"UserId":18,"rc":0.0},{"Name":"SebastianMCS","LastSeen":1779606177169,"l10_wins":5,"l10_losses":4,"UserId":14,"rc":0.0}],"GameName":"soccar","Port":26020,"InitTime":1779606177169,"instance_started":true,"match_id":116,"entry_fee":500,"rc_prize":830,"your_team":"blue"},"your_team":""} +[05/24/2026 07:02:57] Mirror server: client disconnected (connId=1761032745) +[05/24/2026 07:02:57] Active player connections: 1 +[05/24/2026 07:02:57] Mirror server: client disconnected (connId=207068053) +[05/24/2026 07:02:57] Active player connections: 0 +[05/24/2026 07:03:02] Server will be closed due to no players in, 60 +[05/24/2026 07:03:12] Server will be closed due to no players in, 50 +[05/24/2026 07:03:22] Server will be closed due to no players in, 40 +[05/24/2026 07:03:32] Server will be closed due to no players in, 30 +[05/24/2026 07:03:42] Server will be closed due to no players in, 20 +[05/24/2026 07:03:52] Server will be closed due to no players in, 10 +[05/24/2026 07:04:02] All players left, exiting +[05/24/2026 07:04:02] Dedicated match PATCH success: 200 {"ok":true,"id":115} diff --git a/games/soccar/soccar_Data/Logs/116.txt b/games/soccar/soccar_Data/Logs/116.txt new file mode 100644 index 0000000..3375773 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/116.txt @@ -0,0 +1,104 @@ +[05/24/2026 07:02:58] Starting server at port 26020 +[05/24/2026 07:02:58] Mirror server exception logging enabled +[05/24/2026 07:02:58] Failed to fetch red and blue names, isServer? +[05/24/2026 07:02:58] Starting auto close watchdog +[05/24/2026 07:02:58] Active player connections: 0 +[05/24/2026 07:03:03] Active player connections: 1 +[05/24/2026 07:03:03] Active player connections: 2 +[05/24/2026 07:03:03] Game started On Server +[05/24/2026 07:03:03] Client 15 set team to Blue +[05/24/2026 07:03:03] Client 16 set team to Red +[05/24/2026 07:03:04] Dedicated match PATCH success: 200 {"ok":true,"id":116} +[05/24/2026 07:03:04] Dedicated match PATCH success: 200 {"ok":true,"id":116} +[05/24/2026 07:03:06] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:03:06] launching puck at (0.21, -5.00) with (-14.92, 348.13) force +[05/24/2026 07:03:11] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:03:11] launching puck at (-2.80, 4.14) with (195.45, -288.48) force +[05/24/2026 07:03:18] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:03:18] launching puck at (-3.79, -3.27) with (263.83, 227.63) force +[05/24/2026 07:03:23] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:03:23] launching puck at (-2.39, 4.39) with (166.49, -306.11) force +[05/24/2026 07:03:23] Blue goal scored, blue score is now 1 +[05/24/2026 07:03:27] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:03:27] launching puck at (0.23, -4.99) with (-16.01, 348.09) force +[05/24/2026 07:03:33] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:03:33] launching puck at (-3.49, 3.58) with (242.97, -249.77) force +[05/24/2026 07:03:38] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:03:38] launching puck at (1.97, -4.60) with (-137.04, 320.37) force +[05/24/2026 07:03:43] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:03:43] launching puck at (4.75, -1.57) with (-330.94, 109.09) force +[05/24/2026 07:03:49] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:03:49] launching puck at (5.00, 0.16) with (-348.28, -10.96) force +[05/24/2026 07:03:56] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:03:56] launching puck at (2.98, 4.02) with (-207.55, -279.90) force +[05/24/2026 07:04:02] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:04:02] launching puck at (0.63, -4.96) with (-43.60, 345.71) force +[05/24/2026 07:04:08] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:04:08] launching puck at (3.00, 4.00) with (-208.78, -278.98) force +[05/24/2026 07:04:09] Blue goal scored, blue score is now 2 +[05/24/2026 07:04:13] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:04:13] launching puck at (0.30, -4.99) with (-20.86, 347.83) force +[05/24/2026 07:04:18] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:04:18] launching puck at (-3.44, 3.63) with (239.76, -252.86) force +[05/24/2026 07:04:24] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:04:24] launching puck at (2.04, -4.57) with (-141.99, 318.21) force +[05/24/2026 07:04:33] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:04:33] launching puck at (0.78, -4.94) with (-54.60, 344.15) force +[05/24/2026 07:04:39] force = 70 * 0.9529435 = 66.70605 +[05/24/2026 07:04:39] launching puck at (-3.70, -2.62) with (246.78, 174.58) force +[05/24/2026 07:04:47] force = 70 * 0.9272959 = 64.91071 +[05/24/2026 07:04:47] launching puck at (3.48, 2.45) with (-226.13, -159.30) force +[05/24/2026 07:04:53] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:04:53] launching puck at (4.37, -2.44) with (-304.21, 169.92) force +[05/24/2026 07:05:00] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:05:00] launching puck at (-2.89, -4.08) with (201.12, 284.55) force +[05/24/2026 07:05:05] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:05:05] launching puck at (-0.32, -4.99) with (22.50, 347.73) force +[05/24/2026 07:05:06] Red goal scored, red score is now 1 +[05/24/2026 07:05:11] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:05:11] launching puck at (3.39, 3.68) with (-236.11, -256.27) force +[05/24/2026 07:05:16] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:05:16] launching puck at (0.62, -4.96) with (-42.88, 345.80) force +[05/24/2026 07:05:21] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:05:21] launching puck at (-1.31, 4.82) with (91.56, -336.21) force +[05/24/2026 07:05:27] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:05:27] launching puck at (3.31, 3.74) with (-230.90, -260.97) force +[05/24/2026 07:05:32] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:05:32] launching puck at (4.95, 0.68) with (-345.26, -47.10) force +[05/24/2026 07:05:37] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:05:37] launching puck at (-2.10, -4.54) with (146.27, 316.27) force +[05/24/2026 07:05:43] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:05:43] launching puck at (4.65, -1.83) with (-324.23, 127.66) force +[05/24/2026 07:05:48] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:05:48] launching puck at (-0.26, -4.99) with (18.18, 347.98) force +[05/24/2026 07:05:49] Red goal scored, red score is now 2 +[05/24/2026 07:05:56] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:05:56] launching puck at (1.16, 4.86) with (-80.73, -338.97) force +[05/24/2026 07:06:01] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:06:01] launching puck at (0.30, -4.99) with (-21.13, 347.81) force +[05/24/2026 07:06:06] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:06:06] launching puck at (3.02, 3.98) with (-210.60, -277.61) force +[05/24/2026 07:06:12] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:06:12] launching puck at (2.14, -4.52) with (-149.46, 314.77) force +[05/24/2026 07:06:18] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:06:18] launching puck at (2.89, 4.08) with (-201.22, -284.48) force +[05/24/2026 07:06:23] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:06:23] launching puck at (3.17, -3.87) with (-220.99, 269.41) force +[05/24/2026 07:06:29] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 07:06:29] launching puck at (4.92, 0.87) with (-343.19, -60.31) force +[05/24/2026 07:06:29] Blue goal scored, blue score is now 3 +[05/24/2026 07:06:29] Dedicated match PATCH success: 200 {"ok":true,"id":116} +[05/24/2026 07:06:31] Dedicated match winner PATCH success: 200 {"ok":true,"id":116,"winner_id":14,"economy":{"entry_fee_rc":500,"rc_prize":830,"participant_cc":100}} +[05/24/2026 07:06:38] Mirror server: client disconnected (connId=207068040) +[05/24/2026 07:06:38] Active player connections: 1 +[05/24/2026 07:06:45] Mirror server transport error (connId=1761027396, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting. +[05/24/2026 07:06:45] Mirror server: client disconnected (connId=1761027396) +[05/24/2026 07:06:45] Active player connections: 0 +[05/24/2026 07:06:50] Server will be closed due to no players in, 60 +[05/24/2026 07:07:00] Server will be closed due to no players in, 50 +[05/24/2026 07:07:10] Server will be closed due to no players in, 40 +[05/24/2026 07:07:20] Server will be closed due to no players in, 30 +[05/24/2026 07:07:30] Server will be closed due to no players in, 20 +[05/24/2026 07:07:40] Server will be closed due to no players in, 10 +[05/24/2026 07:07:50] All players left, exiting +[05/24/2026 07:07:50] Dedicated match PATCH success: 200 {"ok":true,"id":116} diff --git a/games/soccar/soccar_Data/Logs/117.txt b/games/soccar/soccar_Data/Logs/117.txt new file mode 100644 index 0000000..ad5cdb0 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/117.txt @@ -0,0 +1,13 @@ +[05/27/2026 17:51:26] Starting server at port 26441 +[05/27/2026 17:51:26] Mirror server exception logging enabled +[05/27/2026 17:51:26] Failed to fetch red and blue names, isServer? +[05/27/2026 17:51:26] Starting auto close watchdog +[05/27/2026 17:51:26] Active player connections: 0 +[05/27/2026 17:51:31] Server will be closed due to no players in, 60 +[05/27/2026 17:51:41] Server will be closed due to no players in, 50 +[05/27/2026 17:51:51] Server will be closed due to no players in, 40 +[05/27/2026 17:52:01] Server will be closed due to no players in, 30 +[05/27/2026 17:52:11] Server will be closed due to no players in, 20 +[05/27/2026 17:52:21] Server will be closed due to no players in, 10 +[05/27/2026 17:52:31] No players joined, exiting +[05/27/2026 17:52:32] Dedicated match PATCH success: 200 {"ok":true,"id":117} diff --git a/games/soccar/soccar_Data/Logs/118.txt b/games/soccar/soccar_Data/Logs/118.txt new file mode 100644 index 0000000..dcebb27 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/118.txt @@ -0,0 +1,42 @@ +[05/27/2026 17:52:33] Starting server at port 26958 +[05/27/2026 17:52:33] Mirror server exception logging enabled +[05/27/2026 17:52:34] Failed to fetch red and blue names, isServer? +[05/27/2026 17:52:34] Starting auto close watchdog +[05/27/2026 17:52:34] Active player connections: 0 +[05/27/2026 17:52:36] Active player connections: 1 +[05/27/2026 17:52:36] Client 15 set team to Red +[05/27/2026 17:52:36] Dedicated match PATCH success: 200 {"ok":true,"id":118} +[05/27/2026 17:52:36] Active player connections: 2 +[05/27/2026 17:52:36] Game started On Server +[05/27/2026 17:52:37] Client 16 set team to Blue +[05/27/2026 17:52:37] Dedicated match PATCH success: 200 {"ok":true,"id":118} +[05/27/2026 17:52:39] force = 70 * 0.9955804 = 69.69063 +[05/27/2026 17:52:39] launching puck at (0.02, -5.00) with (-1.53, 348.45) force +[05/27/2026 17:52:46] force = 70 * 0.9955804 = 69.69063 +[05/27/2026 17:52:46] launching puck at (-0.04, -5.00) with (2.57, 348.44) force +[05/27/2026 17:52:47] Red goal scored, red score is now 1 +[05/27/2026 17:52:52] force = 70 * 0.6905488 = 48.33842 +[05/27/2026 17:52:52] launching puck at (-2.20, 1.14) with (106.52, -55.06) force +[05/27/2026 17:52:57] force = 70 * 0.9955804 = 69.69063 +[05/27/2026 17:52:57] launching puck at (0.06, -5.00) with (-3.99, 348.43) force +[05/27/2026 17:52:58] Red goal scored, red score is now 2 +[05/27/2026 17:53:02] force = 70 * 0.8514363 = 59.60054 +[05/27/2026 17:53:02] launching puck at (-2.69, 2.32) with (160.55, -138.29) force +[05/27/2026 17:53:08] force = 70 * 0.9955804 = 69.69063 +[05/27/2026 17:53:08] launching puck at (-0.04, -5.00) with (2.47, 348.44) force +[05/27/2026 17:53:08] Red goal scored, red score is now 3 +[05/27/2026 17:53:08] Dedicated match PATCH success: 200 {"ok":true,"id":118} +[05/27/2026 17:53:10] Dedicated match winner PATCH success: 200 {"ok":true,"id":118,"winner_id":3,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/27/2026 17:53:34] Rematch requested +[05/27/2026 17:53:59] Mirror server: client disconnected (connId=1441821109) +[05/27/2026 17:53:59] Active player connections: 1 +[05/27/2026 17:54:01] Mirror server: client disconnected (connId=1441821110) +[05/27/2026 17:54:01] Active player connections: 0 +[05/27/2026 17:54:06] Server will be closed due to no players in, 60 +[05/27/2026 17:54:16] Server will be closed due to no players in, 50 +[05/27/2026 17:54:26] Server will be closed due to no players in, 40 +[05/27/2026 17:54:36] Server will be closed due to no players in, 30 +[05/27/2026 17:54:46] Server will be closed due to no players in, 20 +[05/27/2026 17:54:56] Server will be closed due to no players in, 10 +[05/27/2026 17:55:06] All players left, exiting +[05/27/2026 17:55:07] Dedicated match PATCH success: 200 {"ok":true,"id":118} diff --git a/games/soccar/soccar_Data/Logs/119.txt b/games/soccar/soccar_Data/Logs/119.txt new file mode 100644 index 0000000..775ba7a --- /dev/null +++ b/games/soccar/soccar_Data/Logs/119.txt @@ -0,0 +1,41 @@ +[05/29/2026 03:18:50] Starting server at port 26241 +[05/29/2026 03:18:50] Mirror server exception logging enabled +[05/29/2026 03:18:50] Failed to fetch red and blue names, isServer? +[05/29/2026 03:18:50] Starting auto close watchdog +[05/29/2026 03:18:50] Active player connections: 0 +[05/29/2026 03:18:53] Active player connections: 1 +[05/29/2026 03:18:53] Client 15 set team to Blue +[05/29/2026 03:18:54] Dedicated match PATCH success: 200 {"ok":true,"id":119} +[05/29/2026 03:18:55] Active player connections: 2 +[05/29/2026 03:18:55] Game started On Server +[05/29/2026 03:18:55] Client 16 set team to Red +[05/29/2026 03:18:55] Dedicated match PATCH success: 200 {"ok":true,"id":119} +[05/29/2026 03:18:59] force = 70 * 0.3147517 = 22.03262 +[05/29/2026 03:18:59] launching puck at (1.01, -0.25) with (-22.28, 5.46) force +[05/29/2026 03:19:03] force = 70 * 0.9445347 = 66.11743 +[05/29/2026 03:19:03] launching puck at (0.08, 4.44) with (-5.25, -293.62) force +[05/29/2026 03:19:03] Blue goal scored, blue score is now 1 +[05/29/2026 03:19:09] force = 70 * 0.5629542 = 39.40679 +[05/29/2026 03:19:09] launching puck at (1.78, -0.54) with (-70.11, 21.31) force +[05/29/2026 03:19:14] force = 70 * 0.9449251 = 66.14476 +[05/29/2026 03:19:14] launching puck at (0.02, 4.45) with (-1.01, -294.06) force +[05/29/2026 03:19:14] Blue goal scored, blue score is now 2 +[05/29/2026 03:19:19] force = 70 * 0.6333712 = 44.33599 +[05/29/2026 03:19:19] launching puck at (2.06, -0.74) with (-91.47, 32.63) force +[05/29/2026 03:19:24] force = 70 * 0.8732478 = 61.12735 +[05/29/2026 03:19:24] launching puck at (0.08, 3.74) with (-4.83, -228.74) force +[05/29/2026 03:19:24] Blue goal scored, blue score is now 3 +[05/29/2026 03:19:24] Dedicated match PATCH success: 200 {"ok":true,"id":119} +[05/29/2026 03:19:26] Dedicated match winner PATCH success: 200 {"ok":true,"id":119,"winner_id":2,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/29/2026 03:19:52] Mirror server: client disconnected (connId=1441835803) +[05/29/2026 03:19:52] Active player connections: 1 +[05/29/2026 03:19:53] Mirror server: client disconnected (connId=1441819134) +[05/29/2026 03:19:53] Active player connections: 0 +[05/29/2026 03:19:58] Server will be closed due to no players in, 60 +[05/29/2026 03:20:08] Server will be closed due to no players in, 50 +[05/29/2026 03:20:18] Server will be closed due to no players in, 40 +[05/29/2026 03:20:28] Server will be closed due to no players in, 30 +[05/29/2026 03:20:38] Server will be closed due to no players in, 20 +[05/29/2026 03:20:48] Server will be closed due to no players in, 10 +[05/29/2026 03:20:58] All players left, exiting +[05/29/2026 03:21:00] Dedicated match PATCH success: 200 {"ok":true,"id":119} diff --git a/games/soccar/soccar_Data/Logs/120.txt b/games/soccar/soccar_Data/Logs/120.txt new file mode 100644 index 0000000..af9ab38 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/120.txt @@ -0,0 +1,41 @@ +[05/29/2026 03:23:05] Starting server at port 26692 +[05/29/2026 03:23:05] Mirror server exception logging enabled +[05/29/2026 03:23:05] Failed to fetch red and blue names, isServer? +[05/29/2026 03:23:05] Starting auto close watchdog +[05/29/2026 03:23:05] Active player connections: 0 +[05/29/2026 03:23:10] Active player connections: 1 +[05/29/2026 03:23:10] Active player connections: 2 +[05/29/2026 03:23:10] Game started On Server +[05/29/2026 03:23:10] Client 15 set team to Red +[05/29/2026 03:23:10] Client 16 set team to Blue +[05/29/2026 03:23:11] Dedicated match PATCH success: 200 {"ok":true,"id":120} +[05/29/2026 03:23:11] Dedicated match PATCH success: 200 {"ok":true,"id":120} +[05/29/2026 03:23:12] force = 70 * 0.6811818 = 47.68273 +[05/29/2026 03:23:12] launching puck at (2.35, -0.63) with (-111.96, 29.94) force +[05/29/2026 03:23:17] force = 70 * 0.9250442 = 64.75309 +[05/29/2026 03:23:17] launching puck at (-0.06, 4.24) with (4.04, -274.41) force +[05/29/2026 03:23:17] Blue goal scored, blue score is now 1 +[05/29/2026 03:23:22] force = 70 * 0.4900495 = 34.30346 +[05/29/2026 03:23:22] launching puck at (1.48, -0.30) with (-50.91, 10.15) force +[05/29/2026 03:23:26] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 03:23:26] launching puck at (0.09, 5.00) with (-6.08, -348.40) force +[05/29/2026 03:23:26] Blue goal scored, blue score is now 2 +[05/29/2026 03:23:31] force = 70 * 0.6395602 = 44.76921 +[05/29/2026 03:23:31] launching puck at (2.07, -0.81) with (-92.49, 36.39) force +[05/29/2026 03:23:36] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 03:23:36] launching puck at (0.14, 5.00) with (-9.55, -348.32) force +[05/29/2026 03:23:36] Blue goal scored, blue score is now 3 +[05/29/2026 03:23:37] Dedicated match PATCH success: 200 {"ok":true,"id":120} +[05/29/2026 03:23:38] Dedicated match winner PATCH success: 200 {"ok":true,"id":120,"winner_id":3,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/29/2026 03:23:55] Mirror server: client disconnected (connId=1441836947) +[05/29/2026 03:23:55] Active player connections: 1 +[05/29/2026 03:23:56] Mirror server: client disconnected (connId=1441816210) +[05/29/2026 03:23:56] Active player connections: 0 +[05/29/2026 03:24:01] Server will be closed due to no players in, 60 +[05/29/2026 03:24:11] Server will be closed due to no players in, 50 +[05/29/2026 03:24:21] Server will be closed due to no players in, 40 +[05/29/2026 03:24:31] Server will be closed due to no players in, 30 +[05/29/2026 03:24:41] Server will be closed due to no players in, 20 +[05/29/2026 03:24:51] Server will be closed due to no players in, 10 +[05/29/2026 03:25:01] All players left, exiting +[05/29/2026 03:25:02] Dedicated match PATCH success: 200 {"ok":true,"id":120} diff --git a/games/soccar/soccar_Data/Logs/121.txt b/games/soccar/soccar_Data/Logs/121.txt new file mode 100644 index 0000000..8e4067e --- /dev/null +++ b/games/soccar/soccar_Data/Logs/121.txt @@ -0,0 +1,51 @@ +[05/29/2026 03:29:51] Starting server at port 26963 +[05/29/2026 03:29:51] Mirror server exception logging enabled +[05/29/2026 03:29:51] Failed to fetch red and blue names, isServer? +[05/29/2026 03:29:51] Starting auto close watchdog +[05/29/2026 03:29:51] Active player connections: 0 +[05/29/2026 03:29:55] Active player connections: 1 +[05/29/2026 03:29:55] Active player connections: 2 +[05/29/2026 03:29:55] Game started On Server +[05/29/2026 03:29:55] Client 15 set team to Blue +[05/29/2026 03:29:55] Client 16 set team to Red +[05/29/2026 03:29:55] Dedicated match PATCH success: 200 {"ok":true,"id":121} +[05/29/2026 03:29:56] Dedicated match PATCH success: 200 {"ok":true,"id":121} +[05/29/2026 03:30:01] force = 70 * 0.4989634 = 34.92744 +[05/29/2026 03:30:01] launching puck at (1.42, -0.63) with (-49.52, 21.94) force +[05/29/2026 03:30:05] force = 70 * 0.9722419 = 68.05694 +[05/29/2026 03:30:05] launching puck at (-0.05, 4.74) with (3.37, -322.71) force +[05/29/2026 03:30:05] Blue goal scored, blue score is now 1 +[05/29/2026 03:30:12] force = 70 * 0.7203296 = 50.42308 +[05/29/2026 03:30:12] launching puck at (2.25, -1.39) with (-113.70, 69.90) force +[05/29/2026 03:30:18] force = 70 * 0.9118644 = 63.83051 +[05/29/2026 03:30:18] launching puck at (0.17, 4.10) with (-11.16, -261.83) force +[05/29/2026 03:30:19] Blue goal scored, blue score is now 2 +[05/29/2026 03:30:44] force = 70 * 0.5578804 = 39.05163 +[05/29/2026 03:30:44] launching puck at (-1.73, 0.62) with (67.43, -24.12) force +[05/29/2026 03:30:53] force = 70 * 0.9460118 = 66.22083 +[05/29/2026 03:30:53] launching puck at (0.04, -4.46) with (-2.58, 295.16) force +[05/29/2026 03:30:53] Red goal scored, red score is now 1 +[05/29/2026 03:31:00] force = 70 * 0.4761949 = 33.33364 +[05/29/2026 03:31:00] launching puck at (-1.41, 0.39) with (46.88, -12.98) force +[05/29/2026 03:31:12] force = 70 * 0.8654726 = 60.58308 +[05/29/2026 03:31:12] launching puck at (-0.08, -3.67) with (4.88, 222.56) force +[05/29/2026 03:31:12] Red goal scored, red score is now 2 +[05/29/2026 03:31:17] force = 70 * 0.3147116 = 22.02981 +[05/29/2026 03:31:17] launching puck at (-1.04, 0.08) with (22.86, -1.80) force +[05/29/2026 03:31:21] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 03:31:21] launching puck at (-0.19, -5.00) with (13.33, 348.20) force +[05/29/2026 03:31:21] Red goal scored, red score is now 3 +[05/29/2026 03:31:22] Dedicated match PATCH success: 200 {"ok":true,"id":121} +[05/29/2026 03:31:24] Dedicated match winner PATCH success: 200 {"ok":true,"id":121,"winner_id":3,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/29/2026 03:31:52] Mirror server: client disconnected (connId=1441834081) +[05/29/2026 03:31:52] Active player connections: 1 +[05/29/2026 03:32:45] Mirror server: client disconnected (connId=1441810282) +[05/29/2026 03:32:45] Active player connections: 0 +[05/29/2026 03:32:50] Server will be closed due to no players in, 60 +[05/29/2026 03:33:00] Server will be closed due to no players in, 50 +[05/29/2026 03:33:10] Server will be closed due to no players in, 40 +[05/29/2026 03:33:20] Server will be closed due to no players in, 30 +[05/29/2026 03:33:30] Server will be closed due to no players in, 20 +[05/29/2026 03:33:40] Server will be closed due to no players in, 10 +[05/29/2026 03:33:50] All players left, exiting +[05/29/2026 03:33:50] Dedicated match PATCH success: 200 {"ok":true,"id":121} diff --git a/games/soccar/soccar_Data/Logs/122.txt b/games/soccar/soccar_Data/Logs/122.txt new file mode 100644 index 0000000..042a639 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/122.txt @@ -0,0 +1,41 @@ +[05/29/2026 03:34:03] Starting server at port 26850 +[05/29/2026 03:34:03] Mirror server exception logging enabled +[05/29/2026 03:34:03] Failed to fetch red and blue names, isServer? +[05/29/2026 03:34:03] Starting auto close watchdog +[05/29/2026 03:34:03] Active player connections: 0 +[05/29/2026 03:34:08] Active player connections: 1 +[05/29/2026 03:34:08] Active player connections: 2 +[05/29/2026 03:34:08] Game started On Server +[05/29/2026 03:34:08] Client 15 set team to Red +[05/29/2026 03:34:08] Dedicated match PATCH success: 200 {"ok":true,"id":122} +[05/29/2026 03:34:08] Client 16 set team to Blue +[05/29/2026 03:34:08] Dedicated match PATCH success: 200 {"ok":true,"id":122} +[05/29/2026 03:34:11] force = 70 * 0.5935062 = 41.54543 +[05/29/2026 03:34:11] launching puck at (1.72, -1.04) with (-71.27, 43.26) force +[05/29/2026 03:34:16] force = 70 * 0.9037893 = 63.26525 +[05/29/2026 03:34:16] launching puck at (-0.18, 4.02) with (11.10, -254.50) force +[05/29/2026 03:34:16] Blue goal scored, blue score is now 1 +[05/29/2026 03:34:23] force = 70 * 0.5739922 = 40.17945 +[05/29/2026 03:34:23] launching puck at (1.39, -1.31) with (-55.93, 52.81) force +[05/29/2026 03:34:28] force = 70 * 0.8866386 = 62.0647 +[05/29/2026 03:34:28] launching puck at (-0.18, 3.86) with (10.87, -239.58) force +[05/29/2026 03:34:29] Blue goal scored, blue score is now 2 +[05/29/2026 03:34:34] force = 70 * 0.5545506 = 38.81855 +[05/29/2026 03:34:34] launching puck at (1.60, -0.87) with (-61.96, 33.71) force +[05/29/2026 03:34:38] force = 70 * 0.9751614 = 68.2613 +[05/29/2026 03:34:38] launching puck at (-0.05, 4.77) with (3.38, -325.87) force +[05/29/2026 03:34:39] Blue goal scored, blue score is now 3 +[05/29/2026 03:34:39] Dedicated match PATCH success: 200 {"ok":true,"id":122} +[05/29/2026 03:34:41] Dedicated match winner PATCH success: 200 {"ok":true,"id":122,"winner_id":2,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/29/2026 03:34:49] Mirror server: client disconnected (connId=1441823313) +[05/29/2026 03:34:49] Active player connections: 1 +[05/29/2026 03:34:52] Mirror server: client disconnected (connId=1441823314) +[05/29/2026 03:34:52] Active player connections: 0 +[05/29/2026 03:34:57] Server will be closed due to no players in, 60 +[05/29/2026 03:35:07] Server will be closed due to no players in, 50 +[05/29/2026 03:35:17] Server will be closed due to no players in, 40 +[05/29/2026 03:35:27] Server will be closed due to no players in, 30 +[05/29/2026 03:35:37] Server will be closed due to no players in, 20 +[05/29/2026 03:35:47] Server will be closed due to no players in, 10 +[05/29/2026 03:35:57] All players left, exiting +[05/29/2026 03:35:57] Dedicated match PATCH success: 200 {"ok":true,"id":122} diff --git a/games/soccar/soccar_Data/Logs/123.txt b/games/soccar/soccar_Data/Logs/123.txt new file mode 100644 index 0000000..f3842fa --- /dev/null +++ b/games/soccar/soccar_Data/Logs/123.txt @@ -0,0 +1,41 @@ +[05/29/2026 03:36:04] Starting server at port 26116 +[05/29/2026 03:36:05] Mirror server exception logging enabled +[05/29/2026 03:36:05] Failed to fetch red and blue names, isServer? +[05/29/2026 03:36:05] Starting auto close watchdog +[05/29/2026 03:36:05] Active player connections: 0 +[05/29/2026 03:36:08] Active player connections: 1 +[05/29/2026 03:36:08] Client 15 set team to Blue +[05/29/2026 03:36:09] Dedicated match PATCH success: 200 {"ok":true,"id":123} +[05/29/2026 03:36:09] Active player connections: 2 +[05/29/2026 03:36:09] Game started On Server +[05/29/2026 03:36:09] Client 16 set team to Red +[05/29/2026 03:36:10] Dedicated match PATCH success: 200 {"ok":true,"id":123} +[05/29/2026 03:36:11] force = 70 * 0.6503692 = 45.52584 +[05/29/2026 03:36:11] launching puck at (2.02, -1.04) with (-92.00, 47.36) force +[05/29/2026 03:36:16] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 03:36:16] launching puck at (-0.12, 5.00) with (8.45, -348.35) force +[05/29/2026 03:36:16] Blue goal scored, blue score is now 1 +[05/29/2026 03:36:21] force = 70 * 0.570417 = 39.92919 +[05/29/2026 03:36:21] launching puck at (1.61, -1.00) with (-64.33, 39.99) force +[05/29/2026 03:36:26] force = 70 * 0.828311 = 57.98177 +[05/29/2026 03:36:26] launching puck at (0.03, 3.37) with (-1.57, -195.36) force +[05/29/2026 03:36:26] Blue goal scored, blue score is now 2 +[05/29/2026 03:36:32] force = 70 * 0.5599449 = 39.19614 +[05/29/2026 03:36:32] launching puck at (1.52, -1.04) with (-59.74, 40.72) force +[05/29/2026 03:36:37] force = 70 * 0.8701812 = 60.91269 +[05/29/2026 03:36:37] launching puck at (0.00, 3.72) with (0.15, -226.34) force +[05/29/2026 03:36:37] Blue goal scored, blue score is now 3 +[05/29/2026 03:36:38] Dedicated match PATCH success: 200 {"ok":true,"id":123} +[05/29/2026 03:36:39] Dedicated match winner PATCH success: 200 {"ok":true,"id":123,"winner_id":3,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/29/2026 03:36:53] Mirror server: client disconnected (connId=1441822304) +[05/29/2026 03:36:53] Active player connections: 1 +[05/29/2026 03:36:55] Mirror server: client disconnected (connId=1441822319) +[05/29/2026 03:36:55] Active player connections: 0 +[05/29/2026 03:37:00] Server will be closed due to no players in, 60 +[05/29/2026 03:37:10] Server will be closed due to no players in, 50 +[05/29/2026 03:37:20] Server will be closed due to no players in, 40 +[05/29/2026 03:37:30] Server will be closed due to no players in, 30 +[05/29/2026 03:37:40] Server will be closed due to no players in, 20 +[05/29/2026 03:37:50] Server will be closed due to no players in, 10 +[05/29/2026 03:38:00] All players left, exiting +[05/29/2026 03:38:00] Dedicated match PATCH success: 200 {"ok":true,"id":123} diff --git a/games/soccar/soccar_Data/Logs/124.txt b/games/soccar/soccar_Data/Logs/124.txt new file mode 100644 index 0000000..c66636d --- /dev/null +++ b/games/soccar/soccar_Data/Logs/124.txt @@ -0,0 +1,44 @@ +[05/29/2026 03:46:59] Starting server at port 26643 +[05/29/2026 03:46:59] Mirror server exception logging enabled +[05/29/2026 03:46:59] Failed to fetch red and blue names, isServer? +[05/29/2026 03:46:59] Starting auto close watchdog +[05/29/2026 03:46:59] Active player connections: 0 +[05/29/2026 03:47:02] Active player connections: 1 +[05/29/2026 03:47:03] Client 15 set team to Blue +[05/29/2026 03:47:03] Dedicated match PATCH success: 200 {"ok":true,"id":124} +[05/29/2026 03:47:04] Active player connections: 2 +[05/29/2026 03:47:04] Game started On Server +[05/29/2026 03:47:04] Client 16 set team to Red +[05/29/2026 03:47:04] Dedicated match PATCH success: 200 {"ok":true,"id":124} +[05/29/2026 03:47:07] force = 70 * 0.6076896 = 42.53827 +[05/29/2026 03:47:07] launching puck at (2.02, -0.46) with (-85.92, 19.38) force +[05/29/2026 03:47:12] force = 70 * 0.9595596 = 67.16917 +[05/29/2026 03:47:12] launching puck at (0.03, 4.60) with (-1.79, -309.19) force +[05/29/2026 03:47:12] Blue goal scored, blue score is now 1 +[05/29/2026 03:47:16] force = 70 * 0.6214699 = 43.5029 +[05/29/2026 03:47:16] launching puck at (1.68, -1.32) with (-73.06, 57.29) force +[05/29/2026 03:47:21] force = 70 * 0.8984487 = 62.89141 +[05/29/2026 03:47:21] launching puck at (0.09, 3.97) with (-5.40, -249.94) force +[05/29/2026 03:47:22] Blue goal scored, blue score is now 2 +[05/29/2026 03:47:26] force = 70 * 0.474227 = 33.19589 +[05/29/2026 03:47:26] launching puck at (1.21, -0.81) with (-40.05, 26.83) force +[05/29/2026 03:47:31] force = 70 * 0.7713495 = 53.99446 +[05/29/2026 03:47:31] launching puck at (0.11, 2.96) with (-6.17, -159.81) force +[05/29/2026 03:47:31] Blue goal scored, blue score is now 3 +[05/29/2026 03:47:32] Dedicated match PATCH success: 200 {"ok":true,"id":124} +[05/29/2026 03:47:33] Dedicated match winner PATCH success: 200 {"ok":true,"id":124,"winner_id":3,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/29/2026 03:47:46] Rematch requested, max bet limit coins: 36 +[05/29/2026 03:48:01] Rematch was confirmed, closing in 5 secs. new room : +[05/29/2026 03:48:01] {"ok":true,"entry_fee":36,"rc_prize":58,"for_red":{"Players":[{"Name":"warlock","LastSeen":1780026481662,"l10_wins":2,"l10_losses":6,"UserId":2,"rc":0.0},{"Name":"warlock2","LastSeen":1780026481662,"l10_wins":5,"l10_losses":3,"UserId":3,"rc":0.0}],"GameName":"soccar","Port":26630,"InitTime":1780026481662,"instance_started":true,"match_id":125,"entry_fee":36,"rc_prize":58,"your_team":"red"},"for_blue":{"Players":[{"Name":"warlock","LastSeen":1780026481662,"l10_wins":2,"l10_losses":6,"UserId":2,"rc":0.0},{"Name":"warlock2","LastSeen":1780026481662,"l10_wins":5,"l10_losses":3,"UserId":3,"rc":0.0}],"GameName":"soccar","Port":26630,"InitTime":1780026481662,"instance_started":true,"match_id":125,"entry_fee":36,"rc_prize":58,"your_team":"blue"},"your_team":""} +[05/29/2026 03:48:01] Mirror server: client disconnected (connId=1441813487) +[05/29/2026 03:48:01] Active player connections: 1 +[05/29/2026 03:48:01] Mirror server: client disconnected (connId=1441813472) +[05/29/2026 03:48:01] Active player connections: 0 +[05/29/2026 03:48:06] Server will be closed due to no players in, 60 +[05/29/2026 03:48:16] Server will be closed due to no players in, 50 +[05/29/2026 03:48:26] Server will be closed due to no players in, 40 +[05/29/2026 03:48:36] Server will be closed due to no players in, 30 +[05/29/2026 03:48:46] Server will be closed due to no players in, 20 +[05/29/2026 03:48:56] Server will be closed due to no players in, 10 +[05/29/2026 03:49:06] All players left, exiting +[05/29/2026 03:49:07] Dedicated match PATCH success: 200 {"ok":true,"id":124} diff --git a/games/soccar/soccar_Data/Logs/125.txt b/games/soccar/soccar_Data/Logs/125.txt new file mode 100644 index 0000000..9169b51 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/125.txt @@ -0,0 +1,41 @@ +[05/29/2026 03:48:03] Starting server at port 26630 +[05/29/2026 03:48:03] Mirror server exception logging enabled +[05/29/2026 03:48:03] Failed to fetch red and blue names, isServer? +[05/29/2026 03:48:03] Starting auto close watchdog +[05/29/2026 03:48:03] Active player connections: 0 +[05/29/2026 03:48:06] Active player connections: 1 +[05/29/2026 03:48:06] Active player connections: 2 +[05/29/2026 03:48:07] Game started On Server +[05/29/2026 03:48:07] Client 15 set team to Blue +[05/29/2026 03:48:07] Client 16 set team to Red +[05/29/2026 03:48:07] Dedicated match PATCH success: 200 {"ok":true,"id":125} +[05/29/2026 03:48:07] Dedicated match PATCH success: 200 {"ok":true,"id":125} +[05/29/2026 03:48:11] force = 70 * 0.5685561 = 39.79893 +[05/29/2026 03:48:11] launching puck at (1.67, -0.88) with (-66.56, 34.84) force +[05/29/2026 03:48:16] force = 70 * 0.965326 = 67.57281 +[05/29/2026 03:48:16] launching puck at (0.03, 4.67) with (-1.80, -315.30) force +[05/29/2026 03:48:16] Blue goal scored, blue score is now 1 +[05/29/2026 03:48:21] force = 70 * 0.6543766 = 45.80636 +[05/29/2026 03:48:21] launching puck at (1.44, -1.79) with (-65.88, 81.79) force +[05/29/2026 03:48:37] force = 70 * 0.9155191 = 64.08634 +[05/29/2026 03:48:37] launching puck at (0.11, 4.14) with (-7.36, -265.34) force +[05/29/2026 03:48:38] Blue goal scored, blue score is now 2 +[05/29/2026 03:48:43] force = 70 * 0.699639 = 48.97473 +[05/29/2026 03:48:43] launching puck at (1.96, -1.60) with (-96.02, 78.31) force +[05/29/2026 03:48:50] force = 70 * 0.8884437 = 62.19106 +[05/29/2026 03:48:50] launching puck at (0.09, 3.88) with (-5.34, -241.30) force +[05/29/2026 03:48:50] Blue goal scored, blue score is now 3 +[05/29/2026 03:48:51] Dedicated match PATCH success: 200 {"ok":true,"id":125} +[05/29/2026 03:48:53] Dedicated match winner PATCH success: 200 {"ok":true,"id":125,"winner_id":3,"economy":{"entry_fee_rc":36,"rc_prize":58,"participant_cc":100}} +[05/29/2026 03:49:11] Mirror server: client disconnected (connId=1441834813) +[05/29/2026 03:49:11] Active player connections: 1 +[05/29/2026 03:49:13] Mirror server: client disconnected (connId=1441821696) +[05/29/2026 03:49:13] Active player connections: 0 +[05/29/2026 03:49:17] Server will be closed due to no players in, 60 +[05/29/2026 03:49:27] Server will be closed due to no players in, 50 +[05/29/2026 03:49:38] Server will be closed due to no players in, 40 +[05/29/2026 03:49:48] Server will be closed due to no players in, 30 +[05/29/2026 03:49:58] Server will be closed due to no players in, 20 +[05/29/2026 03:50:08] Server will be closed due to no players in, 10 +[05/29/2026 03:50:17] All players left, exiting +[05/29/2026 03:50:18] Dedicated match PATCH success: 200 {"ok":true,"id":125} diff --git a/games/soccar/soccar_Data/Logs/126.txt b/games/soccar/soccar_Data/Logs/126.txt new file mode 100644 index 0000000..6f1e048 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/126.txt @@ -0,0 +1,44 @@ +[05/29/2026 04:11:13] Starting server at port 26807 +[05/29/2026 04:11:13] Mirror server exception logging enabled +[05/29/2026 04:11:13] Failed to fetch red and blue names, isServer? +[05/29/2026 04:11:13] Starting auto close watchdog +[05/29/2026 04:11:13] Active player connections: 0 +[05/29/2026 04:11:17] Active player connections: 1 +[05/29/2026 04:11:17] Client 15 set team to Blue +[05/29/2026 04:11:17] Active player connections: 2 +[05/29/2026 04:11:17] Game started On Server +[05/29/2026 04:11:17] Client 16 set team to Red +[05/29/2026 04:11:18] Dedicated match PATCH success: 200 {"ok":true,"id":126} +[05/29/2026 04:11:18] Dedicated match PATCH success: 200 {"ok":true,"id":126} +[05/29/2026 04:11:27] force = 70 * 0.6130794 = 42.91556 +[05/29/2026 04:11:27] launching puck at (1.97, -0.72) with (-84.51, 30.70) force +[05/29/2026 04:11:31] force = 70 * 0.8728667 = 61.10067 +[05/29/2026 04:11:31] launching puck at (0.02, 3.74) with (-0.94, -228.48) force +[05/29/2026 04:11:32] Blue goal scored, blue score is now 1 +[05/29/2026 04:11:37] force = 70 * 0.6259943 = 43.8196 +[05/29/2026 04:11:37] launching puck at (1.79, -1.20) with (-78.51, 52.50) force +[05/29/2026 04:11:41] force = 70 * 0.910338 = 63.72366 +[05/29/2026 04:11:41] launching puck at (-0.24, 4.08) with (15.23, -260.22) force +[05/29/2026 04:11:42] Blue goal scored, blue score is now 2 +[05/29/2026 04:11:45] force = 70 * 0.6159319 = 43.11523 +[05/29/2026 04:11:45] launching puck at (1.94, -0.81) with (-83.86, 35.09) force +[05/29/2026 04:11:50] force = 70 * 0.7185042 = 50.29529 +[05/29/2026 04:11:50] launching puck at (-0.01, 2.64) with (0.75, -132.59) force +[05/29/2026 04:11:51] Blue goal scored, blue score is now 3 +[05/29/2026 04:11:52] Dedicated match PATCH success: 200 {"ok":true,"id":126} +[05/29/2026 04:11:54] Dedicated match winner PATCH success: 200 {"ok":true,"id":126,"winner_id":2,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/29/2026 04:12:05] Rematch requested, max bet limit coins: 48 +[05/29/2026 04:12:10] Rematch was confirmed, closing in 5 secs. new room : +[05/29/2026 04:12:10] {"ok":true,"entry_fee":24,"rc_prize":38,"for_red":{"Players":[{"Name":"warlock2","LastSeen":1780027930228,"l10_wins":6,"l10_losses":3,"UserId":3,"rc":0.0},{"Name":"warlock","LastSeen":1780027930228,"l10_wins":3,"l10_losses":6,"UserId":2,"rc":0.0}],"GameName":"soccar","Port":26745,"InitTime":1780027930228,"instance_started":true,"match_id":127,"entry_fee":24,"rc_prize":38,"your_team":"red"},"for_blue":{"Players":[{"Name":"warlock2","LastSeen":1780027930228,"l10_wins":6,"l10_losses":3,"UserId":3,"rc":0.0},{"Name":"warlock","LastSeen":1780027930228,"l10_wins":3,"l10_losses":6,"UserId":2,"rc":0.0}],"GameName":"soccar","Port":26745,"InitTime":1780027930228,"instance_started":true,"match_id":127,"entry_fee":24,"rc_prize":38,"your_team":"blue"},"your_team":""} +[05/29/2026 04:12:10] Mirror server: client disconnected (connId=720403907) +[05/29/2026 04:12:10] Active player connections: 1 +[05/29/2026 04:12:10] Mirror server: client disconnected (connId=1441823572) +[05/29/2026 04:12:10] Active player connections: 0 +[05/29/2026 04:12:15] Server will be closed due to no players in, 60 +[05/29/2026 04:12:25] Server will be closed due to no players in, 50 +[05/29/2026 04:12:35] Server will be closed due to no players in, 40 +[05/29/2026 04:12:45] Server will be closed due to no players in, 30 +[05/29/2026 04:12:55] Server will be closed due to no players in, 20 +[05/29/2026 04:13:05] Server will be closed due to no players in, 10 +[05/29/2026 04:13:15] All players left, exiting +[05/29/2026 04:13:15] Dedicated match PATCH success: 200 {"ok":true,"id":126} diff --git a/games/soccar/soccar_Data/Logs/127.txt b/games/soccar/soccar_Data/Logs/127.txt new file mode 100644 index 0000000..527bfbd --- /dev/null +++ b/games/soccar/soccar_Data/Logs/127.txt @@ -0,0 +1,25 @@ +[05/29/2026 04:12:11] Starting server at port 26745 +[05/29/2026 04:12:11] Mirror server exception logging enabled +[05/29/2026 04:12:11] Failed to fetch red and blue names, isServer? +[05/29/2026 04:12:11] Starting auto close watchdog +[05/29/2026 04:12:11] Active player connections: 0 +[05/29/2026 04:12:15] Active player connections: 1 +[05/29/2026 04:12:15] Client 15 set team to Red +[05/29/2026 04:12:15] Active player connections: 2 +[05/29/2026 04:12:15] Game started On Server +[05/29/2026 04:12:15] Client 16 set team to Blue +[05/29/2026 04:12:15] Dedicated match PATCH success: 200 {"ok":true,"id":127} +[05/29/2026 04:12:16] Dedicated match PATCH success: 200 {"ok":true,"id":127} +[05/29/2026 04:12:17] Mirror server: client disconnected (connId=1441822497) +[05/29/2026 04:12:17] Active player connections: 1 +[05/29/2026 04:12:29] Mirror server transport error (connId=720398350, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting. +[05/29/2026 04:12:29] Mirror server: client disconnected (connId=720398350) +[05/29/2026 04:12:29] Active player connections: 0 +[05/29/2026 04:12:34] Server will be closed due to no players in, 60 +[05/29/2026 04:12:44] Server will be closed due to no players in, 50 +[05/29/2026 04:12:54] Server will be closed due to no players in, 40 +[05/29/2026 04:13:04] Server will be closed due to no players in, 30 +[05/29/2026 04:13:14] Server will be closed due to no players in, 20 +[05/29/2026 04:13:24] Server will be closed due to no players in, 10 +[05/29/2026 04:13:34] All players left, exiting +[05/29/2026 04:13:35] Dedicated match PATCH success: 200 {"ok":true,"id":127} diff --git a/games/soccar/soccar_Data/Logs/128.txt b/games/soccar/soccar_Data/Logs/128.txt new file mode 100644 index 0000000..7752df2 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/128.txt @@ -0,0 +1,44 @@ +[05/29/2026 04:28:45] Starting server at port 26438 +[05/29/2026 04:28:45] Mirror server exception logging enabled +[05/29/2026 04:28:45] Failed to fetch red and blue names, isServer? +[05/29/2026 04:28:45] Starting auto close watchdog +[05/29/2026 04:28:45] Active player connections: 0 +[05/29/2026 04:28:49] Active player connections: 1 +[05/29/2026 04:28:49] Client 15 set team to Blue +[05/29/2026 04:28:49] Active player connections: 2 +[05/29/2026 04:28:49] Game started On Server +[05/29/2026 04:28:49] Client 16 set team to Red +[05/29/2026 04:28:49] Dedicated match PATCH success: 200 {"ok":true,"id":128} +[05/29/2026 04:28:50] Dedicated match PATCH success: 200 {"ok":true,"id":128} +[05/29/2026 04:28:52] force = 70 * 0.5736212 = 40.15348 +[05/29/2026 04:28:52] launching puck at (1.67, -0.93) with (-67.17, 37.23) force +[05/29/2026 04:28:57] force = 70 * 0.8629676 = 60.40773 +[05/29/2026 04:28:57] launching puck at (-0.02, 3.65) with (0.97, -220.66) force +[05/29/2026 04:28:57] Blue goal scored, blue score is now 1 +[05/29/2026 04:29:04] force = 70 * 0.6788021 = 47.51615 +[05/29/2026 04:29:04] launching puck at (2.39, -0.35) with (-113.68, 16.66) force +[05/29/2026 04:29:08] force = 70 * 0.8667859 = 60.67501 +[05/29/2026 04:29:08] launching puck at (-0.02, 3.69) with (0.97, -223.65) force +[05/29/2026 04:29:08] Blue goal scored, blue score is now 2 +[05/29/2026 04:29:12] force = 70 * 0.5902759 = 41.31932 +[05/29/2026 04:29:12] launching puck at (1.95, -0.41) with (-80.52, 17.05) force +[05/29/2026 04:29:16] force = 70 * 0.8629667 = 60.40767 +[05/29/2026 04:29:16] launching puck at (0.05, 3.65) with (-2.86, -220.65) force +[05/29/2026 04:29:17] Blue goal scored, blue score is now 3 +[05/29/2026 04:29:17] Dedicated match PATCH success: 200 {"ok":true,"id":128} +[05/29/2026 04:29:19] Dedicated match winner PATCH success: 200 {"ok":true,"id":128,"winner_id":2,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/29/2026 04:29:25] Rematch requested, max bet limit coins: 48 +[05/29/2026 04:29:29] Rematch was confirmed, closing in 5 secs. new room : +[05/29/2026 04:29:29] {"ok":true,"entry_fee":24,"rc_prize":38,"for_red":{"Players":[{"Name":"warlock2","LastSeen":1780028969061,"l10_wins":5,"l10_losses":3,"UserId":3,"rc":0.0},{"Name":"warlock","LastSeen":1780028969061,"l10_wins":3,"l10_losses":5,"UserId":2,"rc":0.0}],"GameName":"soccar","Port":26658,"InitTime":1780028969061,"instance_started":true,"match_id":129,"entry_fee":24,"rc_prize":38,"your_team":"red"},"for_blue":{"Players":[{"Name":"warlock2","LastSeen":1780028969061,"l10_wins":5,"l10_losses":3,"UserId":3,"rc":0.0},{"Name":"warlock","LastSeen":1780028969061,"l10_wins":3,"l10_losses":5,"UserId":2,"rc":0.0}],"GameName":"soccar","Port":26658,"InitTime":1780028969061,"instance_started":true,"match_id":129,"entry_fee":24,"rc_prize":38,"your_team":"blue"},"your_team":""} +[05/29/2026 04:29:29] Mirror server: client disconnected (connId=720393933) +[05/29/2026 04:29:29] Active player connections: 1 +[05/29/2026 04:29:29] Mirror server: client disconnected (connId=1441810830) +[05/29/2026 04:29:29] Active player connections: 0 +[05/29/2026 04:29:34] Server will be closed due to no players in, 60 +[05/29/2026 04:29:44] Server will be closed due to no players in, 50 +[05/29/2026 04:29:54] Server will be closed due to no players in, 40 +[05/29/2026 04:30:04] Server will be closed due to no players in, 30 +[05/29/2026 04:30:14] Server will be closed due to no players in, 20 +[05/29/2026 04:30:24] Server will be closed due to no players in, 10 +[05/29/2026 04:30:34] All players left, exiting +[05/29/2026 04:30:34] Dedicated match PATCH success: 200 {"ok":true,"id":128} diff --git a/games/soccar/soccar_Data/Logs/129.txt b/games/soccar/soccar_Data/Logs/129.txt new file mode 100644 index 0000000..6b7c864 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/129.txt @@ -0,0 +1,26 @@ +[05/29/2026 04:29:30] Starting server at port 26658 +[05/29/2026 04:29:30] Mirror server exception logging enabled +[05/29/2026 04:29:30] Failed to fetch red and blue names, isServer? +[05/29/2026 04:29:30] Starting auto close watchdog +[05/29/2026 04:29:30] Active player connections: 0 +[05/29/2026 04:29:34] Active player connections: 1 +[05/29/2026 04:29:34] Client 15 set team to Blue +[05/29/2026 04:29:35] Dedicated match PATCH success: 200 {"ok":true,"id":129} +[05/29/2026 04:29:54] Mirror server: client disconnected (connId=1441810126) +[05/29/2026 04:29:54] Active player connections: 0 +[05/29/2026 04:29:59] Server will be closed due to no players in, 60 +[05/29/2026 04:30:09] Server will be closed due to no players in, 50 +[05/29/2026 04:30:12] Active player connections: 1 +[05/29/2026 04:30:12] Client 16 set team to Red +[05/29/2026 04:30:13] Dedicated match PATCH success: 200 {"ok":true,"id":129} +[05/29/2026 04:30:24] Mirror server transport error (connId=720374308, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting. +[05/29/2026 04:30:24] Mirror server: client disconnected (connId=720374308) +[05/29/2026 04:30:24] Active player connections: 0 +[05/29/2026 04:30:28] Server will be closed due to no players in, 60 +[05/29/2026 04:30:38] Server will be closed due to no players in, 50 +[05/29/2026 04:30:48] Server will be closed due to no players in, 40 +[05/29/2026 04:30:58] Server will be closed due to no players in, 30 +[05/29/2026 04:31:08] Server will be closed due to no players in, 20 +[05/29/2026 04:31:18] Server will be closed due to no players in, 10 +[05/29/2026 04:31:28] All players left, exiting +[05/29/2026 04:31:29] Dedicated match PATCH success: 200 {"ok":true,"id":129} diff --git a/games/soccar/soccar_Data/Logs/13.txt b/games/soccar/soccar_Data/Logs/13.txt new file mode 100644 index 0000000..e6a01ff --- /dev/null +++ b/games/soccar/soccar_Data/Logs/13.txt @@ -0,0 +1,30 @@ +[05/16/2026 12:17:08] Starting server at port 26263 +[05/16/2026 12:17:08] Failed to fetch red and blue names, isServer? +[05/16/2026 12:17:08] Starting auto close watchdog +[05/16/2026 12:17:08] Active player connections: 0 +[05/16/2026 12:17:13] Server will be closed due to no players in, 60 +[05/16/2026 12:17:17] Active player connections: 1 +[05/16/2026 12:17:17] Client 15 set team to Blue +[05/16/2026 12:17:18] Active player connections: 2 +[05/16/2026 12:17:18] Game started On Server +[05/16/2026 12:17:18] Dedicated match PATCH success: 200 {"ok":true,"id":13} +[05/16/2026 12:17:18] Client 16 set team to Red +[05/16/2026 12:17:18] Dedicated match PATCH success: 200 {"ok":true,"id":13} +[05/16/2026 12:17:27] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 12:17:27] launching puck at (0.22, -5.00) with (-14.99, 348.13) force +[05/16/2026 12:17:33] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 12:17:33] launching puck at (1.48, 4.78) with (-103.00, -332.88) force +[05/16/2026 12:17:40] force = 70 * 0.646962 = 45.28734 +[05/16/2026 12:17:40] launching puck at (1.75, 1.43) with (-79.21, -64.54) force +[05/16/2026 12:20:13] force = 70 * 0.8412006 = 58.88404 +[05/16/2026 12:20:13] launching puck at (2.64, 2.26) with (-155.18, -133.05) force +[05/16/2026 12:20:22] Active player connections: 1 +[05/16/2026 12:20:25] Active player connections: 0 +[05/16/2026 12:20:30] Server will be closed due to no players in, 60 +[05/16/2026 12:20:40] Server will be closed due to no players in, 50 +[05/16/2026 12:20:50] Server will be closed due to no players in, 40 +[05/16/2026 12:21:00] Server will be closed due to no players in, 30 +[05/16/2026 12:21:10] Server will be closed due to no players in, 20 +[05/16/2026 12:21:20] Server will be closed due to no players in, 10 +[05/16/2026 12:21:30] All players left, exiting +[05/16/2026 12:21:30] Dedicated match PATCH success: 200 {"ok":true,"id":13} diff --git a/games/soccar/soccar_Data/Logs/130.txt b/games/soccar/soccar_Data/Logs/130.txt new file mode 100644 index 0000000..54b50c8 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/130.txt @@ -0,0 +1,198 @@ +[05/29/2026 04:35:59] Starting server at port 26908 +[05/29/2026 04:35:59] Mirror server exception logging enabled +[05/29/2026 04:35:59] Failed to fetch red and blue names, isServer? +[05/29/2026 04:35:59] Starting auto close watchdog +[05/29/2026 04:35:59] Active player connections: 0 +[05/29/2026 04:36:02] Active player connections: 1 +[05/29/2026 04:36:03] Client 15 set team to Blue +[05/29/2026 04:36:03] Dedicated match PATCH success: 200 {"ok":true,"id":130} +[05/29/2026 04:36:03] Active player connections: 2 +[05/29/2026 04:36:03] Game started On Server +[05/29/2026 04:36:03] Client 16 set team to Red +[05/29/2026 04:36:04] Dedicated match PATCH success: 200 {"ok":true,"id":130} +[05/29/2026 04:36:06] Client 15 sent emoji emote 5 +[05/29/2026 04:36:08] force = 70 * 0.3033433 = 21.23403 +[05/29/2026 04:36:08] launching puck at (-0.01, 1.02) with (0.28, -21.66) force +[05/29/2026 04:36:13] Client 16 sent emoji emote 3 +[05/29/2026 04:36:16] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:36:16] launching puck at (-0.08, 5.00) with (5.77, -348.41) force +[05/29/2026 04:36:22] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:36:22] launching puck at (-3.17, 3.87) with (220.83, -269.55) force +[05/29/2026 04:36:30] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:36:30] launching puck at (-0.12, 5.00) with (8.60, -348.35) force +[05/29/2026 04:36:31] Blue goal scored, blue score is now 1 +[05/29/2026 04:36:33] Client 16 sent emoji emote 1 +[05/29/2026 04:36:37] Client 15 sent emoji emote 0 +[05/29/2026 04:36:38] force = 70 * 0.4116812 = 28.81768 +[05/29/2026 04:36:38] launching puck at (-1.25, 0.11) with (36.03, -3.24) force +[05/29/2026 04:36:46] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:36:46] launching puck at (0.16, 5.00) with (-11.00, -348.28) force +[05/29/2026 04:36:52] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:36:52] launching puck at (4.88, 1.09) with (-340.06, -76.02) force +[05/29/2026 04:36:57] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:36:57] launching puck at (4.58, 2.01) with (-319.06, -140.08) force +[05/29/2026 04:37:01] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:37:01] launching puck at (4.77, -1.50) with (-332.47, 104.31) force +[05/29/2026 04:37:07] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:37:07] launching puck at (0.91, 4.92) with (-63.07, -342.70) force +[05/29/2026 04:37:12] force = 70 * 0.6232506 = 43.62754 +[05/29/2026 04:37:12] launching puck at (1.16, 1.80) with (-50.40, -78.72) force +[05/29/2026 04:37:16] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:37:16] launching puck at (-1.54, 4.76) with (107.30, -331.52) force +[05/29/2026 04:37:21] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:37:21] launching puck at (0.90, -4.92) with (-62.80, 342.75) force +[05/29/2026 04:37:29] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:37:29] launching puck at (3.61, 3.46) with (-251.27, -241.42) force +[05/29/2026 04:37:35] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:37:35] launching puck at (0.63, 4.96) with (-43.61, -345.71) force +[05/29/2026 04:37:38] Client 16 sent emoji emote 3 +[05/29/2026 04:37:40] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:37:40] launching puck at (0.63, -4.96) with (-43.62, 345.71) force +[05/29/2026 04:37:44] Client 15 sent text emote Oops +[05/29/2026 04:37:45] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:37:45] launching puck at (3.18, -3.86) with (-221.37, 269.10) force +[05/29/2026 04:37:55] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:37:55] launching puck at (-0.03, -5.00) with (1.89, 348.45) force +[05/29/2026 04:37:59] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:37:59] launching puck at (-1.62, -4.73) with (113.16, 329.57) force +[05/29/2026 04:38:03] Client 16 sent emoji emote 1 +[05/29/2026 04:38:09] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:38:09] launching puck at (1.02, 4.89) with (-71.11, -341.12) force +[05/29/2026 04:38:12] Client 15 sent emoji emote 4 +[05/29/2026 04:38:14] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:38:14] launching puck at (4.25, -2.64) with (-295.92, 183.99) force +[05/29/2026 04:38:17] Client 16 sent emoji emote 0 +[05/29/2026 04:38:23] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:38:23] launching puck at (-1.94, 4.61) with (135.30, -321.11) force +[05/29/2026 04:38:28] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:38:28] launching puck at (-1.87, 4.64) with (130.18, -323.22) force +[05/29/2026 04:38:37] force = 70 * 0.9574932 = 67.02452 +[05/29/2026 04:38:37] launching puck at (-4.38, -1.35) with (293.47, 90.21) force +[05/29/2026 04:38:41] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:38:41] launching puck at (-3.41, -3.65) with (237.89, 254.62) force +[05/29/2026 04:38:45] Client 16 sent emoji emote 1 +[05/29/2026 04:38:48] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:38:48] launching puck at (-4.88, 1.08) with (340.21, -75.36) force +[05/29/2026 04:38:52] Client 15 sent text emote What a save! +[05/29/2026 04:38:53] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:38:53] launching puck at (0.12, 5.00) with (-8.55, -348.35) force +[05/29/2026 04:38:57] Client 16 sent emoji emote 0 +[05/29/2026 04:39:02] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:39:02] launching puck at (-1.72, 4.69) with (120.09, -327.11) force +[05/29/2026 04:39:05] Client 16 sent emoji emote 2 +[05/29/2026 04:39:07] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:39:07] launching puck at (-0.27, 4.99) with (18.65, -347.95) force +[05/29/2026 04:39:11] Client 16 sent emoji emote 1 +[05/29/2026 04:39:11] force = 70 * 0.7812067 = 54.68447 +[05/29/2026 04:39:11] launching puck at (0.26, 3.02) with (-14.46, -164.94) force +[05/29/2026 04:39:11] Blue goal scored, blue score is now 2 +[05/29/2026 04:39:12] Client 15 sent emoji emote 5 +[05/29/2026 04:39:12] Client 16 sent emoji emote 4 +[05/29/2026 04:39:15] Client 16 sent text emote Nice shot! +[05/29/2026 04:39:16] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:39:16] launching puck at (-0.28, -4.99) with (19.17, 347.93) force +[05/29/2026 04:39:20] Client 15 sent text emote Thanks! +[05/29/2026 04:39:26] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:39:26] launching puck at (4.18, 2.74) with (-291.49, -190.92) force +[05/29/2026 04:39:30] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:39:30] launching puck at (3.30, -3.76) with (-229.92, 261.83) force +[05/29/2026 04:39:35] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:39:35] launching puck at (4.64, 1.87) with (-323.25, -130.10) force +[05/29/2026 04:39:39] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:39:39] launching puck at (1.10, -4.88) with (-76.60, 339.93) force +[05/29/2026 04:39:40] Red goal scored, red score is now 1 +[05/29/2026 04:39:40] Client 15 sent text emote What a save! +[05/29/2026 04:39:42] Client 15 sent text emote WOW +[05/29/2026 04:39:43] Client 16 sent emoji emote 3 +[05/29/2026 04:39:45] Client 15 sent text emote Nice shot! +[05/29/2026 04:39:45] Client 16 sent text emote Thanks! +[05/29/2026 04:39:48] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:39:48] launching puck at (-0.01, 5.00) with (0.49, -348.45) force +[05/29/2026 04:39:49] Client 16 sent emoji emote 3 +[05/29/2026 04:39:54] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:39:54] launching puck at (3.16, 3.88) with (-220.08, -270.16) force +[05/29/2026 04:39:58] Client 16 sent emoji emote 4 +[05/29/2026 04:40:02] Client 15 sent emoji emote 3 +[05/29/2026 04:40:04] Client 16 sent emoji emote 1 +[05/29/2026 04:40:05] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:40:05] launching puck at (0.58, 4.97) with (-40.20, -346.13) force +[05/29/2026 04:40:09] Client 15 sent emoji emote 4 +[05/29/2026 04:40:10] Client 16 sent emoji emote 0 +[05/29/2026 04:40:12] Client 16 sent emoji emote 4 +[05/29/2026 04:40:14] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:40:14] launching puck at (-0.94, 4.91) with (65.18, -342.30) force +[05/29/2026 04:40:18] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:40:18] launching puck at (-3.23, 3.82) with (224.97, -266.10) force +[05/29/2026 04:40:22] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:40:22] launching puck at (4.71, -1.69) with (-327.96, 117.73) force +[05/29/2026 04:40:23] Client 15 sent text emote WOW +[05/29/2026 04:40:26] Client 16 sent emoji emote 3 +[05/29/2026 04:40:28] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:40:28] launching puck at (-1.24, 4.84) with (86.45, -337.56) force +[05/29/2026 04:40:32] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:40:32] launching puck at (0.11, 5.00) with (-7.68, -348.37) force +[05/29/2026 04:40:38] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:40:38] launching puck at (0.81, -4.93) with (-56.55, 343.83) force +[05/29/2026 04:40:43] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:40:43] launching puck at (-4.94, -0.78) with (344.20, 54.26) force +[05/29/2026 04:40:53] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:40:53] launching puck at (-1.74, 4.69) with (121.44, -326.61) force +[05/29/2026 04:41:00] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:41:00] launching puck at (-0.92, 4.91) with (64.42, -342.45) force +[05/29/2026 04:41:09] Client 16 sent text emote Oops +[05/29/2026 04:41:09] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:41:09] launching puck at (-1.37, 4.81) with (95.75, -335.04) force +[05/29/2026 04:41:17] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:41:17] launching puck at (4.99, 0.26) with (-347.98, -18.12) force +[05/29/2026 04:41:25] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:41:25] launching puck at (0.32, 4.99) with (-22.26, -347.74) force +[05/29/2026 04:41:29] Client 16 sent text emote WOW +[05/29/2026 04:41:29] Client 15 sent emoji emote 4 +[05/29/2026 04:41:33] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:41:33] launching puck at (1.51, 4.77) with (-105.46, -332.11) force +[05/29/2026 04:41:36] Client 16 sent emoji emote 3 +[05/29/2026 04:41:38] force = 70 * 0.6922734 = 48.45914 +[05/29/2026 04:41:38] launching puck at (2.33, -0.88) with (-112.92, 42.51) force +[05/29/2026 04:41:43] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:41:43] launching puck at (-4.99, -0.34) with (347.64, 23.75) force +[05/29/2026 04:41:43] Client 15 sent text emote Oops +[05/29/2026 04:41:46] Client 16 sent emoji emote 4 +[05/29/2026 04:42:00] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:42:00] launching puck at (1.45, -4.79) with (-100.82, 333.55) force +[05/29/2026 04:42:00] Client 16 sent emoji emote 3 +[05/29/2026 04:42:04] Client 15 sent emoji emote 0 +[05/29/2026 04:42:05] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:42:05] launching puck at (-0.43, -4.98) with (30.09, 347.15) force +[05/29/2026 04:42:06] Client 15 sent text emote WOW +[05/29/2026 04:42:06] Red goal scored, red score is now 2 +[05/29/2026 04:42:07] Client 15 sent text emote WOW +[05/29/2026 04:42:09] Client 15 sent text emote well played +[05/29/2026 04:42:10] Client 16 sent emoji emote 3 +[05/29/2026 04:42:13] Client 16 sent text emote Thanks! +[05/29/2026 04:42:13] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:42:13] launching puck at (0.01, 5.00) with (-1.02, -348.45) force +[05/29/2026 04:42:19] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:42:19] launching puck at (-3.24, 3.81) with (226.04, -265.19) force +[05/29/2026 04:42:22] Client 16 sent emoji emote 4 +[05/29/2026 04:42:25] Client 15 sent text emote GG +[05/29/2026 04:42:26] force = 70 * 0.6369669 = 44.58768 +[05/29/2026 04:42:26] launching puck at (-0.06, 2.21) with (2.47, -98.40) force +[05/29/2026 04:42:26] Blue goal scored, blue score is now 3 +[05/29/2026 04:42:28] Client 16 sent text emote GG +[05/29/2026 04:42:32] Dedicated match PATCH success: 200 {"ok":true,"id":130} +[05/29/2026 04:42:34] Dedicated match winner PATCH success: 200 {"ok":true,"id":130,"winner_id":17,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/29/2026 04:42:38] Rematch requested, max bet limit coins: 36 +[05/29/2026 04:42:49] Rematch was confirmed, closing in 5 secs. new room : +[05/29/2026 04:42:49] {"ok":true,"entry_fee":29,"rc_prize":48,"for_red":{"Players":[{"Name":"warlock","LastSeen":1780029769776,"l10_wins":3,"l10_losses":4,"UserId":2,"rc":0.0},{"Name":"Choel","LastSeen":1780029769776,"l10_wins":6,"l10_losses":3,"UserId":17,"rc":0.0}],"GameName":"soccar","Port":26677,"InitTime":1780029769776,"instance_started":true,"match_id":131,"entry_fee":29,"rc_prize":48,"your_team":"red"},"for_blue":{"Players":[{"Name":"warlock","LastSeen":1780029769776,"l10_wins":3,"l10_losses":4,"UserId":2,"rc":0.0},{"Name":"Choel","LastSeen":1780029769776,"l10_wins":6,"l10_losses":3,"UserId":17,"rc":0.0}],"GameName":"soccar","Port":26677,"InitTime":1780029769776,"instance_started":true,"match_id":131,"entry_fee":29,"rc_prize":48,"your_team":"blue"},"your_team":""} +[05/29/2026 04:42:50] Mirror server: client disconnected (connId=-856622081) +[05/29/2026 04:42:50] Active player connections: 1 +[05/29/2026 04:42:50] Mirror server: client disconnected (connId=1441819681) +[05/29/2026 04:42:50] Active player connections: 0 +[05/29/2026 04:42:55] Server will be closed due to no players in, 60 +[05/29/2026 04:43:05] Server will be closed due to no players in, 50 +[05/29/2026 04:43:15] Server will be closed due to no players in, 40 +[05/29/2026 04:43:25] Server will be closed due to no players in, 30 +[05/29/2026 04:43:35] Server will be closed due to no players in, 20 +[05/29/2026 04:43:45] Server will be closed due to no players in, 10 +[05/29/2026 04:43:55] All players left, exiting +[05/29/2026 04:43:56] Dedicated match PATCH success: 200 {"ok":true,"id":130} diff --git a/games/soccar/soccar_Data/Logs/131.txt b/games/soccar/soccar_Data/Logs/131.txt new file mode 100644 index 0000000..b5ce0fc --- /dev/null +++ b/games/soccar/soccar_Data/Logs/131.txt @@ -0,0 +1,85 @@ +[05/29/2026 04:42:51] Starting server at port 26677 +[05/29/2026 04:42:51] Mirror server exception logging enabled +[05/29/2026 04:42:51] Failed to fetch red and blue names, isServer? +[05/29/2026 04:42:51] Starting auto close watchdog +[05/29/2026 04:42:51] Active player connections: 0 +[05/29/2026 04:42:54] Active player connections: 1 +[05/29/2026 04:42:55] Client 15 set team to Blue +[05/29/2026 04:42:55] Active player connections: 2 +[05/29/2026 04:42:55] Game started On Server +[05/29/2026 04:42:55] Dedicated match PATCH success: 200 {"ok":true,"id":131} +[05/29/2026 04:42:55] Client 16 set team to Red +[05/29/2026 04:42:55] Dedicated match PATCH success: 200 {"ok":true,"id":131} +[05/29/2026 04:43:10] force = 70 * 0.3850466 = 26.95326 +[05/29/2026 04:43:10] launching puck at (1.19, -0.03) with (-32.02, 0.82) force +[05/29/2026 04:43:30] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:43:30] launching puck at (0.14, 5.00) with (-9.92, -348.31) force +[05/29/2026 04:43:35] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:43:35] launching puck at (4.22, -2.68) with (-294.29, 186.58) force +[05/29/2026 04:43:47] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:43:47] launching puck at (-1.68, 4.71) with (117.27, -328.13) force +[05/29/2026 04:43:52] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:43:52] launching puck at (-4.99, -0.26) with (347.98, 18.15) force +[05/29/2026 04:43:58] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:43:58] launching puck at (1.67, 4.71) with (-116.67, -328.34) force +[05/29/2026 04:44:01] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:44:01] launching puck at (4.80, -1.41) with (-334.26, 98.44) force +[05/29/2026 04:44:09] force = 70 * 0.8407427 = 58.85199 +[05/29/2026 04:44:09] launching puck at (-0.03, 3.47) with (1.84, -204.07) force +[05/29/2026 04:44:10] Blue goal scored, blue score is now 1 +[05/29/2026 04:44:12] Client 15 sent emoji emote 5 +[05/29/2026 04:44:12] Client 16 sent text emote WOW +[05/29/2026 04:44:14] Client 16 sent text emote Nice shot! +[05/29/2026 04:44:17] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:44:17] launching puck at (0.42, -4.98) with (-29.49, 347.20) force +[05/29/2026 04:44:18] Client 15 sent text emote Thanks! +[05/29/2026 04:44:22] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:44:22] launching puck at (0.19, -5.00) with (-13.11, 348.21) force +[05/29/2026 04:44:26] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:44:26] launching puck at (1.90, -4.62) with (-132.72, 322.19) force +[05/29/2026 04:44:33] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:44:33] launching puck at (-1.49, 4.77) with (103.82, -332.63) force +[05/29/2026 04:44:40] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:44:40] launching puck at (-4.77, 1.50) with (332.43, -104.44) force +[05/29/2026 04:44:44] Client 16 sent emoji emote 1 +[05/29/2026 04:44:51] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:44:51] launching puck at (2.98, 4.02) with (-207.54, -279.90) force +[05/29/2026 04:44:55] Client 15 sent text emote well played +[05/29/2026 04:44:56] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:44:56] launching puck at (0.46, -4.98) with (-32.19, 346.96) force +[05/29/2026 04:45:02] Client 16 sent emoji emote 4 +[05/29/2026 04:45:04] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:45:04] launching puck at (-0.97, 4.90) with (67.94, -341.77) force +[05/29/2026 04:45:05] Client 16 sent emoji emote 1 +[05/29/2026 04:45:05] Blue goal scored, blue score is now 2 +[05/29/2026 04:45:07] Client 16 sent text emote Nice shot! +[05/29/2026 04:45:08] Client 15 sent emoji emote 5 +[05/29/2026 04:45:11] Client 15 sent text emote Thanks! +[05/29/2026 04:45:13] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:45:13] launching puck at (4.94, -0.74) with (-344.59, 51.72) force +[05/29/2026 04:45:19] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:45:19] launching puck at (-2.23, 4.47) with (155.56, -311.80) force +[05/29/2026 04:45:23] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:45:23] launching puck at (-4.35, -2.46) with (303.49, 171.21) force +[05/29/2026 04:45:28] Client 16 sent emoji emote 2 +[05/29/2026 04:45:30] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:45:30] launching puck at (0.36, 4.99) with (-25.24, -347.54) force +[05/29/2026 04:45:30] Blue goal scored, blue score is now 3 +[05/29/2026 04:45:31] Dedicated match PATCH success: 200 {"ok":true,"id":131} +[05/29/2026 04:45:32] Client 16 sent text emote Nice shot! +[05/29/2026 04:45:33] Dedicated match winner PATCH success: 200 {"ok":true,"id":131,"winner_id":17,"economy":{"entry_fee_rc":29,"rc_prize":48,"participant_cc":100}} +[05/29/2026 04:45:33] Client 15 sent text emote GG +[05/29/2026 04:45:42] Rematch requested, max bet limit coins: 26 +[05/29/2026 04:45:56] Rematch was confirmed, closing in 5 secs. new room : +[05/29/2026 04:45:56] {"ok":true,"entry_fee":26,"rc_prize":42,"for_red":{"Players":[{"Name":"warlock","LastSeen":1780029956253,"l10_wins":2,"l10_losses":5,"UserId":2,"rc":0.0},{"Name":"Choel","LastSeen":1780029956253,"l10_wins":7,"l10_losses":2,"UserId":17,"rc":0.0}],"GameName":"soccar","Port":26473,"InitTime":1780029956253,"instance_started":true,"match_id":132,"entry_fee":26,"rc_prize":42,"your_team":"red"},"for_blue":{"Players":[{"Name":"warlock","LastSeen":1780029956253,"l10_wins":2,"l10_losses":5,"UserId":2,"rc":0.0},{"Name":"Choel","LastSeen":1780029956253,"l10_wins":7,"l10_losses":2,"UserId":17,"rc":0.0}],"GameName":"soccar","Port":26473,"InitTime":1780029956253,"instance_started":true,"match_id":132,"entry_fee":26,"rc_prize":42,"your_team":"blue"},"your_team":""} +[05/29/2026 04:45:56] Mirror server: client disconnected (connId=-856633699) +[05/29/2026 04:45:56] Mirror server: client disconnected (connId=1441827559) +[05/29/2026 04:45:56] Active player connections: 0 +[05/29/2026 04:46:01] Server will be closed due to no players in, 60 +[05/29/2026 04:46:11] Server will be closed due to no players in, 50 +[05/29/2026 04:46:21] Server will be closed due to no players in, 40 +[05/29/2026 04:46:31] Server will be closed due to no players in, 30 +[05/29/2026 04:46:41] Server will be closed due to no players in, 20 +[05/29/2026 04:46:51] Server will be closed due to no players in, 10 +[05/29/2026 04:47:01] All players left, exiting +[05/29/2026 04:47:01] Dedicated match PATCH success: 200 {"ok":true,"id":131} diff --git a/games/soccar/soccar_Data/Logs/132.txt b/games/soccar/soccar_Data/Logs/132.txt new file mode 100644 index 0000000..ab8a848 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/132.txt @@ -0,0 +1,78 @@ +[05/29/2026 04:45:57] Starting server at port 26473 +[05/29/2026 04:45:57] Mirror server exception logging enabled +[05/29/2026 04:45:57] Failed to fetch red and blue names, isServer? +[05/29/2026 04:45:57] Starting auto close watchdog +[05/29/2026 04:45:57] Active player connections: 0 +[05/29/2026 04:46:01] Active player connections: 1 +[05/29/2026 04:46:01] Client 15 set team to Blue +[05/29/2026 04:46:01] Active player connections: 2 +[05/29/2026 04:46:01] Game started On Server +[05/29/2026 04:46:01] Client 16 set team to Red +[05/29/2026 04:46:01] Dedicated match PATCH success: 200 {"ok":true,"id":132} +[05/29/2026 04:46:02] Dedicated match PATCH success: 200 {"ok":true,"id":132} +[05/29/2026 04:46:08] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:46:08] launching puck at (0.13, -5.00) with (-9.04, 348.34) force +[05/29/2026 04:46:16] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:46:16] launching puck at (4.62, 1.92) with (-321.64, -134.05) force +[05/29/2026 04:46:20] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:46:20] launching puck at (1.37, -4.81) with (-95.58, 335.09) force +[05/29/2026 04:46:20] Red goal scored, red score is now 1 +[05/29/2026 04:46:27] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:46:27] launching puck at (-0.04, 5.00) with (2.50, -348.44) force +[05/29/2026 04:46:33] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:46:33] launching puck at (3.01, 3.99) with (-209.64, -278.34) force +[05/29/2026 04:46:41] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:46:41] launching puck at (-0.02, 5.00) with (1.31, -348.45) force +[05/29/2026 04:46:46] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:46:46] launching puck at (-0.26, -4.99) with (17.82, 348.00) force +[05/29/2026 04:46:47] Red goal scored, red score is now 2 +[05/29/2026 04:46:50] Client 16 sent emoji emote 3 +[05/29/2026 04:46:51] Client 15 sent text emote Nice shot! +[05/29/2026 04:46:53] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:46:53] launching puck at (0.00, 5.00) with (0.17, -348.45) force +[05/29/2026 04:46:54] Client 16 sent text emote Thanks! +[05/29/2026 04:46:58] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:46:58] launching puck at (-0.49, -4.98) with (34.04, 346.79) force +[05/29/2026 04:47:06] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:47:06] launching puck at (-0.29, 4.99) with (19.88, -347.89) force +[05/29/2026 04:47:11] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:47:11] launching puck at (2.45, -4.36) with (-171.04, 303.59) force +[05/29/2026 04:47:20] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:47:20] launching puck at (4.62, -1.92) with (-321.86, 133.51) force +[05/29/2026 04:47:25] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:47:25] launching puck at (2.98, 4.02) with (-207.46, -279.96) force +[05/29/2026 04:47:29] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:47:29] launching puck at (-4.92, 0.89) with (342.84, -62.30) force +[05/29/2026 04:47:33] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:47:33] launching puck at (3.78, -3.27) with (-263.77, 227.70) force +[05/29/2026 04:47:37] Client 16 sent text emote Oops +[05/29/2026 04:47:38] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:47:38] launching puck at (1.63, 4.73) with (-113.50, -329.45) force +[05/29/2026 04:47:41] Client 15 sent emoji emote 0 +[05/29/2026 04:47:43] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:47:43] launching puck at (-2.69, -4.21) with (187.54, 293.68) force +[05/29/2026 04:47:46] Client 16 sent emoji emote 4 +[05/29/2026 04:47:51] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:47:51] launching puck at (-2.79, -4.15) with (194.40, 289.18) force +[05/29/2026 04:47:55] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:47:55] launching puck at (-1.69, -4.71) with (117.74, 327.96) force +[05/29/2026 04:47:56] Red goal scored, red score is now 3 +[05/29/2026 04:47:57] Dedicated match PATCH success: 200 {"ok":true,"id":132} +[05/29/2026 04:47:58] Dedicated match winner PATCH success: 200 {"ok":true,"id":132,"winner_id":2,"economy":{"entry_fee_rc":26,"rc_prize":42,"participant_cc":100}} +[05/29/2026 04:47:59] Client 16 sent emoji emote 2 +[05/29/2026 04:47:59] Client 15 sent text emote GG +[05/29/2026 04:48:26] Rematch requested, max bet limit coins: 180 +[05/29/2026 04:48:32] Rematch was confirmed, closing in 5 secs. new room : +[05/29/2026 04:48:32] {"ok":true,"entry_fee":42,"rc_prize":68,"for_red":{"Players":[{"Name":"warlock","LastSeen":1780030112229,"l10_wins":3,"l10_losses":4,"UserId":2,"rc":0.0},{"Name":"Choel","LastSeen":1780030112229,"l10_wins":6,"l10_losses":3,"UserId":17,"rc":0.0}],"GameName":"soccar","Port":26773,"InitTime":1780030112229,"instance_started":true,"match_id":133,"entry_fee":42,"rc_prize":68,"your_team":"red"},"for_blue":{"Players":[{"Name":"warlock","LastSeen":1780030112229,"l10_wins":3,"l10_losses":4,"UserId":2,"rc":0.0},{"Name":"Choel","LastSeen":1780030112229,"l10_wins":6,"l10_losses":3,"UserId":17,"rc":0.0}],"GameName":"soccar","Port":26773,"InitTime":1780030112229,"instance_started":true,"match_id":133,"entry_fee":42,"rc_prize":68,"your_team":"blue"},"your_team":""} +[05/29/2026 04:48:32] Mirror server: client disconnected (connId=-856633673) +[05/29/2026 04:48:32] Active player connections: 1 +[05/29/2026 04:48:32] Mirror server: client disconnected (connId=1441816335) +[05/29/2026 04:48:32] Active player connections: 0 +[05/29/2026 04:48:37] Server will be closed due to no players in, 60 +[05/29/2026 04:48:47] Server will be closed due to no players in, 50 +[05/29/2026 04:48:57] Server will be closed due to no players in, 40 +[05/29/2026 04:49:07] Server will be closed due to no players in, 30 +[05/29/2026 04:49:17] Server will be closed due to no players in, 20 +[05/29/2026 04:49:27] Server will be closed due to no players in, 10 +[05/29/2026 04:49:37] All players left, exiting +[05/29/2026 04:49:37] Dedicated match PATCH success: 200 {"ok":true,"id":132} diff --git a/games/soccar/soccar_Data/Logs/133.txt b/games/soccar/soccar_Data/Logs/133.txt new file mode 100644 index 0000000..39f3647 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/133.txt @@ -0,0 +1,96 @@ +[05/29/2026 04:48:33] Starting server at port 26773 +[05/29/2026 04:48:33] Mirror server exception logging enabled +[05/29/2026 04:48:33] Failed to fetch red and blue names, isServer? +[05/29/2026 04:48:33] Starting auto close watchdog +[05/29/2026 04:48:33] Active player connections: 0 +[05/29/2026 04:48:37] Active player connections: 1 +[05/29/2026 04:48:37] Client 15 set team to Blue +[05/29/2026 04:48:37] Active player connections: 2 +[05/29/2026 04:48:37] Game started On Server +[05/29/2026 04:48:37] Client 16 set team to Red +[05/29/2026 04:48:37] Dedicated match PATCH success: 200 {"ok":true,"id":133} +[05/29/2026 04:48:37] Dedicated match PATCH success: 200 {"ok":true,"id":133} +[05/29/2026 04:48:40] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:48:40] launching puck at (4.93, -0.86) with (-343.23, 60.10) force +[05/29/2026 04:48:45] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:48:45] launching puck at (-4.22, 2.68) with (294.21, -186.70) force +[05/29/2026 04:48:49] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:48:49] launching puck at (-1.67, -4.71) with (116.22, 328.50) force +[05/29/2026 04:49:03] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:49:03] launching puck at (-2.97, 4.02) with (206.77, -280.47) force +[05/29/2026 04:49:08] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:49:08] launching puck at (1.70, -4.70) with (-118.51, 327.68) force +[05/29/2026 04:49:09] Red goal scored, red score is now 1 +[05/29/2026 04:49:12] Client 16 sent emoji emote 4 +[05/29/2026 04:49:14] Client 16 sent emoji emote 5 +[05/29/2026 04:49:19] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:49:19] launching puck at (-0.13, 5.00) with (9.17, -348.33) force +[05/29/2026 04:49:24] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:49:24] launching puck at (4.98, -0.46) with (-346.99, 31.90) force +[05/29/2026 04:49:31] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:49:31] launching puck at (-3.62, 3.45) with (252.00, -240.66) force +[05/29/2026 04:49:36] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:49:36] launching puck at (-4.20, 2.71) with (292.63, -189.18) force +[05/29/2026 04:49:41] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:49:41] launching puck at (-4.76, 1.52) with (332.02, -105.74) force +[05/29/2026 04:49:45] Client 16 sent emoji emote 3 +[05/29/2026 04:49:47] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:49:47] launching puck at (-1.36, -4.81) with (94.54, 335.38) force +[05/29/2026 04:49:47] Red goal scored, red score is now 2 +[05/29/2026 04:49:48] Client 15 sent text emote Oops +[05/29/2026 04:49:50] Client 15 sent text emote Nice shot! +[05/29/2026 04:49:52] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:49:52] launching puck at (-0.09, 5.00) with (6.07, -348.40) force +[05/29/2026 04:49:53] Client 16 sent text emote Thanks! +[05/29/2026 04:49:58] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:49:58] launching puck at (-2.85, 4.11) with (198.60, -286.32) force +[05/29/2026 04:50:11] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:50:11] launching puck at (-1.85, 4.65) with (128.92, -323.73) force +[05/29/2026 04:50:12] Blue goal scored, blue score is now 1 +[05/29/2026 04:50:14] Client 16 sent text emote WOW +[05/29/2026 04:50:17] Client 16 sent text emote Nice shot! +[05/29/2026 04:50:17] Client 15 sent emoji emote 5 +[05/29/2026 04:50:19] Client 15 sent text emote Thanks! +[05/29/2026 04:50:21] force = 70 * 0.4300138 = 30.10096 +[05/29/2026 04:50:21] launching puck at (1.29, 0.21) with (-38.84, -6.18) force +[05/29/2026 04:50:30] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:50:30] launching puck at (-0.10, 5.00) with (6.68, -348.39) force +[05/29/2026 04:50:34] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:50:34] launching puck at (-3.94, -3.08) with (274.61, 214.49) force +[05/29/2026 04:50:41] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:50:41] launching puck at (-1.81, 4.66) with (126.22, -324.79) force +[05/29/2026 04:50:45] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:50:45] launching puck at (-4.73, -1.63) with (329.32, 113.88) force +[05/29/2026 04:50:49] Client 16 sent text emote Oops +[05/29/2026 04:50:52] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:50:52] launching puck at (-3.00, 4.00) with (208.75, -279.01) force +[05/29/2026 04:50:59] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:50:59] launching puck at (2.17, -4.50) with (-151.32, 313.88) force +[05/29/2026 04:51:04] Client 16 sent emoji emote 4 +[05/29/2026 04:51:09] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:51:09] launching puck at (1.18, -4.86) with (-82.19, 338.62) force +[05/29/2026 04:51:13] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:51:13] launching puck at (1.90, -4.62) with (-132.63, 322.23) force +[05/29/2026 04:51:17] Client 16 sent emoji emote 1 +[05/29/2026 04:51:20] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:51:20] launching puck at (4.98, 0.46) with (-346.96, -32.24) force +[05/29/2026 04:51:25] Client 15 sent text emote Oops +[05/29/2026 04:51:27] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 04:51:27] launching puck at (0.01, -5.00) with (-0.65, 348.45) force +[05/29/2026 04:51:28] Red goal scored, red score is now 3 +[05/29/2026 04:51:29] Dedicated match PATCH success: 200 {"ok":true,"id":133} +[05/29/2026 04:51:30] Client 16 sent text emote GG +[05/29/2026 04:51:30] Dedicated match winner PATCH success: 200 {"ok":true,"id":133,"winner_id":2,"economy":{"entry_fee_rc":42,"rc_prize":68,"participant_cc":100}} +[05/29/2026 04:51:32] Client 15 sent text emote GG +[05/29/2026 04:51:38] Mirror server: client disconnected (connId=-856652829) +[05/29/2026 04:51:38] Active player connections: 1 +[05/29/2026 04:51:58] Mirror server: client disconnected (connId=1441819794) +[05/29/2026 04:51:58] Active player connections: 0 +[05/29/2026 04:52:03] Server will be closed due to no players in, 60 +[05/29/2026 04:52:13] Server will be closed due to no players in, 50 +[05/29/2026 04:52:23] Server will be closed due to no players in, 40 +[05/29/2026 04:52:33] Server will be closed due to no players in, 30 +[05/29/2026 04:52:43] Server will be closed due to no players in, 20 +[05/29/2026 04:52:53] Server will be closed due to no players in, 10 +[05/29/2026 04:53:03] All players left, exiting +[05/29/2026 04:53:03] Dedicated match PATCH success: 200 {"ok":true,"id":133} diff --git a/games/soccar/soccar_Data/Logs/134.txt b/games/soccar/soccar_Data/Logs/134.txt new file mode 100644 index 0000000..9ad61b2 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/134.txt @@ -0,0 +1,127 @@ +[05/29/2026 09:46:31] Starting server at port 26255 +[05/29/2026 09:46:31] Mirror server exception logging enabled +[05/29/2026 09:46:31] Failed to fetch red and blue names, isServer? +[05/29/2026 09:46:31] Starting auto close watchdog +[05/29/2026 09:46:31] Active player connections: 0 +[05/29/2026 09:46:35] Active player connections: 1 +[05/29/2026 09:46:35] Active player connections: 2 +[05/29/2026 09:46:35] Game started On Server +[05/29/2026 09:46:35] Client 16 set team to Red +[05/29/2026 09:46:35] Client 15 set team to Blue +[05/29/2026 09:46:36] Dedicated match PATCH success: 200 {"ok":true,"id":134} +[05/29/2026 09:46:36] Dedicated match PATCH success: 200 {"ok":true,"id":134} +[05/29/2026 09:46:38] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:46:38] launching puck at (-0.05, -5.00) with (3.28, 348.44) force +[05/29/2026 09:46:44] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:46:44] launching puck at (4.95, 0.68) with (-345.20, -47.48) force +[05/29/2026 09:46:50] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:46:50] launching puck at (1.80, -4.67) with (-125.17, 325.20) force +[05/29/2026 09:46:57] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:46:57] launching puck at (0.73, 4.95) with (-51.01, -344.70) force +[05/29/2026 09:47:08] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:47:08] launching puck at (1.46, -4.78) with (-101.50, 333.34) force +[05/29/2026 09:47:13] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:47:13] launching puck at (-0.21, -5.00) with (14.44, 348.15) force +[05/29/2026 09:47:21] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:47:21] launching puck at (1.40, -4.80) with (-97.66, 334.49) force +[05/29/2026 09:47:21] Red goal scored, red score is now 1 +[05/29/2026 09:47:25] Client 16 sent emoji emote 5 +[05/29/2026 09:47:27] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:47:27] launching puck at (-0.02, 5.00) with (1.46, -348.45) force +[05/29/2026 09:47:34] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:47:34] launching puck at (2.31, 4.44) with (-160.85, -309.11) force +[05/29/2026 09:47:39] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:47:39] launching puck at (1.82, 4.66) with (-127.07, -324.46) force +[05/29/2026 09:47:47] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:47:47] launching puck at (2.96, 4.03) with (-206.28, -280.84) force +[05/29/2026 09:47:52] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:47:52] launching puck at (3.85, 3.19) with (-268.20, -222.46) force +[05/29/2026 09:48:00] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:48:00] launching puck at (3.82, -3.23) with (-265.90, 225.21) force +[05/29/2026 09:48:06] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:48:06] launching puck at (4.97, 0.58) with (-346.08, -40.56) force +[05/29/2026 09:48:17] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:48:17] launching puck at (-4.76, -1.54) with (331.60, 107.05) force +[05/29/2026 09:48:24] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:48:24] launching puck at (-1.13, 4.87) with (78.60, -339.47) force +[05/29/2026 09:48:29] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:48:29] launching puck at (-4.51, -2.16) with (314.39, 150.26) force +[05/29/2026 09:48:43] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:48:43] launching puck at (-4.45, 2.28) with (310.05, -159.03) force +[05/29/2026 09:48:48] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:48:48] launching puck at (2.09, -4.54) with (-145.64, 316.56) force +[05/29/2026 09:48:54] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:48:54] launching puck at (4.21, 2.70) with (-293.23, -188.25) force +[05/29/2026 09:48:59] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:48:59] launching puck at (2.33, -4.42) with (-162.35, 308.32) force +[05/29/2026 09:49:10] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:49:10] launching puck at (-2.73, -4.19) with (190.56, 291.73) force +[05/29/2026 09:49:16] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:49:16] launching puck at (0.18, -5.00) with (-12.30, 348.24) force +[05/29/2026 09:49:26] force = 70 * 0.7075896 = 49.53127 +[05/29/2026 09:49:26] launching puck at (-0.31, -2.56) with (15.37, 126.58) force +[05/29/2026 09:49:32] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:49:32] launching puck at (3.73, -3.33) with (-260.12, 231.85) force +[05/29/2026 09:49:38] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:49:38] launching puck at (3.24, 3.81) with (-225.62, -265.55) force +[05/29/2026 09:49:44] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:49:44] launching puck at (2.31, -4.44) with (-160.71, 309.18) force +[05/29/2026 09:49:53] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:49:53] launching puck at (4.97, 0.57) with (-346.15, -39.98) force +[05/29/2026 09:50:00] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:50:00] launching puck at (-1.02, -4.90) with (70.77, 341.19) force +[05/29/2026 09:50:06] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:50:06] launching puck at (5.00, 0.13) with (-348.33, -9.40) force +[05/29/2026 09:50:12] force = 70 * 0.9052947 = 63.37062 +[05/29/2026 09:50:12] launching puck at (-2.24, -3.36) with (142.06, 213.08) force +[05/29/2026 09:50:12] Red goal scored, red score is now 2 +[05/29/2026 09:50:20] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:50:20] launching puck at (-0.06, 5.00) with (4.34, -348.43) force +[05/29/2026 09:50:27] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:50:27] launching puck at (-2.16, -4.51) with (150.42, 314.31) force +[05/29/2026 09:50:32] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:50:32] launching puck at (-2.19, 4.49) with (152.77, -313.18) force +[05/29/2026 09:50:37] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:50:37] launching puck at (-0.56, -4.97) with (38.96, 346.27) force +[05/29/2026 09:50:42] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:50:42] launching puck at (-0.65, 4.96) with (45.06, -345.53) force +[05/29/2026 09:50:47] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:50:47] launching puck at (-3.34, -3.72) with (233.06, 259.05) force +[05/29/2026 09:50:51] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:50:51] launching puck at (-2.65, 4.24) with (184.57, -295.55) force +[05/29/2026 09:50:59] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:50:59] launching puck at (4.96, -0.60) with (-345.97, 41.54) force +[05/29/2026 09:51:03] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:51:03] launching puck at (-0.34, 4.99) with (23.79, -347.64) force +[05/29/2026 09:51:04] Blue goal scored, blue score is now 1 +[05/29/2026 09:51:09] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:51:09] launching puck at (-0.08, -5.00) with (5.64, 348.41) force +[05/29/2026 09:51:14] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:51:14] launching puck at (-0.30, 4.99) with (20.92, -347.82) force +[05/29/2026 09:51:19] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:51:19] launching puck at (-3.88, -3.16) with (270.19, 220.04) force +[05/29/2026 09:51:24] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:51:24] launching puck at (-5.00, 0.13) with (348.34, -8.79) force +[05/29/2026 09:51:31] force = 70 * 0.979141 = 68.53987 +[05/29/2026 09:51:31] launching puck at (3.95, -2.77) with (-270.40, 189.57) force +[05/29/2026 09:51:36] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:51:36] launching puck at (-3.41, 3.66) with (237.30, -255.16) force +[05/29/2026 09:51:41] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:51:41] launching puck at (-4.01, -2.98) with (279.70, 207.82) force +[05/29/2026 09:51:42] Red goal scored, red score is now 3 +[05/29/2026 09:51:43] Dedicated match PATCH success: 200 {"ok":true,"id":134} +[05/29/2026 09:51:45] Dedicated match winner PATCH success: 200 {"ok":true,"id":134,"winner_id":17,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/29/2026 09:52:02] Rematch requested, max bet limit coins: 401 +[05/29/2026 09:52:11] Rematch was confirmed, closing in 5 secs. new room : +[05/29/2026 09:52:11] {"ok":true,"entry_fee":401,"rc_prize":664,"for_red":{"Players":[{"Name":"Choel","LastSeen":1780048331505,"l10_wins":5,"l10_losses":4,"UserId":17,"rc":0.0},{"Name":"King lulu","LastSeen":1780048331505,"l10_wins":0,"l10_losses":1,"UserId":21,"rc":0.0}],"GameName":"soccar","Port":26334,"InitTime":1780048331505,"instance_started":true,"match_id":135,"entry_fee":401,"rc_prize":664,"your_team":"red"},"for_blue":{"Players":[{"Name":"Choel","LastSeen":1780048331505,"l10_wins":5,"l10_losses":4,"UserId":17,"rc":0.0},{"Name":"King lulu","LastSeen":1780048331505,"l10_wins":0,"l10_losses":1,"UserId":21,"rc":0.0}],"GameName":"soccar","Port":26334,"InitTime":1780048331505,"instance_started":true,"match_id":135,"entry_fee":401,"rc_prize":664,"your_team":"blue"},"your_team":""} +[05/29/2026 09:52:11] Mirror server: client disconnected (connId=-1479578193) +[05/29/2026 09:52:11] Mirror server: client disconnected (connId=-1479578200) +[05/29/2026 09:52:11] Active player connections: 0 +[05/29/2026 09:52:16] Server will be closed due to no players in, 60 +[05/29/2026 09:52:26] Server will be closed due to no players in, 50 +[05/29/2026 09:52:36] Server will be closed due to no players in, 40 +[05/29/2026 09:52:46] Server will be closed due to no players in, 30 +[05/29/2026 09:52:56] Server will be closed due to no players in, 20 +[05/29/2026 09:53:06] Server will be closed due to no players in, 10 +[05/29/2026 09:53:16] All players left, exiting +[05/29/2026 09:53:17] Dedicated match PATCH success: 200 {"ok":true,"id":134} diff --git a/games/soccar/soccar_Data/Logs/135.txt b/games/soccar/soccar_Data/Logs/135.txt new file mode 100644 index 0000000..2cca776 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/135.txt @@ -0,0 +1,81 @@ +[05/29/2026 09:52:12] Starting server at port 26334 +[05/29/2026 09:52:12] Mirror server exception logging enabled +[05/29/2026 09:52:12] Failed to fetch red and blue names, isServer? +[05/29/2026 09:52:12] Starting auto close watchdog +[05/29/2026 09:52:12] Active player connections: 0 +[05/29/2026 09:52:16] Active player connections: 1 +[05/29/2026 09:52:16] Active player connections: 2 +[05/29/2026 09:52:16] Game started On Server +[05/29/2026 09:52:16] Client 15 set team to Red +[05/29/2026 09:52:16] Client 16 set team to Blue +[05/29/2026 09:52:17] Dedicated match PATCH success: 200 {"ok":true,"id":135} +[05/29/2026 09:52:17] Dedicated match PATCH success: 200 {"ok":true,"id":135} +[05/29/2026 09:52:19] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:52:19] launching puck at (0.14, -5.00) with (-9.67, 348.32) force +[05/29/2026 09:52:24] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:52:24] launching puck at (-4.59, 1.98) with (320.06, -137.77) force +[05/29/2026 09:52:30] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:52:30] launching puck at (-4.05, -2.93) with (282.37, 204.18) force +[05/29/2026 09:52:37] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:52:37] launching puck at (-2.40, -4.39) with (167.28, 305.67) force +[05/29/2026 09:52:39] Blue goal scored, blue score is now 1 +[05/29/2026 09:52:45] Client 16 sent emoji emote 5 +[05/29/2026 09:52:53] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:52:53] launching puck at (-0.08, -5.00) with (5.36, 348.41) force +[05/29/2026 09:53:01] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:53:01] launching puck at (-0.31, 4.99) with (21.31, -347.80) force +[05/29/2026 09:53:06] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:53:06] launching puck at (1.39, -4.80) with (-97.10, 334.65) force +[05/29/2026 09:53:18] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:53:18] launching puck at (-1.50, 4.77) with (104.21, -332.50) force +[05/29/2026 09:53:23] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:53:23] launching puck at (-2.68, -4.22) with (186.76, 294.18) force +[05/29/2026 09:53:24] Red goal scored, red score is now 1 +[05/29/2026 09:53:29] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:53:29] launching puck at (-0.12, 5.00) with (8.71, -348.34) force +[05/29/2026 09:53:37] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:53:37] launching puck at (-0.77, -4.94) with (53.57, 344.31) force +[05/29/2026 09:53:49] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:53:49] launching puck at (1.11, 4.88) with (-77.36, -339.76) force +[05/29/2026 09:53:56] force = 70 * 0.772537 = 54.07759 +[05/29/2026 09:53:56] launching puck at (-2.82, -0.92) with (152.73, 49.66) force +[05/29/2026 09:54:01] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:54:01] launching puck at (-1.23, 4.85) with (85.41, -337.82) force +[05/29/2026 09:54:05] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:54:05] launching puck at (-4.73, -1.61) with (329.90, 112.20) force +[05/29/2026 09:54:11] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:54:11] launching puck at (-2.51, 4.33) with (174.72, -301.48) force +[05/29/2026 09:54:16] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:54:16] launching puck at (-1.81, 4.66) with (125.92, -324.90) force +[05/29/2026 09:54:21] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:54:21] launching puck at (-2.12, 4.53) with (147.45, -315.72) force +[05/29/2026 09:54:22] Blue goal scored, blue score is now 2 +[05/29/2026 09:54:28] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:54:28] launching puck at (-0.07, -5.00) with (4.67, 348.42) force +[05/29/2026 09:54:33] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:54:33] launching puck at (0.12, 5.00) with (-8.16, -348.36) force +[05/29/2026 09:54:43] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:54:43] launching puck at (-3.41, -3.66) with (237.32, 255.15) force +[05/29/2026 09:54:49] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:54:49] launching puck at (-4.29, 2.57) with (299.05, -178.86) force +[05/29/2026 09:54:55] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:54:55] launching puck at (-3.87, -3.17) with (269.47, 220.93) force +[05/29/2026 09:55:00] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:55:00] launching puck at (-3.57, 3.50) with (248.67, -244.10) force +[05/29/2026 09:55:00] Blue goal scored, blue score is now 3 +[05/29/2026 09:55:01] Dedicated match PATCH success: 200 {"ok":true,"id":135} +[05/29/2026 09:55:03] Dedicated match winner PATCH success: 200 {"ok":true,"id":135,"winner_id":21,"economy":{"entry_fee_rc":401,"rc_prize":664,"participant_cc":100}} +[05/29/2026 09:55:25] Rematch requested, max bet limit coins: 500 +[05/29/2026 09:55:32] Rematch was confirmed, closing in 5 secs. new room : +[05/29/2026 09:55:32] {"ok":true,"entry_fee":282,"rc_prize":468,"for_red":{"Players":[{"Name":"Choel","LastSeen":1780048532263,"l10_wins":5,"l10_losses":4,"UserId":17,"rc":0.0},{"Name":"King lulu","LastSeen":1780048532263,"l10_wins":1,"l10_losses":1,"UserId":21,"rc":0.0}],"GameName":"soccar","Port":26312,"InitTime":1780048532263,"instance_started":true,"match_id":136,"entry_fee":282,"rc_prize":468,"your_team":"red"},"for_blue":{"Players":[{"Name":"Choel","LastSeen":1780048532263,"l10_wins":5,"l10_losses":4,"UserId":17,"rc":0.0},{"Name":"King lulu","LastSeen":1780048532263,"l10_wins":1,"l10_losses":1,"UserId":21,"rc":0.0}],"GameName":"soccar","Port":26312,"InitTime":1780048532263,"instance_started":true,"match_id":136,"entry_fee":282,"rc_prize":468,"your_team":"blue"},"your_team":""} +[05/29/2026 09:55:32] Mirror server: client disconnected (connId=-1479577991) +[05/29/2026 09:55:32] Mirror server: client disconnected (connId=-1479577992) +[05/29/2026 09:55:32] Active player connections: 0 +[05/29/2026 09:55:37] Server will be closed due to no players in, 60 +[05/29/2026 09:55:47] Server will be closed due to no players in, 50 +[05/29/2026 09:55:57] Server will be closed due to no players in, 40 +[05/29/2026 09:56:07] Server will be closed due to no players in, 30 +[05/29/2026 09:56:17] Server will be closed due to no players in, 20 +[05/29/2026 09:56:27] Server will be closed due to no players in, 10 +[05/29/2026 09:56:37] All players left, exiting +[05/29/2026 09:56:38] Dedicated match PATCH success: 200 {"ok":true,"id":135} diff --git a/games/soccar/soccar_Data/Logs/136.txt b/games/soccar/soccar_Data/Logs/136.txt new file mode 100644 index 0000000..c893ff3 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/136.txt @@ -0,0 +1,92 @@ +[05/29/2026 09:55:33] Starting server at port 26312 +[05/29/2026 09:55:33] Mirror server exception logging enabled +[05/29/2026 09:55:33] Failed to fetch red and blue names, isServer? +[05/29/2026 09:55:33] Starting auto close watchdog +[05/29/2026 09:55:33] Active player connections: 0 +[05/29/2026 09:55:37] Active player connections: 1 +[05/29/2026 09:55:37] Active player connections: 2 +[05/29/2026 09:55:37] Game started On Server +[05/29/2026 09:55:37] Client 15 set team to Red +[05/29/2026 09:55:37] Client 16 set team to Blue +[05/29/2026 09:55:37] Dedicated match PATCH success: 200 {"ok":true,"id":136} +[05/29/2026 09:55:37] Dedicated match PATCH success: 200 {"ok":true,"id":136} +[05/29/2026 09:55:41] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:55:41] launching puck at (-0.05, -5.00) with (3.27, 348.44) force +[05/29/2026 09:55:48] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:55:48] launching puck at (4.99, 0.30) with (-347.82, -21.03) force +[05/29/2026 09:55:53] force = 70 * 0.9079476 = 63.55633 +[05/29/2026 09:55:53] launching puck at (3.96, -0.91) with (-251.89, 58.04) force +[05/29/2026 09:55:57] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:55:57] launching puck at (1.39, 4.80) with (-96.75, -334.75) force +[05/29/2026 09:56:06] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:56:06] launching puck at (4.97, -0.52) with (-346.56, 36.23) force +[05/29/2026 09:56:10] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:56:10] launching puck at (-4.15, 2.78) with (289.50, -193.93) force +[05/29/2026 09:56:15] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:56:15] launching puck at (4.69, -1.75) with (-326.52, 121.68) force +[05/29/2026 09:56:19] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:56:19] launching puck at (-0.08, 5.00) with (5.57, -348.41) force +[05/29/2026 09:56:24] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:56:24] launching puck at (4.94, -0.78) with (-344.21, 54.19) force +[05/29/2026 09:56:30] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:56:30] launching puck at (-0.85, 4.93) with (58.98, -343.42) force +[05/29/2026 09:56:36] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:56:36] launching puck at (-0.23, -4.99) with (15.96, 348.09) force +[05/29/2026 09:56:41] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:56:41] launching puck at (-4.57, 2.03) with (318.43, -141.50) force +[05/29/2026 09:56:45] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:56:45] launching puck at (1.40, -4.80) with (-97.59, 334.51) force +[05/29/2026 09:56:46] Red goal scored, red score is now 1 +[05/29/2026 09:56:51] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:56:51] launching puck at (0.05, 5.00) with (-3.19, -348.44) force +[05/29/2026 09:56:59] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:56:59] launching puck at (2.05, -4.56) with (-143.21, 317.66) force +[05/29/2026 09:57:04] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:57:04] launching puck at (1.85, 4.64) with (-129.10, -323.65) force +[05/29/2026 09:57:09] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:57:09] launching puck at (4.74, -1.59) with (-330.39, 110.73) force +[05/29/2026 09:57:15] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:57:15] launching puck at (4.52, 2.14) with (-314.82, -149.36) force +[05/29/2026 09:57:20] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:57:20] launching puck at (4.98, 0.49) with (-346.78, -34.07) force +[05/29/2026 09:57:20] Red goal scored, red score is now 2 +[05/29/2026 09:57:30] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:57:30] launching puck at (-0.03, 5.00) with (2.44, -348.44) force +[05/29/2026 09:57:38] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:57:38] launching puck at (-1.74, -4.69) with (121.56, 326.56) force +[05/29/2026 09:57:42] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:57:42] launching puck at (-4.80, -1.39) with (334.78, 96.64) force +[05/29/2026 09:57:47] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:57:47] launching puck at (2.54, -4.31) with (-176.99, 300.16) force +[05/29/2026 09:57:52] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:57:52] launching puck at (4.55, 2.07) with (-317.18, -144.28) force +[05/29/2026 09:57:57] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:57:57] launching puck at (4.94, 0.75) with (-344.47, -52.54) force +[05/29/2026 09:58:02] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:58:02] launching puck at (4.68, 1.75) with (-326.38, -122.06) force +[05/29/2026 09:58:07] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:58:07] launching puck at (-4.50, 2.17) with (313.91, -151.25) force +[05/29/2026 09:58:11] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:58:11] launching puck at (-5.00, -0.06) with (348.43, 4.27) force +[05/29/2026 09:58:17] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:58:17] launching puck at (-5.00, 0.20) with (348.17, -14.15) force +[05/29/2026 09:58:22] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:58:22] launching puck at (2.37, -4.40) with (-165.12, 306.85) force +[05/29/2026 09:58:28] force = 70 * 0.9955804 = 69.69063 +[05/29/2026 09:58:28] launching puck at (3.02, -3.99) with (-210.38, 277.78) force +[05/29/2026 09:58:29] Red goal scored, red score is now 3 +[05/29/2026 09:58:29] Dedicated match PATCH success: 200 {"ok":true,"id":136} +[05/29/2026 09:58:31] Dedicated match winner PATCH success: 200 {"ok":true,"id":136,"winner_id":17,"economy":{"entry_fee_rc":282,"rc_prize":468,"participant_cc":100}} +[05/29/2026 09:58:42] Mirror server: client disconnected (connId=-1479577934) +[05/29/2026 09:58:42] Active player connections: 1 +[05/29/2026 09:59:03] Mirror server transport error (connId=-1479577933, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting. +[05/29/2026 09:59:03] Mirror server: client disconnected (connId=-1479577933) +[05/29/2026 09:59:03] Active player connections: 0 +[05/29/2026 09:59:08] Server will be closed due to no players in, 60 +[05/29/2026 09:59:18] Server will be closed due to no players in, 50 +[05/29/2026 09:59:28] Server will be closed due to no players in, 40 +[05/29/2026 09:59:38] Server will be closed due to no players in, 30 +[05/29/2026 09:59:48] Server will be closed due to no players in, 20 +[05/29/2026 09:59:58] Server will be closed due to no players in, 10 +[05/29/2026 10:00:08] All players left, exiting +[05/29/2026 10:00:09] Dedicated match PATCH success: 200 {"ok":true,"id":136} diff --git a/games/soccar/soccar_Data/Logs/137.txt b/games/soccar/soccar_Data/Logs/137.txt new file mode 100644 index 0000000..4ffdf99 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/137.txt @@ -0,0 +1,13 @@ +[05/30/2026 10:10:15] Starting server at port 26843 +[05/30/2026 10:10:15] Mirror server exception logging enabled +[05/30/2026 10:10:15] Failed to fetch red and blue names, isServer? +[05/30/2026 10:10:15] Starting auto close watchdog +[05/30/2026 10:10:15] Active player connections: 0 +[05/30/2026 10:10:20] Server will be closed due to no players in, 60 +[05/30/2026 10:10:30] Server will be closed due to no players in, 50 +[05/30/2026 10:10:40] Server will be closed due to no players in, 40 +[05/30/2026 10:10:50] Server will be closed due to no players in, 30 +[05/30/2026 10:11:00] Server will be closed due to no players in, 20 +[05/30/2026 10:11:10] Server will be closed due to no players in, 10 +[05/30/2026 10:11:20] No players joined, exiting +[05/30/2026 10:11:20] Dedicated match PATCH success: 200 {"ok":true,"id":137} diff --git a/games/soccar/soccar_Data/Logs/138.txt b/games/soccar/soccar_Data/Logs/138.txt new file mode 100644 index 0000000..0cf96b5 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/138.txt @@ -0,0 +1,18 @@ +[05/30/2026 10:11:10] Starting server at port 26050 +[05/30/2026 10:11:10] Mirror server exception logging enabled +[05/30/2026 10:11:10] Failed to fetch red and blue names, isServer? +[05/30/2026 10:11:10] Starting auto close watchdog +[05/30/2026 10:11:10] Active player connections: 0 +[05/30/2026 10:11:11] Active player connections: 1 +[05/30/2026 10:11:12] Client 15 set team to Red +[05/30/2026 10:11:12] Dedicated match PATCH success: 200 {"ok":true,"id":138} +[05/30/2026 10:11:28] Mirror server: client disconnected (connId=-1479579477) +[05/30/2026 10:11:28] Active player connections: 0 +[05/30/2026 10:11:33] Server will be closed due to no players in, 60 +[05/30/2026 10:11:43] Server will be closed due to no players in, 50 +[05/30/2026 10:11:53] Server will be closed due to no players in, 40 +[05/30/2026 10:12:03] Server will be closed due to no players in, 30 +[05/30/2026 10:12:13] Server will be closed due to no players in, 20 +[05/30/2026 10:12:23] Server will be closed due to no players in, 10 +[05/30/2026 10:12:33] All players left, exiting +[05/30/2026 10:12:33] Dedicated match PATCH success: 200 {"ok":true,"id":138} diff --git a/games/soccar/soccar_Data/Logs/139.txt b/games/soccar/soccar_Data/Logs/139.txt new file mode 100644 index 0000000..bcf24df --- /dev/null +++ b/games/soccar/soccar_Data/Logs/139.txt @@ -0,0 +1,18 @@ +[05/31/2026 03:41:33] Starting server at port 26881 +[05/31/2026 03:41:33] Mirror server exception logging enabled +[05/31/2026 03:41:33] Failed to fetch red and blue names, isServer? +[05/31/2026 03:41:33] Starting auto close watchdog +[05/31/2026 03:41:33] Active player connections: 0 +[05/31/2026 03:41:36] Active player connections: 1 +[05/31/2026 03:41:37] Client 15 set team to Blue +[05/31/2026 03:41:37] Dedicated match PATCH success: 200 {"ok":true,"id":139} +[05/31/2026 03:42:10] Mirror server: client disconnected (connId=-1479578291) +[05/31/2026 03:42:10] Active player connections: 0 +[05/31/2026 03:42:15] Server will be closed due to no players in, 60 +[05/31/2026 03:42:25] Server will be closed due to no players in, 50 +[05/31/2026 03:42:35] Server will be closed due to no players in, 40 +[05/31/2026 03:42:45] Server will be closed due to no players in, 30 +[05/31/2026 03:42:55] Server will be closed due to no players in, 20 +[05/31/2026 03:43:05] Server will be closed due to no players in, 10 +[05/31/2026 03:43:15] All players left, exiting +[05/31/2026 03:43:16] Dedicated match PATCH success: 200 {"ok":true,"id":139} diff --git a/games/soccar/soccar_Data/Logs/14.txt b/games/soccar/soccar_Data/Logs/14.txt new file mode 100644 index 0000000..c42784c --- /dev/null +++ b/games/soccar/soccar_Data/Logs/14.txt @@ -0,0 +1,29 @@ +[05/16/2026 15:49:25] Starting server at port 26360 +[05/16/2026 15:49:25] Failed to fetch red and blue names, isServer? +[05/16/2026 15:49:25] Starting auto close watchdog +[05/16/2026 15:49:25] Active player connections: 0 +[05/16/2026 15:49:28] Active player connections: 1 +[05/16/2026 15:49:28] Client 15 set team to Blue +[05/16/2026 15:49:28] Dedicated match PATCH success: 200 {"ok":true,"id":14} +[05/16/2026 15:49:28] Active player connections: 2 +[05/16/2026 15:49:28] Game started On Server +[05/16/2026 15:49:29] Client 16 set team to Red +[05/16/2026 15:49:29] Dedicated match PATCH success: 200 {"ok":true,"id":14} +[05/16/2026 15:49:34] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 15:49:34] launching puck at (1.10, -4.88) with (-76.60, 339.93) force +[05/16/2026 15:49:39] force = 70 * 0.8699818 = 60.89873 +[05/16/2026 15:49:39] launching puck at (-0.77, 3.63) with (46.63, -221.32) force +[05/16/2026 15:49:45] force = 70 * 0.2773295 = 19.41306 +[05/16/2026 15:49:45] launching puck at (0.20, -0.95) with (-3.90, 18.53) force +[05/16/2026 15:49:50] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 15:49:50] launching puck at (-3.81, -3.24) with (265.47, 225.71) force +[05/16/2026 15:49:50] Active player connections: 1 +[05/16/2026 15:52:02] Active player connections: 0 +[05/16/2026 15:52:07] Server will be closed due to no players in, 60 +[05/16/2026 15:52:17] Server will be closed due to no players in, 50 +[05/16/2026 15:52:27] Server will be closed due to no players in, 40 +[05/16/2026 15:52:37] Server will be closed due to no players in, 30 +[05/16/2026 15:52:47] Server will be closed due to no players in, 20 +[05/16/2026 15:52:57] Server will be closed due to no players in, 10 +[05/16/2026 15:53:07] All players left, exiting +[05/16/2026 15:53:07] Dedicated match PATCH success: 200 {"ok":true,"id":14} diff --git a/games/soccar/soccar_Data/Logs/140.txt b/games/soccar/soccar_Data/Logs/140.txt new file mode 100644 index 0000000..de3ab86 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/140.txt @@ -0,0 +1,20 @@ +[05/31/2026 03:42:25] Starting server at port 26729 +[05/31/2026 03:42:25] Mirror server exception logging enabled +[05/31/2026 03:42:25] Failed to fetch red and blue names, isServer? +[05/31/2026 03:42:25] Starting auto close watchdog +[05/31/2026 03:42:25] Active player connections: 0 +[05/31/2026 03:42:28] Active player connections: 1 +[05/31/2026 03:42:28] Client 15 set team to Blue +[05/31/2026 03:42:28] Dedicated match PATCH success: 200 {"ok":true,"id":140} +[05/31/2026 03:42:38] Mirror server transport error (connId=-1479578120, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting. +[05/31/2026 03:42:38] Mirror server: client disconnected (connId=-1479578120) +[05/31/2026 03:44:30] Mirror server: client disconnected (connId=-1479578171) +[05/31/2026 03:44:30] Active player connections: 0 +[05/31/2026 03:44:35] Server will be closed due to no players in, 60 +[05/31/2026 03:44:45] Server will be closed due to no players in, 50 +[05/31/2026 03:44:55] Server will be closed due to no players in, 40 +[05/31/2026 03:45:05] Server will be closed due to no players in, 30 +[05/31/2026 03:45:15] Server will be closed due to no players in, 20 +[05/31/2026 03:45:25] Server will be closed due to no players in, 10 +[05/31/2026 03:45:35] All players left, exiting +[05/31/2026 03:45:35] Dedicated match PATCH success: 200 {"ok":true,"id":140} diff --git a/games/soccar/soccar_Data/Logs/141.txt b/games/soccar/soccar_Data/Logs/141.txt new file mode 100644 index 0000000..6a49124 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/141.txt @@ -0,0 +1,38 @@ +[05/31/2026 15:40:16] Starting server at port 26831 +[05/31/2026 15:40:16] Mirror server exception logging enabled +[05/31/2026 15:40:16] Failed to fetch red and blue names, isServer? +[05/31/2026 15:40:16] Starting auto close watchdog +[05/31/2026 15:40:16] Active player connections: 0 +[05/31/2026 15:40:17] Active player connections: 1 +[05/31/2026 15:40:17] Client 15 set team to Blue +[05/31/2026 15:40:18] Dedicated match PATCH success: 200 {"ok":true,"id":141} +[05/31/2026 15:40:19] Active player connections: 2 +[05/31/2026 15:40:19] Game started On Server +[05/31/2026 15:40:19] Client 16 set team to Red +[05/31/2026 15:40:19] Dedicated match PATCH success: 200 {"ok":true,"id":141} +[05/31/2026 15:40:21] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 15:40:21] launching puck at (4.91, -0.94) with (-342.20, 65.71) force +[05/31/2026 15:40:29] force = 70 * 0.817279 = 57.20953 +[05/31/2026 15:40:29] launching puck at (-3.04, 1.25) with (173.84, -71.43) force +[05/31/2026 15:40:35] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 15:40:35] launching puck at (-0.11, -5.00) with (7.36, 348.38) force +[05/31/2026 15:40:46] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 15:40:46] launching puck at (-4.56, 2.06) with (317.50, -143.57) force +[05/31/2026 15:40:51] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 15:40:51] launching puck at (-4.75, 1.56) with (331.12, -108.53) force +[05/31/2026 15:40:56] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 15:40:56] launching puck at (1.93, 4.61) with (-134.28, -321.54) force +[05/31/2026 15:40:57] Blue goal scored, blue score is now 1 +[05/31/2026 15:41:11] Mirror server: client disconnected (connId=1441813682) +[05/31/2026 15:41:11] Active player connections: 1 +[05/31/2026 15:41:24] Mirror server transport error (connId=720374246, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting. +[05/31/2026 15:41:24] Mirror server: client disconnected (connId=720374246) +[05/31/2026 15:41:24] Active player connections: 0 +[05/31/2026 15:41:29] Server will be closed due to no players in, 60 +[05/31/2026 15:41:39] Server will be closed due to no players in, 50 +[05/31/2026 15:41:49] Server will be closed due to no players in, 40 +[05/31/2026 15:41:59] Server will be closed due to no players in, 30 +[05/31/2026 15:42:09] Server will be closed due to no players in, 20 +[05/31/2026 15:42:19] Server will be closed due to no players in, 10 +[05/31/2026 15:42:29] All players left, exiting +[05/31/2026 15:42:30] Dedicated match PATCH success: 200 {"ok":true,"id":141} diff --git a/games/soccar/soccar_Data/Logs/142.txt b/games/soccar/soccar_Data/Logs/142.txt new file mode 100644 index 0000000..7209aca --- /dev/null +++ b/games/soccar/soccar_Data/Logs/142.txt @@ -0,0 +1,163 @@ +[05/31/2026 23:17:34] Starting server at port 26593 +[05/31/2026 23:17:34] Mirror server exception logging enabled +[05/31/2026 23:17:34] Failed to fetch red and blue names, isServer? +[05/31/2026 23:17:34] Starting auto close watchdog +[05/31/2026 23:17:34] Active player connections: 0 +[05/31/2026 23:17:36] Active player connections: 1 +[05/31/2026 23:17:37] Active player connections: 2 +[05/31/2026 23:17:37] Game started On Server +[05/31/2026 23:17:37] Client 15 set team to Blue +[05/31/2026 23:17:37] Client 16 set team to Red +[05/31/2026 23:17:38] Dedicated match PATCH success: 200 {"ok":true,"id":142} +[05/31/2026 23:17:38] Dedicated match PATCH success: 200 {"ok":true,"id":142} +[05/31/2026 23:17:41] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:17:41] launching puck at (0.19, -5.00) with (-13.53, 348.19) force +[05/31/2026 23:17:46] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:17:46] launching puck at (2.25, 4.47) with (-156.50, -311.33) force +[05/31/2026 23:17:52] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:17:52] launching puck at (4.35, -2.46) with (-303.41, 171.35) force +[05/31/2026 23:18:00] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:18:00] launching puck at (0.19, -5.00) with (-13.52, 348.19) force +[05/31/2026 23:18:12] force = 70 * 0.4302356 = 30.11649 +[05/31/2026 23:18:12] launching puck at (0.47, -1.22) with (-14.26, 36.70) force +[05/31/2026 23:18:18] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:18:18] launching puck at (-2.38, 4.40) with (166.09, -306.32) force +[05/31/2026 23:18:23] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:18:23] launching puck at (-0.96, -4.91) with (67.07, 341.94) force +[05/31/2026 23:18:29] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:18:29] launching puck at (-4.33, 2.50) with (301.83, -174.13) force +[05/31/2026 23:18:34] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:18:34] launching puck at (-3.44, -3.63) with (239.57, 253.04) force +[05/31/2026 23:18:40] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:18:40] launching puck at (-0.34, 4.99) with (23.87, -347.63) force +[05/31/2026 23:18:48] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:18:48] launching puck at (-2.89, -4.08) with (201.71, 284.14) force +[05/31/2026 23:18:56] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:18:56] launching puck at (-1.18, -4.86) with (82.44, 338.56) force +[05/31/2026 23:19:04] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:19:04] launching puck at (4.61, -1.93) with (-321.45, 134.49) force +[05/31/2026 23:19:04] Red goal scored, red score is now 1 +[05/31/2026 23:19:10] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:19:10] launching puck at (0.07, 5.00) with (-4.73, -348.42) force +[05/31/2026 23:19:18] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:19:18] launching puck at (1.32, -4.82) with (-92.17, 336.04) force +[05/31/2026 23:19:24] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:19:24] launching puck at (1.93, 4.61) with (-134.77, -321.33) force +[05/31/2026 23:19:30] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:19:30] launching puck at (3.77, -3.28) with (-262.80, 228.81) force +[05/31/2026 23:19:37] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:19:37] launching puck at (-0.37, 4.99) with (25.89, -347.49) force +[05/31/2026 23:19:38] Blue goal scored, blue score is now 1 +[05/31/2026 23:19:43] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:19:43] launching puck at (0.39, -4.98) with (-27.07, 347.40) force +[05/31/2026 23:19:50] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:19:50] launching puck at (2.04, 4.57) with (-141.96, -318.22) force +[05/31/2026 23:20:16] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:20:16] launching puck at (0.58, 4.97) with (-40.20, -346.13) force +[05/31/2026 23:20:31] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:20:31] launching puck at (4.06, -2.92) with (-282.79, 203.59) force +[05/31/2026 23:20:44] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:20:44] launching puck at (-3.94, 3.08) with (274.56, -214.56) force +[05/31/2026 23:20:50] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:20:50] launching puck at (-5.00, -0.08) with (348.41, 5.46) force +[05/31/2026 23:20:56] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:20:56] launching puck at (-1.52, 4.76) with (106.11, -331.90) force +[05/31/2026 23:21:00] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:21:00] launching puck at (-4.70, -1.72) with (327.31, 119.52) force +[05/31/2026 23:21:11] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:21:11] launching puck at (3.21, 3.83) with (-223.82, -267.06) force +[05/31/2026 23:21:17] force = 70 * 0.8144301 = 57.01011 +[05/31/2026 23:21:17] launching puck at (-2.18, -2.43) with (124.21, 138.54) force +[05/31/2026 23:21:22] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:21:22] launching puck at (-0.35, 4.99) with (24.07, -347.62) force +[05/31/2026 23:21:28] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:21:28] launching puck at (-0.05, -5.00) with (3.14, 348.44) force +[05/31/2026 23:21:33] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:21:33] launching puck at (-4.99, 0.37) with (347.51, -25.64) force +[05/31/2026 23:21:38] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:21:38] launching puck at (-0.06, -5.00) with (4.42, 348.43) force +[05/31/2026 23:21:43] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:21:43] launching puck at (3.16, -3.88) with (-219.88, 270.32) force +[05/31/2026 23:21:48] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:21:48] launching puck at (-3.82, -3.23) with (266.13, 224.94) force +[05/31/2026 23:21:57] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:21:57] launching puck at (-3.49, 3.58) with (243.55, -249.20) force +[05/31/2026 23:22:07] force = 70 * 0.9716381 = 68.01466 +[05/31/2026 23:22:07] launching puck at (4.67, -0.77) with (-317.78, 52.42) force +[05/31/2026 23:22:23] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:22:23] launching puck at (-1.84, -4.65) with (128.48, 323.90) force +[05/31/2026 23:22:29] force = 70 * 0.7278107 = 50.94675 +[05/31/2026 23:22:29] launching puck at (2.51, -0.96) with (-128.07, 48.87) force +[05/31/2026 23:22:29] Red goal scored, red score is now 2 +[05/31/2026 23:22:33] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:22:33] launching puck at (-0.20, 5.00) with (13.97, -348.17) force +[05/31/2026 23:22:38] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:22:38] launching puck at (4.09, -2.88) with (-284.76, 200.82) force +[05/31/2026 23:22:44] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:22:44] launching puck at (-2.72, 4.19) with (189.73, -292.27) force +[05/31/2026 23:22:50] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:22:50] launching puck at (1.95, 4.60) with (-136.02, -320.81) force +[05/31/2026 23:22:56] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:22:56] launching puck at (0.99, 4.90) with (-69.20, -341.51) force +[05/31/2026 23:23:03] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:23:03] launching puck at (3.38, 3.69) with (-235.51, -256.82) force +[05/31/2026 23:23:09] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:23:09] launching puck at (1.22, 4.85) with (-84.82, -337.97) force +[05/31/2026 23:23:15] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:23:15] launching puck at (4.92, -0.91) with (-342.66, 63.28) force +[05/31/2026 23:23:20] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:23:20] launching puck at (3.15, 3.88) with (-219.51, -270.62) force +[05/31/2026 23:23:26] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:23:26] launching puck at (5.00, 0.08) with (-348.41, -5.77) force +[05/31/2026 23:23:32] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:23:32] launching puck at (-4.91, -0.95) with (342.10, 66.23) force +[05/31/2026 23:23:39] force = 70 * 0.875456 = 61.28192 +[05/31/2026 23:23:39] launching puck at (3.44, 1.54) with (-210.51, -94.07) force +[05/31/2026 23:23:47] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:23:47] launching puck at (3.91, 3.11) with (-272.73, -216.88) force +[05/31/2026 23:23:56] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:23:56] launching puck at (3.54, -3.53) with (-246.51, 246.28) force +[05/31/2026 23:24:05] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:24:05] launching puck at (-0.39, -4.98) with (27.24, 347.39) force +[05/31/2026 23:24:10] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:24:10] launching puck at (3.17, -3.87) with (-220.60, 269.73) force +[05/31/2026 23:24:16] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:24:16] launching puck at (4.98, -0.41) with (-347.28, 28.62) force +[05/31/2026 23:24:23] force = 70 * 0.9761047 = 68.32733 +[05/31/2026 23:24:23] launching puck at (4.78, 0.01) with (-326.92, -0.56) force +[05/31/2026 23:24:30] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:24:30] launching puck at (2.47, 4.35) with (-172.36, -302.84) force +[05/31/2026 23:24:48] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:24:48] launching puck at (-0.23, 4.99) with (15.98, -348.09) force +[05/31/2026 23:24:56] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:24:56] launching puck at (4.48, 2.22) with (-312.09, -154.98) force +[05/31/2026 23:25:05] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:25:05] launching puck at (2.36, -4.41) with (-164.18, 307.35) force +[05/31/2026 23:25:14] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:25:14] launching puck at (2.19, 4.49) with (-152.94, -313.10) force +[05/31/2026 23:25:20] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:25:20] launching puck at (4.48, -2.22) with (-312.14, 154.88) force +[05/31/2026 23:25:28] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:25:28] launching puck at (0.23, -4.99) with (-15.73, 348.10) force +[05/31/2026 23:25:34] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:25:34] launching puck at (3.27, 3.79) with (-227.59, -263.86) force +[05/31/2026 23:25:56] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:25:56] launching puck at (2.10, -4.54) with (-146.29, 316.26) force +[05/31/2026 23:25:57] Red goal scored, red score is now 3 +[05/31/2026 23:25:58] Dedicated match PATCH success: 200 {"ok":true,"id":142} +[05/31/2026 23:26:00] Dedicated match winner PATCH success: 200 {"ok":true,"id":142,"winner_id":9,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/31/2026 23:26:15] Rematch requested, max bet limit coins: 2 +[05/31/2026 23:26:27] Rematch was confirmed, closing in 5 secs. new room : +[05/31/2026 23:26:27] {"ok":true,"entry_fee":5,"rc_prize":8,"for_red":{"Players":[{"Name":"choel","LastSeen":1780269987452,"l10_wins":4,"l10_losses":5,"UserId":9,"rc":0.0},{"Name":"King lulu","LastSeen":1780269987452,"l10_wins":1,"l10_losses":3,"UserId":21,"rc":0.0}],"GameName":"soccar","Port":26369,"InitTime":1780269987452,"instance_started":true,"match_id":143,"entry_fee":5,"rc_prize":8,"your_team":"red"},"for_blue":{"Players":[{"Name":"choel","LastSeen":1780269987452,"l10_wins":4,"l10_losses":5,"UserId":9,"rc":0.0},{"Name":"King lulu","LastSeen":1780269987452,"l10_wins":1,"l10_losses":3,"UserId":21,"rc":0.0}],"GameName":"soccar","Port":26369,"InitTime":1780269987452,"instance_started":true,"match_id":143,"entry_fee":5,"rc_prize":8,"your_team":"blue"},"your_team":""} +[05/31/2026 23:26:27] Mirror server: client disconnected (connId=930811520) +[05/31/2026 23:26:27] Active player connections: 1 +[05/31/2026 23:26:27] Mirror server: client disconnected (connId=-1479580752) +[05/31/2026 23:26:27] Active player connections: 0 +[05/31/2026 23:26:32] Server will be closed due to no players in, 60 +[05/31/2026 23:26:42] Server will be closed due to no players in, 50 +[05/31/2026 23:26:52] Server will be closed due to no players in, 40 +[05/31/2026 23:27:02] Server will be closed due to no players in, 30 +[05/31/2026 23:27:12] Server will be closed due to no players in, 20 +[05/31/2026 23:27:22] Server will be closed due to no players in, 10 +[05/31/2026 23:27:32] All players left, exiting +[05/31/2026 23:27:33] Dedicated match PATCH success: 200 {"ok":true,"id":142} diff --git a/games/soccar/soccar_Data/Logs/143.txt b/games/soccar/soccar_Data/Logs/143.txt new file mode 100644 index 0000000..e340616 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/143.txt @@ -0,0 +1,98 @@ +[05/31/2026 23:26:31] Starting server at port 26369 +[05/31/2026 23:26:31] Mirror server exception logging enabled +[05/31/2026 23:26:31] Failed to fetch red and blue names, isServer? +[05/31/2026 23:26:31] Starting auto close watchdog +[05/31/2026 23:26:31] Active player connections: 0 +[05/31/2026 23:26:32] Active player connections: 1 +[05/31/2026 23:26:32] Active player connections: 2 +[05/31/2026 23:26:32] Game started On Server +[05/31/2026 23:26:32] Client 15 set team to Red +[05/31/2026 23:26:32] Client 16 set team to Blue +[05/31/2026 23:26:33] Dedicated match PATCH success: 200 {"ok":true,"id":143} +[05/31/2026 23:26:33] Dedicated match PATCH success: 200 {"ok":true,"id":143} +[05/31/2026 23:26:34] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:26:34] launching puck at (-0.07, -5.00) with (4.93, 348.42) force +[05/31/2026 23:26:40] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:26:40] launching puck at (0.16, 5.00) with (-11.16, -348.27) force +[05/31/2026 23:26:46] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:26:46] launching puck at (3.43, -3.64) with (-239.08, 253.49) force +[05/31/2026 23:26:52] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:26:52] launching puck at (4.40, 2.37) with (-306.91, -165.01) force +[05/31/2026 23:26:57] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:26:57] launching puck at (4.98, -0.47) with (-346.91, 32.72) force +[05/31/2026 23:27:04] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:27:04] launching puck at (1.06, 4.89) with (-73.87, -340.53) force +[05/31/2026 23:27:16] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:27:16] launching puck at (1.37, 4.81) with (-95.60, -335.08) force +[05/31/2026 23:27:21] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:27:21] launching puck at (1.52, 4.76) with (-105.63, -332.06) force +[05/31/2026 23:27:26] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:27:26] launching puck at (0.38, -4.99) with (-26.37, 347.45) force +[05/31/2026 23:27:33] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:27:33] launching puck at (5.00, -0.17) with (-348.26, 11.65) force +[05/31/2026 23:27:39] force = 70 * 0.9773529 = 68.4147 +[05/31/2026 23:27:39] launching puck at (4.59, -1.40) with (-314.03, 95.67) force +[05/31/2026 23:27:45] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:27:45] launching puck at (5.00, -0.21) with (-348.14, 14.80) force +[05/31/2026 23:27:56] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:27:56] launching puck at (4.95, -0.73) with (-344.73, 50.78) force +[05/31/2026 23:28:01] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:28:01] launching puck at (1.94, -4.61) with (-135.09, 321.20) force +[05/31/2026 23:28:06] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:28:06] launching puck at (-3.16, -3.88) with (219.98, 270.24) force +[05/31/2026 23:28:06] Red goal scored, red score is now 1 +[05/31/2026 23:28:11] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:28:11] launching puck at (-0.03, 5.00) with (1.90, -348.45) force +[05/31/2026 23:28:18] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:28:18] launching puck at (-1.36, -4.81) with (94.46, 335.41) force +[05/31/2026 23:28:23] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:28:23] launching puck at (-2.85, 4.11) with (198.41, -286.45) force +[05/31/2026 23:28:29] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:28:29] launching puck at (5.00, -0.01) with (-348.45, 0.99) force +[05/31/2026 23:28:36] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:28:36] launching puck at (4.65, 1.84) with (-324.14, -127.89) force +[05/31/2026 23:28:43] force = 70 * 0.9708194 = 67.95736 +[05/31/2026 23:28:43] launching puck at (4.69, -0.56) with (-318.93, 38.07) force +[05/31/2026 23:28:51] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:28:51] launching puck at (-1.76, 4.68) with (122.66, -326.15) force +[05/31/2026 23:28:55] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:28:55] launching puck at (-0.41, -4.98) with (28.28, 347.30) force +[05/31/2026 23:29:03] force = 70 * 0.5427509 = 37.99256 +[05/31/2026 23:29:03] launching puck at (0.57, -1.66) with (-21.76, 63.11) force +[05/31/2026 23:29:08] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:29:08] launching puck at (0.93, -4.91) with (-64.70, 342.39) force +[05/31/2026 23:29:14] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:29:14] launching puck at (2.36, -4.41) with (-164.55, 307.15) force +[05/31/2026 23:29:19] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:29:19] launching puck at (4.49, -2.19) with (-313.14, 152.86) force +[05/31/2026 23:29:20] Red goal scored, red score is now 2 +[05/31/2026 23:29:25] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:29:25] launching puck at (-0.03, 5.00) with (2.14, -348.45) force +[05/31/2026 23:29:32] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:29:32] launching puck at (3.06, 3.95) with (-213.49, -275.39) force +[05/31/2026 23:29:38] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:29:38] launching puck at (1.07, 4.88) with (-74.45, -340.41) force +[05/31/2026 23:29:52] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:29:52] launching puck at (2.48, 4.34) with (-173.01, -302.47) force +[05/31/2026 23:29:57] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:29:57] launching puck at (0.13, 5.00) with (-9.05, -348.34) force +[05/31/2026 23:30:02] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:30:02] launching puck at (2.98, -4.02) with (-207.36, 280.04) force +[05/31/2026 23:30:03] Red goal scored, red score is now 3 +[05/31/2026 23:30:04] Dedicated match PATCH success: 200 {"ok":true,"id":143} +[05/31/2026 23:30:06] Dedicated match winner PATCH success: 200 {"ok":true,"id":143,"winner_id":9,"economy":{"entry_fee_rc":5,"rc_prize":8,"participant_cc":100}} +[05/31/2026 23:30:26] Rematch requested, max bet limit coins: 353 +[05/31/2026 23:30:43] Rematch was confirmed, closing in 5 secs. new room : +[05/31/2026 23:30:43] {"ok":true,"entry_fee":353,"rc_prize":584,"for_red":{"Players":[{"Name":"choel","LastSeen":1780270243871,"l10_wins":5,"l10_losses":4,"UserId":9,"rc":0.0},{"Name":"King lulu","LastSeen":1780270243871,"l10_wins":1,"l10_losses":4,"UserId":21,"rc":0.0}],"GameName":"soccar","Port":26298,"InitTime":1780270243871,"instance_started":true,"match_id":144,"entry_fee":353,"rc_prize":584,"your_team":"red"},"for_blue":{"Players":[{"Name":"choel","LastSeen":1780270243871,"l10_wins":5,"l10_losses":4,"UserId":9,"rc":0.0},{"Name":"King lulu","LastSeen":1780270243871,"l10_wins":1,"l10_losses":4,"UserId":21,"rc":0.0}],"GameName":"soccar","Port":26298,"InitTime":1780270243871,"instance_started":true,"match_id":144,"entry_fee":353,"rc_prize":584,"your_team":"blue"},"your_team":""} +[05/31/2026 23:30:44] Mirror server: client disconnected (connId=930841320) +[05/31/2026 23:30:44] Active player connections: 1 +[05/31/2026 23:30:44] Mirror server: client disconnected (connId=-1479578084) +[05/31/2026 23:30:44] Active player connections: 0 +[05/31/2026 23:30:49] Server will be closed due to no players in, 60 +[05/31/2026 23:30:59] Server will be closed due to no players in, 50 +[05/31/2026 23:31:09] Server will be closed due to no players in, 40 +[05/31/2026 23:31:19] Server will be closed due to no players in, 30 +[05/31/2026 23:31:29] Server will be closed due to no players in, 20 +[05/31/2026 23:31:39] Server will be closed due to no players in, 10 +[05/31/2026 23:31:49] All players left, exiting +[05/31/2026 23:31:49] Dedicated match PATCH success: 200 {"ok":true,"id":143} diff --git a/games/soccar/soccar_Data/Logs/144.txt b/games/soccar/soccar_Data/Logs/144.txt new file mode 100644 index 0000000..87a7605 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/144.txt @@ -0,0 +1,96 @@ +[05/31/2026 23:30:45] Starting server at port 26298 +[05/31/2026 23:30:45] Mirror server exception logging enabled +[05/31/2026 23:30:45] Failed to fetch red and blue names, isServer? +[05/31/2026 23:30:45] Starting auto close watchdog +[05/31/2026 23:30:45] Active player connections: 0 +[05/31/2026 23:30:48] Active player connections: 1 +[05/31/2026 23:30:49] Client 15 set team to Red +[05/31/2026 23:30:49] Active player connections: 2 +[05/31/2026 23:30:49] Game started On Server +[05/31/2026 23:30:49] Dedicated match PATCH success: 200 {"ok":true,"id":144} +[05/31/2026 23:30:49] Client 16 set team to Blue +[05/31/2026 23:30:49] Dedicated match PATCH success: 200 {"ok":true,"id":144} +[05/31/2026 23:30:53] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:30:53] launching puck at (0.16, -5.00) with (-11.17, 348.27) force +[05/31/2026 23:30:58] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:30:58] launching puck at (-3.46, 3.61) with (240.89, -251.78) force +[05/31/2026 23:31:06] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:31:06] launching puck at (-0.18, -5.00) with (12.63, 348.22) force +[05/31/2026 23:31:11] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:31:11] launching puck at (-2.04, 4.56) with (142.48, -317.99) force +[05/31/2026 23:31:16] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:31:16] launching puck at (-4.99, 0.27) with (347.95, -18.74) force +[05/31/2026 23:31:20] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:31:20] launching puck at (2.68, 4.22) with (-186.75, -294.19) force +[05/31/2026 23:31:26] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:31:26] launching puck at (4.13, -2.82) with (-287.56, 196.80) force +[05/31/2026 23:31:31] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:31:31] launching puck at (3.53, 3.54) with (-245.86, -246.93) force +[05/31/2026 23:31:38] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:31:38] launching puck at (1.28, -4.83) with (-89.08, 336.87) force +[05/31/2026 23:31:39] Red goal scored, red score is now 1 +[05/31/2026 23:31:49] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:31:49] launching puck at (-0.08, 5.00) with (5.56, -348.41) force +[05/31/2026 23:31:56] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:31:56] launching puck at (4.99, -0.31) with (-347.80, 21.40) force +[05/31/2026 23:32:02] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:32:02] launching puck at (4.99, 0.35) with (-347.58, -24.66) force +[05/31/2026 23:32:11] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:32:11] launching puck at (4.94, -0.74) with (-344.62, 51.57) force +[05/31/2026 23:32:17] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:32:17] launching puck at (-1.49, 4.77) with (103.91, -332.60) force +[05/31/2026 23:32:22] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:32:22] launching puck at (-0.46, 4.98) with (32.28, -346.95) force +[05/31/2026 23:32:28] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:32:28] launching puck at (2.06, 4.55) with (-143.79, -317.40) force +[05/31/2026 23:32:32] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:32:32] launching puck at (4.89, -1.05) with (-340.70, 73.07) force +[05/31/2026 23:32:37] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:32:37] launching puck at (4.99, 0.32) with (-347.73, -22.48) force +[05/31/2026 23:32:42] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:32:42] launching puck at (3.96, -3.05) with (-275.97, 212.75) force +[05/31/2026 23:32:48] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:32:48] launching puck at (3.63, 3.43) with (-253.29, -239.30) force +[05/31/2026 23:32:49] Blue goal scored, blue score is now 1 +[05/31/2026 23:32:55] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:32:55] launching puck at (0.00, -5.00) with (-0.32, 348.45) force +[05/31/2026 23:33:03] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:33:03] launching puck at (-4.66, -1.82) with (324.44, 127.11) force +[05/31/2026 23:33:08] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:33:08] launching puck at (-1.62, -4.73) with (112.89, 329.66) force +[05/31/2026 23:33:09] Red goal scored, red score is now 2 +[05/31/2026 23:33:15] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:33:15] launching puck at (-0.13, 5.00) with (8.82, -348.34) force +[05/31/2026 23:33:19] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:33:19] launching puck at (5.00, 0.12) with (-348.36, -8.23) force +[05/31/2026 23:33:28] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:33:28] launching puck at (-0.95, 4.91) with (65.88, -342.17) force +[05/31/2026 23:33:29] Blue goal scored, blue score is now 2 +[05/31/2026 23:33:34] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:33:34] launching puck at (-0.02, -5.00) with (1.28, 348.45) force +[05/31/2026 23:33:41] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:33:41] launching puck at (4.49, -2.20) with (-313.06, 153.00) force +[05/31/2026 23:33:48] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:33:48] launching puck at (1.72, -4.69) with (-120.00, 327.14) force +[05/31/2026 23:33:54] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:33:54] launching puck at (0.84, -4.93) with (-58.40, 343.52) force +[05/31/2026 23:33:59] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:33:59] launching puck at (0.53, -4.97) with (-36.86, 346.50) force +[05/31/2026 23:34:00] Red goal scored, red score is now 3 +[05/31/2026 23:34:01] Dedicated match PATCH success: 200 {"ok":true,"id":144} +[05/31/2026 23:34:04] Dedicated match winner PATCH success: 200 {"ok":true,"id":144,"winner_id":9,"economy":{"entry_fee_rc":353,"rc_prize":584,"participant_cc":100}} +[05/31/2026 23:34:25] Rematch requested, max bet limit coins: 500 +[05/31/2026 23:34:30] Rematch was confirmed, closing in 5 secs. new room : +[05/31/2026 23:34:30] {"ok":true,"entry_fee":61,"rc_prize":100,"for_red":{"Players":[{"Name":"choel","LastSeen":1780270470082,"l10_wins":6,"l10_losses":3,"UserId":9,"rc":0.0},{"Name":"King lulu","LastSeen":1780270470082,"l10_wins":1,"l10_losses":4,"UserId":21,"rc":0.0}],"GameName":"soccar","Port":26963,"InitTime":1780270470082,"instance_started":true,"match_id":145,"entry_fee":61,"rc_prize":100,"your_team":"red"},"for_blue":{"Players":[{"Name":"choel","LastSeen":1780270470082,"l10_wins":6,"l10_losses":3,"UserId":9,"rc":0.0},{"Name":"King lulu","LastSeen":1780270470082,"l10_wins":1,"l10_losses":4,"UserId":21,"rc":0.0}],"GameName":"soccar","Port":26963,"InitTime":1780270470082,"instance_started":true,"match_id":145,"entry_fee":61,"rc_prize":100,"your_team":"blue"},"your_team":""} +[05/31/2026 23:34:30] Mirror server: client disconnected (connId=930810125) +[05/31/2026 23:34:30] Active player connections: 1 +[05/31/2026 23:34:30] Mirror server: client disconnected (connId=-1479577929) +[05/31/2026 23:34:30] Active player connections: 0 +[05/31/2026 23:34:35] Server will be closed due to no players in, 60 +[05/31/2026 23:34:45] Server will be closed due to no players in, 50 +[05/31/2026 23:34:55] Server will be closed due to no players in, 40 +[05/31/2026 23:35:05] Server will be closed due to no players in, 30 +[05/31/2026 23:35:15] Server will be closed due to no players in, 20 +[05/31/2026 23:35:25] Server will be closed due to no players in, 10 +[05/31/2026 23:35:35] All players left, exiting +[05/31/2026 23:35:35] Dedicated match PATCH success: 200 {"ok":true,"id":144} diff --git a/games/soccar/soccar_Data/Logs/145.txt b/games/soccar/soccar_Data/Logs/145.txt new file mode 100644 index 0000000..671fee7 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/145.txt @@ -0,0 +1,109 @@ +[05/31/2026 23:34:31] Starting server at port 26963 +[05/31/2026 23:34:31] Mirror server exception logging enabled +[05/31/2026 23:34:31] Failed to fetch red and blue names, isServer? +[05/31/2026 23:34:31] Starting auto close watchdog +[05/31/2026 23:34:31] Active player connections: 0 +[05/31/2026 23:34:35] Active player connections: 1 +[05/31/2026 23:34:35] Client 15 set team to Red +[05/31/2026 23:34:35] Dedicated match PATCH success: 200 {"ok":true,"id":145} +[05/31/2026 23:34:36] Active player connections: 2 +[05/31/2026 23:34:36] Game started On Server +[05/31/2026 23:34:37] Client 16 set team to Blue +[05/31/2026 23:34:37] Dedicated match PATCH success: 200 {"ok":true,"id":145} +[05/31/2026 23:34:38] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:34:38] launching puck at (0.07, -5.00) with (-5.17, 348.41) force +[05/31/2026 23:34:44] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:34:44] launching puck at (-4.77, 1.49) with (332.65, -103.74) force +[05/31/2026 23:34:53] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:34:53] launching puck at (-0.94, -4.91) with (65.68, 342.21) force +[05/31/2026 23:34:59] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:34:59] launching puck at (-2.32, 4.43) with (161.69, -308.67) force +[05/31/2026 23:35:06] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:35:06] launching puck at (-3.20, -3.85) with (222.67, 268.03) force +[05/31/2026 23:35:14] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:35:14] launching puck at (-1.44, 4.79) with (100.18, -333.74) force +[05/31/2026 23:35:21] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:35:21] launching puck at (-1.13, 4.87) with (78.84, -339.42) force +[05/31/2026 23:35:30] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:35:30] launching puck at (-3.16, 3.88) with (219.93, -270.28) force +[05/31/2026 23:35:31] Blue goal scored, blue score is now 1 +[05/31/2026 23:35:36] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:35:36] launching puck at (0.03, -5.00) with (-2.28, 348.45) force +[05/31/2026 23:35:44] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:35:44] launching puck at (-4.96, -0.62) with (345.77, 43.15) force +[05/31/2026 23:35:52] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:35:52] launching puck at (-2.44, -4.36) with (170.00, 304.17) force +[05/31/2026 23:35:52] Red goal scored, red score is now 1 +[05/31/2026 23:36:01] force = 70 * 0.454127 = 31.78889 +[05/31/2026 23:36:01] launching puck at (-1.38, 0.09) with (43.82, -2.93) force +[05/31/2026 23:36:05] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:36:05] launching puck at (-0.07, -5.00) with (4.62, 348.42) force +[05/31/2026 23:36:10] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:36:10] launching puck at (3.67, 3.39) with (-255.88, -236.53) force +[05/31/2026 23:36:15] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:36:15] launching puck at (2.07, -4.55) with (-144.32, 317.16) force +[05/31/2026 23:36:20] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:36:20] launching puck at (0.45, -4.98) with (-31.59, 347.02) force +[05/31/2026 23:36:24] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:36:24] launching puck at (-1.33, -4.82) with (92.69, 335.90) force +[05/31/2026 23:36:33] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:36:33] launching puck at (2.85, 4.11) with (-198.31, -286.51) force +[05/31/2026 23:36:38] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:36:38] launching puck at (1.29, -4.83) with (-90.11, 336.60) force +[05/31/2026 23:36:45] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:36:45] launching puck at (3.41, 3.66) with (-237.34, -255.13) force +[05/31/2026 23:36:58] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:36:58] launching puck at (2.50, -4.33) with (-174.06, 301.87) force +[05/31/2026 23:37:05] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:37:05] launching puck at (0.41, -4.98) with (-28.69, 347.27) force +[05/31/2026 23:37:10] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:37:10] launching puck at (3.44, 3.62) with (-240.02, -252.61) force +[05/31/2026 23:37:17] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:37:17] launching puck at (4.70, 1.69) with (-327.84, -118.08) force +[05/31/2026 23:37:22] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:37:22] launching puck at (2.00, 4.58) with (-139.07, -319.50) force +[05/31/2026 23:37:27] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:37:27] launching puck at (3.80, 3.25) with (-265.05, -226.21) force +[05/31/2026 23:37:32] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:37:32] launching puck at (2.17, -4.50) with (-151.21, 313.93) force +[05/31/2026 23:37:39] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:37:39] launching puck at (-1.08, 4.88) with (75.15, -340.25) force +[05/31/2026 23:37:46] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:37:46] launching puck at (-0.66, 4.96) with (46.21, -345.38) force +[05/31/2026 23:37:54] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:37:54] launching puck at (4.88, -1.10) with (-339.91, 76.67) force +[05/31/2026 23:37:59] force = 70 * 0.8272795 = 57.90956 +[05/31/2026 23:37:59] launching puck at (3.12, 1.24) with (-180.89, -71.91) force +[05/31/2026 23:38:07] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:38:07] launching puck at (-4.96, 0.64) with (345.59, -44.54) force +[05/31/2026 23:38:08] Blue goal scored, blue score is now 2 +[05/31/2026 23:38:13] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:38:13] launching puck at (0.05, -5.00) with (-3.49, 348.44) force +[05/31/2026 23:38:20] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:38:20] launching puck at (1.62, 4.73) with (-112.98, -329.63) force +[05/31/2026 23:38:25] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:38:25] launching puck at (3.67, -3.39) with (-256.04, 236.35) force +[05/31/2026 23:38:32] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:38:32] launching puck at (3.63, 3.44) with (-252.68, -239.94) force +[05/31/2026 23:38:40] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:38:40] launching puck at (4.39, -2.40) with (-305.75, 167.14) force +[05/31/2026 23:38:45] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:38:45] launching puck at (-3.85, 3.19) with (268.15, -222.52) force +[05/31/2026 23:38:46] Blue goal scored, blue score is now 3 +[05/31/2026 23:38:46] Dedicated match PATCH success: 200 {"ok":true,"id":145} +[05/31/2026 23:38:48] Dedicated match winner PATCH success: 200 {"ok":true,"id":145,"winner_id":21,"economy":{"entry_fee_rc":61,"rc_prize":100,"participant_cc":100}} +[05/31/2026 23:38:56] Rematch requested, max bet limit coins: 500 +[05/31/2026 23:39:06] Rematch was confirmed, closing in 5 secs. new room : +[05/31/2026 23:39:06] {"ok":true,"entry_fee":100,"rc_prize":166,"for_red":{"Players":[{"Name":"choel","LastSeen":1780270746177,"l10_wins":6,"l10_losses":3,"UserId":9,"rc":0.0},{"Name":"King lulu","LastSeen":1780270746177,"l10_wins":1,"l10_losses":4,"UserId":21,"rc":0.0}],"GameName":"soccar","Port":26239,"InitTime":1780270746177,"instance_started":true,"match_id":146,"entry_fee":100,"rc_prize":166,"your_team":"red"},"for_blue":{"Players":[{"Name":"choel","LastSeen":1780270746177,"l10_wins":6,"l10_losses":3,"UserId":9,"rc":0.0},{"Name":"King lulu","LastSeen":1780270746177,"l10_wins":1,"l10_losses":4,"UserId":21,"rc":0.0}],"GameName":"soccar","Port":26239,"InitTime":1780270746177,"instance_started":true,"match_id":146,"entry_fee":100,"rc_prize":166,"your_team":"blue"},"your_team":""} +[05/31/2026 23:39:06] Mirror server: client disconnected (connId=930833404) +[05/31/2026 23:39:06] Active player connections: 1 +[05/31/2026 23:39:06] Mirror server: client disconnected (connId=-1479577660) +[05/31/2026 23:39:06] Active player connections: 0 +[05/31/2026 23:39:11] Server will be closed due to no players in, 60 +[05/31/2026 23:39:21] Server will be closed due to no players in, 50 +[05/31/2026 23:39:31] Server will be closed due to no players in, 40 +[05/31/2026 23:39:41] Server will be closed due to no players in, 30 +[05/31/2026 23:39:51] Server will be closed due to no players in, 20 +[05/31/2026 23:40:01] Server will be closed due to no players in, 10 +[05/31/2026 23:40:11] All players left, exiting +[05/31/2026 23:40:12] Dedicated match PATCH success: 200 {"ok":true,"id":145} diff --git a/games/soccar/soccar_Data/Logs/146.txt b/games/soccar/soccar_Data/Logs/146.txt new file mode 100644 index 0000000..b07711d --- /dev/null +++ b/games/soccar/soccar_Data/Logs/146.txt @@ -0,0 +1,116 @@ +[05/31/2026 23:39:08] Starting server at port 26239 +[05/31/2026 23:39:08] Mirror server exception logging enabled +[05/31/2026 23:39:08] Failed to fetch red and blue names, isServer? +[05/31/2026 23:39:08] Starting auto close watchdog +[05/31/2026 23:39:08] Active player connections: 0 +[05/31/2026 23:39:11] Active player connections: 1 +[05/31/2026 23:39:11] Active player connections: 2 +[05/31/2026 23:39:11] Game started On Server +[05/31/2026 23:39:11] Client 15 set team to Red +[05/31/2026 23:39:11] Client 16 set team to Blue +[05/31/2026 23:39:11] Dedicated match PATCH success: 200 {"ok":true,"id":146} +[05/31/2026 23:39:11] Dedicated match PATCH success: 200 {"ok":true,"id":146} +[05/31/2026 23:39:14] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:39:14] launching puck at (0.04, -5.00) with (-3.12, 348.44) force +[05/31/2026 23:39:20] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:39:20] launching puck at (1.22, 4.85) with (-84.96, -337.94) force +[05/31/2026 23:39:26] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:39:26] launching puck at (1.31, -4.83) with (-91.35, 336.27) force +[05/31/2026 23:39:33] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:39:33] launching puck at (-2.34, 4.42) with (162.95, -308.00) force +[05/31/2026 23:39:34] Blue goal scored, blue score is now 1 +[05/31/2026 23:39:39] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:39:39] launching puck at (-0.12, -5.00) with (8.10, 348.36) force +[05/31/2026 23:39:44] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:39:44] launching puck at (-1.57, 4.75) with (109.48, -330.81) force +[05/31/2026 23:39:49] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:39:49] launching puck at (1.56, -4.75) with (-108.63, 331.09) force +[05/31/2026 23:39:50] Red goal scored, red score is now 1 +[05/31/2026 23:39:59] force = 70 * 0.7636334 = 53.45433 +[05/31/2026 23:39:59] launching puck at (-0.51, 2.87) with (27.50, -153.18) force +[05/31/2026 23:40:04] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:40:04] launching puck at (0.43, -4.98) with (-29.92, 347.17) force +[05/31/2026 23:40:11] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:40:11] launching puck at (3.69, 3.38) with (-256.86, -235.47) force +[05/31/2026 23:40:15] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:40:15] launching puck at (-3.29, -3.76) with (229.46, 262.24) force +[05/31/2026 23:40:19] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:40:19] launching puck at (4.37, -2.43) with (-304.57, 169.29) force +[05/31/2026 23:40:27] force = 70 * 0.8964829 = 62.7538 +[05/31/2026 23:40:27] launching puck at (3.69, 1.43) with (-231.39, -90.01) force +[05/31/2026 23:40:31] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:40:31] launching puck at (-0.45, -4.98) with (31.53, 347.02) force +[05/31/2026 23:40:36] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:40:36] launching puck at (1.82, -4.66) with (-126.76, 324.58) force +[05/31/2026 23:40:41] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:40:41] launching puck at (4.80, 1.38) with (-334.82, -96.52) force +[05/31/2026 23:40:50] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:40:50] launching puck at (-3.07, -3.94) with (214.22, 274.82) force +[05/31/2026 23:40:51] Red goal scored, red score is now 2 +[05/31/2026 23:40:57] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:40:57] launching puck at (0.02, 5.00) with (-1.62, -348.45) force +[05/31/2026 23:41:04] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:41:04] launching puck at (-3.00, 4.00) with (209.23, -278.64) force +[05/31/2026 23:41:09] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:41:09] launching puck at (-1.38, 4.81) with (96.32, -334.88) force +[05/31/2026 23:41:17] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:41:17] launching puck at (-2.52, -4.32) with (175.87, 300.82) force +[05/31/2026 23:41:22] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:41:22] launching puck at (-4.30, 2.56) with (299.37, -178.33) force +[05/31/2026 23:41:32] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:41:32] launching puck at (-4.97, -0.57) with (346.20, 39.56) force +[05/31/2026 23:41:39] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:41:39] launching puck at (0.08, -5.00) with (-5.91, 348.40) force +[05/31/2026 23:41:48] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:41:48] launching puck at (-4.94, -0.80) with (343.97, 55.70) force +[05/31/2026 23:41:54] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:41:54] launching puck at (-4.19, 2.72) with (292.28, -189.72) force +[05/31/2026 23:42:02] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:42:02] launching puck at (0.96, -4.91) with (-66.66, 342.02) force +[05/31/2026 23:42:08] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:42:08] launching puck at (2.23, 4.47) with (-155.51, -311.83) force +[05/31/2026 23:42:09] Blue goal scored, blue score is now 2 +[05/31/2026 23:42:15] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:42:15] launching puck at (0.09, -5.00) with (-6.59, 348.39) force +[05/31/2026 23:42:21] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:42:21] launching puck at (4.19, 2.73) with (-292.09, -190.01) force +[05/31/2026 23:42:26] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:42:26] launching puck at (-0.11, -5.00) with (7.90, 348.36) force +[05/31/2026 23:42:30] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:42:30] launching puck at (3.60, 3.47) with (-251.18, -241.51) force +[05/31/2026 23:42:36] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:42:36] launching puck at (2.78, -4.15) with (-193.85, 289.55) force +[05/31/2026 23:42:41] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:42:41] launching puck at (3.84, -3.20) with (-267.87, 222.86) force +[05/31/2026 23:42:47] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:42:47] launching puck at (-0.16, -5.00) with (11.21, 348.27) force +[05/31/2026 23:42:54] Client 16 sent text emote What a save! +[05/31/2026 23:42:55] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:42:55] launching puck at (-3.98, 3.03) with (277.19, -211.16) force +[05/31/2026 23:43:00] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:43:00] launching puck at (-1.44, -4.79) with (100.42, 333.67) force +[05/31/2026 23:43:07] force = 70 * 0.8971064 = 62.79745 +[05/31/2026 23:43:07] launching puck at (-3.96, 0.10) with (248.75, -6.14) force +[05/31/2026 23:43:13] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:43:13] launching puck at (-2.99, -4.01) with (208.39, 279.27) force +[05/31/2026 23:43:18] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:43:18] launching puck at (-4.84, -1.27) with (336.98, 88.68) force +[05/31/2026 23:43:24] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:43:24] launching puck at (0.87, 4.92) with (-60.39, -343.18) force +[05/31/2026 23:43:30] force = 70 * 0.9955804 = 69.69063 +[05/31/2026 23:43:30] launching puck at (-1.21, 4.85) with (84.54, -338.04) force +[05/31/2026 23:43:31] Blue goal scored, blue score is now 3 +[05/31/2026 23:43:32] Dedicated match PATCH success: 200 {"ok":true,"id":146} +[05/31/2026 23:43:34] Dedicated match winner PATCH success: 200 {"ok":true,"id":146,"winner_id":21,"economy":{"entry_fee_rc":100,"rc_prize":166,"participant_cc":100}} +[05/31/2026 23:43:48] Mirror server: client disconnected (connId=930815481) +[05/31/2026 23:43:48] Active player connections: 1 +[05/31/2026 23:44:00] Mirror server: client disconnected (connId=-1479578163) +[05/31/2026 23:44:00] Active player connections: 0 +[05/31/2026 23:44:04] Server will be closed due to no players in, 60 +[05/31/2026 23:44:14] Server will be closed due to no players in, 50 +[05/31/2026 23:44:24] Server will be closed due to no players in, 40 +[05/31/2026 23:44:34] Server will be closed due to no players in, 30 +[05/31/2026 23:44:44] Server will be closed due to no players in, 20 +[05/31/2026 23:44:54] Server will be closed due to no players in, 10 +[05/31/2026 23:45:04] All players left, exiting +[05/31/2026 23:45:05] Dedicated match PATCH success: 200 {"ok":true,"id":146} diff --git a/games/soccar/soccar_Data/Logs/15.txt b/games/soccar/soccar_Data/Logs/15.txt new file mode 100644 index 0000000..416353d --- /dev/null +++ b/games/soccar/soccar_Data/Logs/15.txt @@ -0,0 +1,23 @@ +[05/16/2026 15:52:29] Starting server at port 26907 +[05/16/2026 15:52:29] Failed to fetch red and blue names, isServer? +[05/16/2026 15:52:29] Starting auto close watchdog +[05/16/2026 15:52:29] Active player connections: 0 +[05/16/2026 15:52:32] Active player connections: 1 +[05/16/2026 15:52:32] Client 15 set team to Blue +[05/16/2026 15:52:32] Active player connections: 2 +[05/16/2026 15:52:32] Game started On Server +[05/16/2026 15:52:33] Client 16 set team to Red +[05/16/2026 15:52:33] Dedicated match PATCH success: 200 {"ok":true,"id":15} +[05/16/2026 15:52:33] Dedicated match PATCH success: 200 {"ok":true,"id":15} +[05/16/2026 15:52:39] force = 70 * 0.6150417 = 43.05292 +[05/16/2026 15:52:39] launching puck at (-1.10, 1.80) with (47.22, -77.32) force +[05/16/2026 15:52:39] Active player connections: 1 +[05/16/2026 15:53:46] Active player connections: 0 +[05/16/2026 15:53:51] Server will be closed due to no players in, 60 +[05/16/2026 15:54:01] Server will be closed due to no players in, 50 +[05/16/2026 15:54:11] Server will be closed due to no players in, 40 +[05/16/2026 15:54:21] Server will be closed due to no players in, 30 +[05/16/2026 15:54:31] Server will be closed due to no players in, 20 +[05/16/2026 15:54:41] Server will be closed due to no players in, 10 +[05/16/2026 15:54:51] All players left, exiting +[05/16/2026 15:54:52] Dedicated match PATCH success: 200 {"ok":true,"id":15} diff --git a/games/soccar/soccar_Data/Logs/16.txt b/games/soccar/soccar_Data/Logs/16.txt new file mode 100644 index 0000000..b808df6 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/16.txt @@ -0,0 +1,60 @@ +[05/16/2026 16:31:56] Starting server at port 26122 +[05/16/2026 16:31:56] Mirror server exception logging enabled +[05/16/2026 16:31:56] Failed to fetch red and blue names, isServer? +[05/16/2026 16:31:56] Starting auto close watchdog +[05/16/2026 16:31:56] Active player connections: 0 +[05/16/2026 16:31:59] Active player connections: 1 +[05/16/2026 16:31:59] Client 15 set team to Blue +[05/16/2026 16:32:00] Active player connections: 2 +[05/16/2026 16:32:00] Game started On Server +[05/16/2026 16:32:00] Client 16 set team to Red +[05/16/2026 16:32:00] Dedicated match PATCH success: 200 {"ok":true,"id":16} +[05/16/2026 16:32:01] Dedicated match PATCH success: 200 {"ok":true,"id":16} +[05/16/2026 16:32:08] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 16:32:08] launching puck at (1.70, -4.70) with (-118.20, 327.79) force +[05/16/2026 16:32:16] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 16:32:16] launching puck at (-2.39, 4.39) with (166.61, -306.04) force +[05/16/2026 16:32:25] force = 70 * 0.8651695 = 60.56186 +[05/16/2026 16:32:25] launching puck at (-3.64, -0.45) with (220.68, 27.47) force +[05/16/2026 16:32:28] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 16:32:28] launching puck at (2.22, 4.48) with (-154.76, -312.20) force +[05/16/2026 16:32:36] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 16:32:36] launching puck at (-3.70, 3.36) with (258.18, -234.02) force +[05/16/2026 16:32:43] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 16:32:43] launching puck at (4.59, 1.99) with (-319.65, -138.72) force +[05/16/2026 16:32:51] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 16:32:51] launching puck at (-2.94, -4.04) with (205.16, 281.65) force +[05/16/2026 16:33:05] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 16:33:05] launching puck at (-2.57, 4.29) with (179.18, -298.85) force +[05/16/2026 16:33:15] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 16:33:15] launching puck at (0.15, -5.00) with (-10.11, 348.31) force +[05/16/2026 16:33:19] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 16:33:19] launching puck at (0.37, -4.99) with (-25.59, 347.51) force +[05/16/2026 16:33:19] Red goal scored, red score is now 1 +[05/16/2026 16:33:24] force = 70 * 0.7745718 = 54.22002 +[05/16/2026 16:33:24] launching puck at (-2.74, 1.19) with (148.36, -64.44) force +[05/16/2026 16:33:28] force = 70 * 0.8011396 = 56.07977 +[05/16/2026 16:33:28] launching puck at (-0.08, -3.17) with (4.42, 177.53) force +[05/16/2026 16:33:29] Red goal scored, red score is now 2 +[05/16/2026 16:33:36] force = 70 * 0.6940116 = 48.58081 +[05/16/2026 16:33:36] launching puck at (-1.84, 1.69) with (89.35, -82.21) force +[05/16/2026 16:33:40] force = 70 * 0.8637219 = 60.46053 +[05/16/2026 16:33:40] launching puck at (0.01, -3.66) with (-0.41, 221.25) force +[05/16/2026 16:33:41] Red goal scored, red score is now 3 +[05/16/2026 16:33:42] Dedicated match PATCH success: 200 {"ok":true,"id":16} +[05/16/2026 16:33:44] Dedicated match winner PATCH success: 200 {"ok":true,"id":16,"winner_id":2,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/16/2026 16:33:55] Rematch requested +[05/16/2026 16:34:04] Rematch was confirmed, closing in 5 secs. new room : +[05/16/2026 16:34:04] {"ok":true,"entry_fee":30,"rc_prize":48,"for_red":{"Players":[{"Name":"warlock","LastSeen":1778949244802,"l10_wins":1,"l10_losses":0,"UserId":2,"rc":0.0},{"Name":"warlock2","LastSeen":1778949244802,"l10_wins":0,"l10_losses":1,"UserId":3,"rc":0.0}],"GameName":"soccar","Port":26071,"InitTime":1778949244803,"instance_started":true,"match_id":17,"entry_fee":30,"rc_prize":48,"your_team":"red"},"for_blue":{"Players":[{"Name":"warlock","LastSeen":1778949244802,"l10_wins":1,"l10_losses":0,"UserId":2,"rc":0.0},{"Name":"warlock2","LastSeen":1778949244802,"l10_wins":0,"l10_losses":1,"UserId":3,"rc":0.0}],"GameName":"soccar","Port":26071,"InitTime":1778949244803,"instance_started":true,"match_id":17,"entry_fee":30,"rc_prize":48,"your_team":"blue"},"your_team":""} +[05/16/2026 16:34:04] Mirror server: client disconnected (connId=720386392) +[05/16/2026 16:34:04] Active player connections: 1 +[05/16/2026 16:34:05] Mirror server: client disconnected (connId=1441812030) +[05/16/2026 16:34:05] Active player connections: 0 +[05/16/2026 16:34:10] Server will be closed due to no players in, 60 +[05/16/2026 16:34:20] Server will be closed due to no players in, 50 +[05/16/2026 16:34:30] Server will be closed due to no players in, 40 +[05/16/2026 16:34:40] Server will be closed due to no players in, 30 +[05/16/2026 16:34:50] Server will be closed due to no players in, 20 +[05/16/2026 16:35:00] Server will be closed due to no players in, 10 +[05/16/2026 16:35:10] All players left, exiting +[05/16/2026 16:35:10] Dedicated match PATCH success: 200 {"ok":true,"id":16} diff --git a/games/soccar/soccar_Data/Logs/17.txt b/games/soccar/soccar_Data/Logs/17.txt new file mode 100644 index 0000000..6a56029 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/17.txt @@ -0,0 +1,43 @@ +[05/16/2026 16:34:06] Starting server at port 26071 +[05/16/2026 16:34:07] Mirror server exception logging enabled +[05/16/2026 16:34:07] Failed to fetch red and blue names, isServer? +[05/16/2026 16:34:07] Starting auto close watchdog +[05/16/2026 16:34:07] Active player connections: 0 +[05/16/2026 16:34:08] Active player connections: 1 +[05/16/2026 16:34:09] Client 15 set team to Blue +[05/16/2026 16:34:09] Active player connections: 2 +[05/16/2026 16:34:09] Game started On Server +[05/16/2026 16:34:09] Dedicated match PATCH success: 200 {"ok":true,"id":17} +[05/16/2026 16:34:09] Client 16 set team to Red +[05/16/2026 16:34:09] Dedicated match PATCH success: 200 {"ok":true,"id":17} +[05/16/2026 16:34:11] force = 70 * 0.7492896 = 52.45027 +[05/16/2026 16:34:11] launching puck at (2.43, -1.44) with (-127.34, 75.31) force +[05/16/2026 16:34:16] force = 70 * 0.8836884 = 61.85819 +[05/16/2026 16:34:16] launching puck at (0.04, 3.84) with (-2.20, -237.34) force +[05/16/2026 16:34:17] Blue goal scored, blue score is now 1 +[05/16/2026 16:34:22] force = 70 * 0.7375841 = 51.63089 +[05/16/2026 16:34:22] launching puck at (2.37, -1.39) with (-122.58, 71.53) force +[05/16/2026 16:34:26] force = 70 * 0.7902351 = 55.31646 +[05/16/2026 16:34:26] launching puck at (0.10, 3.09) with (-5.81, -170.81) force +[05/16/2026 16:34:27] Blue goal scored, blue score is now 2 +[05/16/2026 16:34:32] force = 70 * 0.5868188 = 41.07732 +[05/16/2026 16:34:32] launching puck at (1.89, -0.57) with (-77.66, 23.60) force +[05/16/2026 16:34:36] force = 70 * 0.8624111 = 60.36878 +[05/16/2026 16:34:36] launching puck at (0.15, 3.64) with (-9.26, -220.04) force +[05/16/2026 16:34:37] Blue goal scored, blue score is now 3 +[05/16/2026 16:34:38] Dedicated match PATCH success: 200 {"ok":true,"id":17} +[05/16/2026 16:34:39] Dedicated match winner PATCH success: 200 {"ok":true,"id":17,"winner_id":3,"economy":{"entry_fee_rc":30,"rc_prize":48,"participant_cc":100}} +[05/16/2026 16:35:09] Mirror server transport error (connId=1441808545, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting. +[05/16/2026 16:35:09] Mirror server: client disconnected (connId=1441808545) +[05/16/2026 16:35:09] Active player connections: 1 +[05/16/2026 16:35:11] Mirror server transport error (connId=720397251, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting. +[05/16/2026 16:35:11] Mirror server: client disconnected (connId=720397251) +[05/16/2026 16:35:11] Active player connections: 0 +[05/16/2026 16:35:16] Server will be closed due to no players in, 60 +[05/16/2026 16:35:26] Server will be closed due to no players in, 50 +[05/16/2026 16:35:36] Server will be closed due to no players in, 40 +[05/16/2026 16:35:46] Server will be closed due to no players in, 30 +[05/16/2026 16:35:56] Server will be closed due to no players in, 20 +[05/16/2026 16:36:06] Server will be closed due to no players in, 10 +[05/16/2026 16:36:16] All players left, exiting +[05/16/2026 16:36:16] Dedicated match PATCH success: 200 {"ok":true,"id":17} diff --git a/games/soccar/soccar_Data/Logs/18.txt b/games/soccar/soccar_Data/Logs/18.txt new file mode 100644 index 0000000..b229962 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/18.txt @@ -0,0 +1,18 @@ +[05/16/2026 16:55:52] Starting server at port 26811 +[05/16/2026 16:55:52] Mirror server exception logging enabled +[05/16/2026 16:55:52] Failed to fetch red and blue names, isServer? +[05/16/2026 16:55:52] Starting auto close watchdog +[05/16/2026 16:55:52] Active player connections: 0 +[05/16/2026 16:55:56] Active player connections: 1 +[05/16/2026 16:55:57] Client 15 set team to Red +[05/16/2026 16:55:57] Dedicated match PATCH success: 200 {"ok":true,"id":18} +[05/16/2026 16:56:38] Mirror server: client disconnected (connId=1441812890) +[05/16/2026 16:56:38] Active player connections: 0 +[05/16/2026 16:56:43] Server will be closed due to no players in, 60 +[05/16/2026 16:56:53] Server will be closed due to no players in, 50 +[05/16/2026 16:57:04] Server will be closed due to no players in, 40 +[05/16/2026 16:57:13] Server will be closed due to no players in, 30 +[05/16/2026 16:57:23] Server will be closed due to no players in, 20 +[05/16/2026 16:57:33] Server will be closed due to no players in, 10 +[05/16/2026 16:57:43] All players left, exiting +[05/16/2026 16:57:44] Dedicated match PATCH success: 200 {"ok":true,"id":18} diff --git a/games/soccar/soccar_Data/Logs/19.txt b/games/soccar/soccar_Data/Logs/19.txt new file mode 100644 index 0000000..22aaffc --- /dev/null +++ b/games/soccar/soccar_Data/Logs/19.txt @@ -0,0 +1,18 @@ +[05/16/2026 16:56:51] Starting server at port 26340 +[05/16/2026 16:56:51] Mirror server exception logging enabled +[05/16/2026 16:56:51] Failed to fetch red and blue names, isServer? +[05/16/2026 16:56:51] Starting auto close watchdog +[05/16/2026 16:56:51] Active player connections: 0 +[05/16/2026 16:56:54] Active player connections: 1 +[05/16/2026 16:56:54] Client 15 set team to Blue +[05/16/2026 16:56:55] Dedicated match PATCH success: 200 {"ok":true,"id":19} +[05/16/2026 16:57:29] Mirror server: client disconnected (connId=1441822690) +[05/16/2026 16:57:29] Active player connections: 0 +[05/16/2026 16:57:33] Server will be closed due to no players in, 60 +[05/16/2026 16:57:43] Server will be closed due to no players in, 50 +[05/16/2026 16:57:53] Server will be closed due to no players in, 40 +[05/16/2026 16:58:03] Server will be closed due to no players in, 30 +[05/16/2026 16:58:13] Server will be closed due to no players in, 20 +[05/16/2026 16:58:23] Server will be closed due to no players in, 10 +[05/16/2026 16:58:33] All players left, exiting +[05/16/2026 16:58:34] Dedicated match PATCH success: 200 {"ok":true,"id":19} diff --git a/games/soccar/soccar_Data/Logs/2.txt b/games/soccar/soccar_Data/Logs/2.txt new file mode 100644 index 0000000..e9d67b5 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/2.txt @@ -0,0 +1,80 @@ +[05/14/2026 12:11:15] Starting server at port 26287 +[05/14/2026 12:11:15] Failed to fetch red and blue names, isServer? +[05/14/2026 12:11:15] Starting auto close watchdog +[05/14/2026 12:11:15] Active player connections: 0 +[05/14/2026 12:11:19] Active player connections: 1 +[05/14/2026 12:11:19] Client 15 set team to Blue +[05/14/2026 12:11:20] Dedicated match PATCH success: 200 {"ok":true,"id":2} +[05/14/2026 12:11:20] Active player connections: 2 +[05/14/2026 12:11:20] Game started On Server +[05/14/2026 12:11:20] Client 16 set team to Red +[05/14/2026 12:11:21] Dedicated match PATCH success: 200 {"ok":true,"id":2} +[05/14/2026 12:11:29] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:11:29] launching puck at (-0.99, 4.90) with (68.84, -341.58) force +[05/14/2026 12:11:34] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:11:34] launching puck at (-0.03, 5.00) with (1.99, -348.45) force +[05/14/2026 12:11:45] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:11:45] launching puck at (-0.17, 5.00) with (12.01, -348.25) force +[05/14/2026 12:11:53] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:11:53] launching puck at (2.01, 4.58) with (-140.14, -319.03) force +[05/14/2026 12:11:58] force = 70 * 0.9806685 = 68.6468 +[05/14/2026 12:11:58] launching puck at (-4.76, -0.87) with (326.50, 59.65) force +[05/14/2026 12:12:02] Client 16 sent emoji emote 5 +[05/14/2026 12:12:04] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:12:04] launching puck at (-1.43, 4.79) with (99.98, -333.80) force +[05/14/2026 12:12:06] Client 16 sent emoji emote 0 +[05/14/2026 12:12:07] force = 70 * 0.7675553 = 53.72887 +[05/14/2026 12:12:07] launching puck at (2.58, 1.40) with (-138.81, -75.05) force +[05/14/2026 12:12:10] Client 15 sent emoji emote 4 +[05/14/2026 12:12:14] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:12:14] launching puck at (-2.09, 4.54) with (145.99, -316.40) force +[05/14/2026 12:12:14] Blue goal scored, blue score is now 1 +[05/14/2026 12:12:17] Client 15 sent emoji emote 0 +[05/14/2026 12:12:26] force = 70 * 0.8163545 = 57.14481 +[05/14/2026 12:12:26] launching puck at (0.13, 3.28) with (-7.29, -187.19) force +[05/14/2026 12:12:30] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:12:30] launching puck at (-0.05, 5.00) with (3.64, -348.43) force +[05/14/2026 12:12:33] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:12:33] launching puck at (2.06, 4.56) with (-143.57, -317.50) force +[05/14/2026 12:12:40] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:12:40] launching puck at (-3.14, 3.89) with (218.93, -271.09) force +[05/14/2026 12:12:46] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:12:46] launching puck at (-1.03, 4.89) with (71.93, -340.95) force +[05/14/2026 12:12:55] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:12:55] launching puck at (-1.49, 4.77) with (103.78, -332.64) force +[05/14/2026 12:13:00] force = 70 * 0.9953463 = 69.67424 +[05/14/2026 12:13:00] launching puck at (-4.98, 0.40) with (347.09, -27.67) force +[05/14/2026 12:13:10] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:13:10] launching puck at (-4.70, 1.71) with (327.34, -119.44) force +[05/14/2026 12:13:13] Client 15 sent emoji emote 0 +[05/14/2026 12:13:16] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:13:16] launching puck at (3.33, -3.73) with (-232.15, 259.86) force +[05/14/2026 12:13:24] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:13:24] launching puck at (-4.10, -2.87) with (285.54, 199.72) force +[05/14/2026 12:13:24] Blue goal scored, blue score is now 2 +[05/14/2026 12:13:28] force = 70 * 0.8908238 = 62.35767 +[05/14/2026 12:13:28] launching puck at (1.43, 3.63) with (-89.27, -226.42) force +[05/14/2026 12:13:28] Client 15 sent emoji emote 5 +[05/14/2026 12:13:33] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:13:33] launching puck at (-0.07, 5.00) with (4.81, -348.42) force +[05/14/2026 12:13:37] force = 70 * 0.8888038 = 62.21627 +[05/14/2026 12:13:37] launching puck at (-0.67, 3.83) with (41.74, -238.03) force +[05/14/2026 12:13:43] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:13:43] launching puck at (1.29, 4.83) with (-90.19, -336.58) force +[05/14/2026 12:13:47] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:13:47] launching puck at (-4.53, 2.11) with (315.91, -147.04) force +[05/14/2026 12:13:52] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:13:52] launching puck at (3.44, 3.63) with (-239.39, -253.20) force +[05/14/2026 12:13:52] Blue goal scored, blue score is now 3 +[05/14/2026 12:13:53] Dedicated match PATCH success: 200 {"ok":true,"id":2} +[05/14/2026 12:13:55] Dedicated match winner PATCH success: 200 {"ok":true,"id":2,"winner_id":4,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/14/2026 12:14:15] Active player connections: 1 +[05/14/2026 12:19:03] Active player connections: 0 +[05/14/2026 12:19:08] Server will be closed due to no players in, 60 +[05/14/2026 12:19:18] Server will be closed due to no players in, 50 +[05/14/2026 12:19:28] Server will be closed due to no players in, 40 +[05/14/2026 12:19:38] Server will be closed due to no players in, 30 +[05/14/2026 12:19:48] Server will be closed due to no players in, 20 +[05/14/2026 12:19:58] Server will be closed due to no players in, 10 +[05/14/2026 12:20:08] All players left, exiting +[05/14/2026 12:20:08] Dedicated match PATCH success: 200 {"ok":true,"id":2} diff --git a/games/soccar/soccar_Data/Logs/20.txt b/games/soccar/soccar_Data/Logs/20.txt new file mode 100644 index 0000000..795733c --- /dev/null +++ b/games/soccar/soccar_Data/Logs/20.txt @@ -0,0 +1,29 @@ +[05/16/2026 17:10:07] Starting server at port 26168 +[05/16/2026 17:10:07] Mirror server exception logging enabled +[05/16/2026 17:10:07] Failed to fetch red and blue names, isServer? +[05/16/2026 17:10:07] Starting auto close watchdog +[05/16/2026 17:10:07] Active player connections: 0 +[05/16/2026 17:10:07] Active player connections: 1 +[05/16/2026 17:10:07] Client 15 set team to Blue +[05/16/2026 17:10:08] Dedicated match PATCH success: 200 {"ok":true,"id":20} +[05/16/2026 17:10:08] Active player connections: 2 +[05/16/2026 17:10:08] Game started On Server +[05/16/2026 17:10:08] Client 16 set team to Red +[05/16/2026 17:10:09] Dedicated match PATCH success: 200 {"ok":true,"id":20} +[05/16/2026 17:10:20] force = 70 * 0.3865912 = 27.06138 +[05/16/2026 17:10:20] launching puck at (0.77, -0.91) with (-20.77, 24.68) force +[05/16/2026 17:10:25] force = 70 * 0.8339955 = 58.37969 +[05/16/2026 17:10:25] launching puck at (-2.92, -1.76) with (170.61, 103.03) force +[05/16/2026 17:10:30] Mirror server: client disconnected (connId=1441808801) +[05/16/2026 17:10:30] Active player connections: 1 +[05/16/2026 17:10:44] Mirror server transport error (connId=720395776, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting. +[05/16/2026 17:10:44] Mirror server: client disconnected (connId=720395776) +[05/16/2026 17:10:44] Active player connections: 0 +[05/16/2026 17:10:49] Server will be closed due to no players in, 60 +[05/16/2026 17:10:59] Server will be closed due to no players in, 50 +[05/16/2026 17:11:09] Server will be closed due to no players in, 40 +[05/16/2026 17:11:19] Server will be closed due to no players in, 30 +[05/16/2026 17:11:29] Server will be closed due to no players in, 20 +[05/16/2026 17:11:39] Server will be closed due to no players in, 10 +[05/16/2026 17:11:49] All players left, exiting +[05/16/2026 17:11:50] Dedicated match PATCH success: 200 {"ok":true,"id":20} diff --git a/games/soccar/soccar_Data/Logs/21.txt b/games/soccar/soccar_Data/Logs/21.txt new file mode 100644 index 0000000..18246c3 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/21.txt @@ -0,0 +1,27 @@ +[05/16/2026 17:15:37] Starting server at port 26771 +[05/16/2026 17:15:37] Mirror server exception logging enabled +[05/16/2026 17:15:37] Failed to fetch red and blue names, isServer? +[05/16/2026 17:15:37] Starting auto close watchdog +[05/16/2026 17:15:37] Active player connections: 0 +[05/16/2026 17:15:40] Active player connections: 1 +[05/16/2026 17:15:41] Client 15 set team to Blue +[05/16/2026 17:15:41] Dedicated match PATCH success: 200 {"ok":true,"id":21} +[05/16/2026 17:15:41] Active player connections: 2 +[05/16/2026 17:15:41] Game started On Server +[05/16/2026 17:15:42] Client 16 set team to Red +[05/16/2026 17:15:42] Dedicated match PATCH success: 200 {"ok":true,"id":21} +[05/16/2026 17:15:46] force = 70 * 0.6583166 = 46.08216 +[05/16/2026 17:15:46] launching puck at (0.45, 2.27) with (-20.67, -104.55) force +[05/16/2026 17:15:49] Mirror server: client disconnected (connId=1441821947) +[05/16/2026 17:15:49] Active player connections: 1 +[05/16/2026 17:16:13] Mirror server transport error (connId=720386878, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting. +[05/16/2026 17:16:13] Mirror server: client disconnected (connId=720386878) +[05/16/2026 17:16:13] Active player connections: 0 +[05/16/2026 17:16:18] Server will be closed due to no players in, 60 +[05/16/2026 17:16:28] Server will be closed due to no players in, 50 +[05/16/2026 17:16:38] Server will be closed due to no players in, 40 +[05/16/2026 17:16:48] Server will be closed due to no players in, 30 +[05/16/2026 17:16:58] Server will be closed due to no players in, 20 +[05/16/2026 17:17:08] Server will be closed due to no players in, 10 +[05/16/2026 17:17:18] All players left, exiting +[05/16/2026 17:17:19] Dedicated match PATCH success: 200 {"ok":true,"id":21} diff --git a/games/soccar/soccar_Data/Logs/22.txt b/games/soccar/soccar_Data/Logs/22.txt new file mode 100644 index 0000000..d1df770 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/22.txt @@ -0,0 +1,29 @@ +[05/16/2026 17:18:27] Starting server at port 26641 +[05/16/2026 17:18:27] Mirror server exception logging enabled +[05/16/2026 17:18:27] Failed to fetch red and blue names, isServer? +[05/16/2026 17:18:27] Starting auto close watchdog +[05/16/2026 17:18:27] Active player connections: 0 +[05/16/2026 17:18:31] Active player connections: 1 +[05/16/2026 17:18:31] Active player connections: 2 +[05/16/2026 17:18:31] Game started On Server +[05/16/2026 17:18:31] Client 15 set team to Red +[05/16/2026 17:18:31] Client 16 set team to Blue +[05/16/2026 17:18:31] Dedicated match PATCH success: 200 {"ok":true,"id":22} +[05/16/2026 17:18:32] Dedicated match PATCH success: 200 {"ok":true,"id":22} +[05/16/2026 17:18:33] force = 70 * 0.7826476 = 54.78533 +[05/16/2026 17:18:33] launching puck at (2.89, 0.93) with (-158.49, -50.74) force +[05/16/2026 17:18:45] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 17:18:45] launching puck at (-3.92, 3.11) with (272.99, -216.56) force +[05/16/2026 17:18:48] Mirror server: client disconnected (connId=1441792959) +[05/16/2026 17:18:48] Active player connections: 1 +[05/16/2026 17:19:14] Mirror server transport error (connId=720394850, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting. +[05/16/2026 17:19:14] Mirror server: client disconnected (connId=720394850) +[05/16/2026 17:19:14] Active player connections: 0 +[05/16/2026 17:19:19] Server will be closed due to no players in, 60 +[05/16/2026 17:19:29] Server will be closed due to no players in, 50 +[05/16/2026 17:19:39] Server will be closed due to no players in, 40 +[05/16/2026 17:19:49] Server will be closed due to no players in, 30 +[05/16/2026 17:19:59] Server will be closed due to no players in, 20 +[05/16/2026 17:20:09] Server will be closed due to no players in, 10 +[05/16/2026 17:20:19] All players left, exiting +[05/16/2026 17:20:19] Dedicated match PATCH success: 200 {"ok":true,"id":22} diff --git a/games/soccar/soccar_Data/Logs/23.txt b/games/soccar/soccar_Data/Logs/23.txt new file mode 100644 index 0000000..b6e7886 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/23.txt @@ -0,0 +1,40 @@ +[05/16/2026 17:38:21] Starting server at port 26430 +[05/16/2026 17:38:21] Mirror server exception logging enabled +[05/16/2026 17:38:21] Failed to fetch red and blue names, isServer? +[05/16/2026 17:38:21] Starting auto close watchdog +[05/16/2026 17:38:21] Active player connections: 0 +[05/16/2026 17:38:24] Active player connections: 1 +[05/16/2026 17:38:24] Client 15 set team to Blue +[05/16/2026 17:38:25] Dedicated match PATCH success: 200 {"ok":true,"id":23} +[05/16/2026 17:38:25] Active player connections: 2 +[05/16/2026 17:38:25] Game started On Server +[05/16/2026 17:38:25] Client 16 set team to Red +[05/16/2026 17:38:25] Dedicated match PATCH success: 200 {"ok":true,"id":23} +[05/16/2026 17:38:28] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 17:38:28] launching puck at (2.74, -4.18) with (-191.18, 291.33) force +[05/16/2026 17:38:36] force = 70 * 0.9671853 = 67.70296 +[05/16/2026 17:38:36] launching puck at (0.50, 4.66) with (-33.56, -315.51) force +[05/16/2026 17:38:42] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 17:38:42] launching puck at (0.55, -4.97) with (-38.42, 346.33) force +[05/16/2026 17:38:48] force = 70 * 0.9425347 = 65.97742 +[05/16/2026 17:38:48] launching puck at (-3.81, 2.25) with (251.18, -148.20) force +[05/16/2026 17:38:48] [Mirror/Error] Disconnecting connection: connection(720372751) because handling a message of type Mirror.CommandMessage caused an Exception. This can happen if the other side accidentally (or an attacker intentionally) sent invalid data. Reason: System.NullReferenceException: Object reference not set to an instance of an object + at NetPlayer.UserCode_CmdOnPointerDown__Vector2 (UnityEngine.Vector2 position) [0x00025] in :0 + at NetPlayer.InvokeUserCode_CmdOnPointerDown__Vector2 (Mirror.NetworkBehaviour obj, Mirror.NetworkReader reader, Mirror.NetworkConnectionToClient senderConnection) [0x00022] in :0 + at Mirror.RemoteCalls.RemoteProcedureCalls.Invoke (System.UInt16 functionHash, Mirror.RemoteCalls.RemoteCallType remoteCallType, Mirror.NetworkReader reader, Mirror.NetworkBehaviour component, Mirror.NetworkConnectionToClient senderConnection) [0x00019] in <0c71d62641ad468493ee2dc21fdce382>:0 + at Mirror.NetworkIdentity.HandleRemoteCall (System.Byte componentIndex, System.UInt16 functionHash, Mirror.RemoteCalls.RemoteCallType remoteCallType, Mirror.NetworkReader reader, Mirror.NetworkConnectionToClient senderConnection) [0x00065] in <0c71d62641ad468493ee2dc21fdce382>:0 + at Mirror.NetworkServer.OnCommandMessage (Mirror.NetworkConnectionToClient conn, Mirror.CommandMessage msg, System.Int32 channelId) [0x001c8] in <0c71d62641ad468493ee2dc21fdce382>:0 + at (wrapper delegate-invoke) System.Action`3[Mirror.NetworkConnectionToClient,Mirror.CommandMessage,System.Int32].invoke_void_T1_T2_T3(Mirror.NetworkConnectionToClient,Mirror.CommandMessage,int) + at Mirror.NetworkMessages+<>c__DisplayClass8_0`2[T,C].b__0 (Mirror.NetworkConnection conn, Mirror.NetworkReader reader, System.Int32 channelId) [0x000ac] in <0c71d62641ad468493ee2dc21fdce382>:0 +[05/16/2026 17:38:48] Mirror server: client disconnected (connId=720372751) +[05/16/2026 17:38:48] Active player connections: 1 +[05/16/2026 17:42:39] Mirror server: client disconnected (connId=1441814572) +[05/16/2026 17:42:39] Active player connections: 0 +[05/16/2026 17:42:43] Server will be closed due to no players in, 60 +[05/16/2026 17:42:53] Server will be closed due to no players in, 50 +[05/16/2026 17:43:03] Server will be closed due to no players in, 40 +[05/16/2026 17:43:13] Server will be closed due to no players in, 30 +[05/16/2026 17:43:23] Server will be closed due to no players in, 20 +[05/16/2026 17:43:33] Server will be closed due to no players in, 10 +[05/16/2026 17:43:43] All players left, exiting +[05/16/2026 17:43:45] Dedicated match PATCH success: 200 {"ok":true,"id":23} diff --git a/games/soccar/soccar_Data/Logs/24.txt b/games/soccar/soccar_Data/Logs/24.txt new file mode 100644 index 0000000..340a501 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/24.txt @@ -0,0 +1,27 @@ +[05/16/2026 17:44:07] Starting server at port 26567 +[05/16/2026 17:44:07] Mirror server exception logging enabled +[05/16/2026 17:44:07] Failed to fetch red and blue names, isServer? +[05/16/2026 17:44:07] Starting auto close watchdog +[05/16/2026 17:44:07] Active player connections: 0 +[05/16/2026 17:44:09] Active player connections: 1 +[05/16/2026 17:44:10] Client 15 set team to Blue +[05/16/2026 17:44:10] Dedicated match PATCH success: 200 {"ok":true,"id":24} +[05/16/2026 17:44:11] Active player connections: 2 +[05/16/2026 17:44:11] Game started On Server +[05/16/2026 17:44:11] Client 16 set team to Red +[05/16/2026 17:44:12] Dedicated match PATCH success: 200 {"ok":true,"id":24} +[05/16/2026 17:44:17] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 17:44:17] launching puck at (4.95, -0.69) with (-345.11, 48.18) force +[05/16/2026 17:44:20] Mirror server: client disconnected (connId=1441809854) +[05/16/2026 17:44:20] Active player connections: 1 +[05/16/2026 17:44:42] Mirror server transport error (connId=720401444, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting. +[05/16/2026 17:44:42] Mirror server: client disconnected (connId=720401444) +[05/16/2026 17:44:42] Active player connections: 0 +[05/16/2026 17:44:47] Server will be closed due to no players in, 60 +[05/16/2026 17:44:57] Server will be closed due to no players in, 50 +[05/16/2026 17:45:07] Server will be closed due to no players in, 40 +[05/16/2026 17:45:17] Server will be closed due to no players in, 30 +[05/16/2026 17:45:27] Server will be closed due to no players in, 20 +[05/16/2026 17:45:37] Server will be closed due to no players in, 10 +[05/16/2026 17:45:47] All players left, exiting +[05/16/2026 17:45:48] Dedicated match PATCH success: 200 {"ok":true,"id":24} diff --git a/games/soccar/soccar_Data/Logs/25.txt b/games/soccar/soccar_Data/Logs/25.txt new file mode 100644 index 0000000..0a281bf --- /dev/null +++ b/games/soccar/soccar_Data/Logs/25.txt @@ -0,0 +1,59 @@ +[05/16/2026 17:49:19] Starting server at port 26594 +[05/16/2026 17:49:19] Mirror server exception logging enabled +[05/16/2026 17:49:19] Failed to fetch red and blue names, isServer? +[05/16/2026 17:49:19] Starting auto close watchdog +[05/16/2026 17:49:19] Active player connections: 0 +[05/16/2026 17:49:23] Active player connections: 1 +[05/16/2026 17:49:23] Client 15 set team to Blue +[05/16/2026 17:49:24] Active player connections: 2 +[05/16/2026 17:49:24] Game started On Server +[05/16/2026 17:49:24] Dedicated match PATCH success: 200 {"ok":true,"id":25} +[05/16/2026 17:49:24] Client 16 set team to Red +[05/16/2026 17:49:24] Dedicated match PATCH success: 200 {"ok":true,"id":25} +[05/16/2026 17:49:28] force = 70 * 0.2705642 = 18.9395 +[05/16/2026 17:49:28] launching puck at (0.83, -0.50) with (-15.67, 9.38) force +[05/16/2026 17:49:32] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 17:49:32] launching puck at (-0.42, 4.98) with (29.21, -347.23) force +[05/16/2026 17:49:40] force = 70 * 0.6287796 = 44.01458 +[05/16/2026 17:49:40] launching puck at (0.42, -2.13) with (-18.52, 93.63) force +[05/16/2026 17:49:45] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 17:49:45] launching puck at (4.65, 1.84) with (-323.99, -128.26) force +[05/16/2026 17:49:53] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 17:49:53] launching puck at (3.11, -3.91) with (-216.88, 272.73) force +[05/16/2026 17:50:02] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 17:50:02] launching puck at (1.34, 4.82) with (-93.64, -335.64) force +[05/16/2026 17:50:06] force = 70 * 0.9823077 = 68.76154 +[05/16/2026 17:50:06] launching puck at (-0.23, 4.85) with (16.15, -333.32) force +[05/16/2026 17:50:10] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 17:50:10] launching puck at (-3.64, 3.43) with (253.34, -239.24) force +[05/16/2026 17:50:14] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 17:50:14] launching puck at (0.68, 4.95) with (-47.27, -345.23) force +[05/16/2026 17:50:19] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 17:50:19] launching puck at (1.33, 4.82) with (-93.02, -335.81) force +[05/16/2026 17:50:19] Blue goal scored, blue score is now 1 +[05/16/2026 17:50:26] force = 70 * 0.6217543 = 43.5228 +[05/16/2026 17:50:26] launching puck at (2.08, -0.50) with (-90.34, 21.81) force +[05/16/2026 17:50:30] force = 70 * 0.8833583 = 61.83508 +[05/16/2026 17:50:30] launching puck at (-0.12, 3.83) with (7.28, -236.97) force +[05/16/2026 17:50:31] Blue goal scored, blue score is now 2 +[05/16/2026 17:50:36] force = 70 * 0.481885 = 33.73195 +[05/16/2026 17:50:36] launching puck at (1.48, 0.11) with (-49.82, -3.71) force +[05/16/2026 17:50:40] force = 70 * 0.9848897 = 68.94228 +[05/16/2026 17:50:40] launching puck at (-0.12, 4.88) with (8.32, -336.45) force +[05/16/2026 17:50:41] Blue goal scored, blue score is now 3 +[05/16/2026 17:50:41] Dedicated match PATCH success: 200 {"ok":true,"id":25} +[05/16/2026 17:50:43] Dedicated match winner PATCH success: 200 {"ok":true,"id":25,"winner_id":2,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/16/2026 17:51:38] Mirror server transport error (connId=720399675, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting. +[05/16/2026 17:51:38] Mirror server: client disconnected (connId=720399675) +[05/16/2026 17:51:38] Active player connections: 1 +[05/16/2026 17:51:39] Mirror server transport error (connId=1441823799, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting. +[05/16/2026 17:51:39] Mirror server: client disconnected (connId=1441823799) +[05/16/2026 17:51:39] Active player connections: 0 +[05/16/2026 17:51:44] Server will be closed due to no players in, 60 +[05/16/2026 17:51:54] Server will be closed due to no players in, 50 +[05/16/2026 17:52:04] Server will be closed due to no players in, 40 +[05/16/2026 17:52:14] Server will be closed due to no players in, 30 +[05/16/2026 17:52:24] Server will be closed due to no players in, 20 +[05/16/2026 17:52:34] Server will be closed due to no players in, 10 +[05/16/2026 17:52:44] All players left, exiting +[05/16/2026 17:52:44] Dedicated match PATCH success: 200 {"ok":true,"id":25} diff --git a/games/soccar/soccar_Data/Logs/26.txt b/games/soccar/soccar_Data/Logs/26.txt new file mode 100644 index 0000000..813b873 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/26.txt @@ -0,0 +1,13 @@ +[05/16/2026 17:51:26] Starting server at port 26234 +[05/16/2026 17:51:26] Mirror server exception logging enabled +[05/16/2026 17:51:26] Failed to fetch red and blue names, isServer? +[05/16/2026 17:51:26] Starting auto close watchdog +[05/16/2026 17:51:26] Active player connections: 0 +[05/16/2026 17:51:31] Server will be closed due to no players in, 60 +[05/16/2026 17:51:41] Server will be closed due to no players in, 50 +[05/16/2026 17:51:51] Server will be closed due to no players in, 40 +[05/16/2026 17:52:01] Server will be closed due to no players in, 30 +[05/16/2026 17:52:11] Server will be closed due to no players in, 20 +[05/16/2026 17:52:21] Server will be closed due to no players in, 10 +[05/16/2026 17:52:31] No players joined, exiting +[05/16/2026 17:52:32] Dedicated match PATCH success: 200 {"ok":true,"id":26} diff --git a/games/soccar/soccar_Data/Logs/261.txt b/games/soccar/soccar_Data/Logs/261.txt index ddb7914..1a2256a 100644 --- a/games/soccar/soccar_Data/Logs/261.txt +++ b/games/soccar/soccar_Data/Logs/261.txt @@ -15,3 +15,8 @@ [05/05/2026 20:01:02] Server will be closed due to no players in, 60 [05/05/2026 20:01:12] Server will be closed due to no players in, 50 [05/05/2026 20:01:22] Server will be closed due to no players in, 40 +[05/05/2026 20:01:32] Server will be closed due to no players in, 30 +[05/05/2026 20:01:42] Server will be closed due to no players in, 20 +[05/05/2026 20:01:52] Server will be closed due to no players in, 10 +[05/05/2026 20:02:02] All players left, exiting +[05/05/2026 20:02:02] Dedicated match PATCH success: 200 {"ok":true,"id":261} diff --git a/games/soccar/soccar_Data/Logs/262.txt b/games/soccar/soccar_Data/Logs/262.txt new file mode 100644 index 0000000..1add97c --- /dev/null +++ b/games/soccar/soccar_Data/Logs/262.txt @@ -0,0 +1,154 @@ +[05/07/2026 03:53:43] Starting server at port 26357 +[05/07/2026 03:53:43] Failed to fetch red and blue names, isServer? +[05/07/2026 03:53:43] Starting auto close watchdog +[05/07/2026 03:53:43] Active player connections: 0 +[05/07/2026 03:53:46] Active player connections: 1 +[05/07/2026 03:53:46] Client 15 set team to Blue +[05/07/2026 03:53:47] Active player connections: 2 +[05/07/2026 03:53:47] Game started On Server +[05/07/2026 03:53:47] Dedicated match PATCH success: 200 {"ok":true,"id":262} +[05/07/2026 03:53:47] Client 16 set team to Red +[05/07/2026 03:53:47] Dedicated match PATCH success: 200 {"ok":true,"id":262} +[05/07/2026 03:53:50] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:53:50] launching puck at (4.93, -0.86) with (-343.27, 59.91) force +[05/07/2026 03:53:56] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:53:56] launching puck at (-1.26, 4.84) with (88.02, -337.15) force +[05/07/2026 03:54:02] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:54:02] launching puck at (-4.53, 2.11) with (315.85, -147.16) force +[05/07/2026 03:54:09] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:54:09] launching puck at (0.05, 5.00) with (-3.73, -348.43) force +[05/07/2026 03:54:14] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:54:14] launching puck at (-3.93, 3.09) with (273.89, -215.42) force +[05/07/2026 03:54:18] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:54:18] launching puck at (-0.44, 4.98) with (30.96, -347.08) force +[05/07/2026 03:54:20] Client 16 sent emoji emote 2 +[05/07/2026 03:54:23] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:54:23] launching puck at (2.01, 4.58) with (-140.18, -319.01) force +[05/07/2026 03:54:24] Client 15 sent emoji emote 5 +[05/07/2026 03:54:30] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:54:30] launching puck at (1.11, 4.88) with (-77.21, -339.79) force +[05/07/2026 03:54:35] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:54:35] launching puck at (-4.13, -2.81) with (288.14, 195.94) force +[05/07/2026 03:54:41] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:54:41] launching puck at (0.11, 5.00) with (-7.51, -348.37) force +[05/07/2026 03:54:48] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:54:48] launching puck at (-3.72, -3.35) with (258.93, 233.18) force +[05/07/2026 03:54:53] Client 16 sent emoji emote 1 +[05/07/2026 03:54:57] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:54:57] launching puck at (0.32, 4.99) with (-22.39, -347.73) force +[05/07/2026 03:55:00] Client 16 sent emoji emote 0 +[05/07/2026 03:55:01] Client 15 sent emoji emote 2 +[05/07/2026 03:55:03] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:55:03] launching puck at (-0.70, 4.95) with (48.60, -345.05) force +[05/07/2026 03:55:10] force = 70 * 0.9399498 = 65.79649 +[05/07/2026 03:55:10] launching puck at (-4.34, 0.71) with (285.27, -46.57) force +[05/07/2026 03:55:14] Client 16 sent emoji emote 0 +[05/07/2026 03:55:14] Client 15 sent emoji emote 2 +[05/07/2026 03:55:16] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:55:16] launching puck at (0.56, 4.97) with (-39.31, -346.23) force +[05/07/2026 03:55:22] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:55:22] launching puck at (3.60, 3.46) with (-251.23, -241.46) force +[05/07/2026 03:55:27] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:55:27] launching puck at (-0.30, -4.99) with (20.67, 347.84) force +[05/07/2026 03:55:27] Client 15 sent emoji emote 4 +[05/07/2026 03:55:33] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:55:33] launching puck at (1.25, 4.84) with (-87.07, -337.40) force +[05/07/2026 03:55:38] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:55:38] launching puck at (2.87, 4.10) with (-199.82, -285.47) force +[05/07/2026 03:55:44] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:55:44] launching puck at (1.67, -4.71) with (-116.26, 328.49) force +[05/07/2026 03:55:48] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:55:48] launching puck at (4.54, -2.09) with (-316.61, 145.53) force +[05/07/2026 03:55:52] Client 16 sent emoji emote 1 +[05/07/2026 03:55:54] Client 15 sent emoji emote 3 +[05/07/2026 03:55:56] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:55:56] launching puck at (3.62, 3.44) with (-252.59, -240.03) force +[05/07/2026 03:55:56] Blue goal scored, blue score is now 1 +[05/07/2026 03:55:57] Client 16 sent text emote Oops +[05/07/2026 03:55:59] Client 16 sent text emote Nice shot! +[05/07/2026 03:56:03] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:56:03] launching puck at (0.06, -5.00) with (-4.23, 348.43) force +[05/07/2026 03:56:03] Client 15 sent text emote Thanks! +[05/07/2026 03:56:11] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:56:11] launching puck at (0.47, 4.98) with (-32.47, -346.94) force +[05/07/2026 03:56:16] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:56:16] launching puck at (2.80, -4.15) with (-194.84, 288.89) force +[05/07/2026 03:56:22] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:56:22] launching puck at (3.04, 3.97) with (-212.06, -276.50) force +[05/07/2026 03:56:26] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:56:26] launching puck at (4.69, 1.73) with (-326.89, -120.67) force +[05/07/2026 03:56:30] force = 70 * 0.9784579 = 68.49206 +[05/07/2026 03:56:30] launching puck at (-2.66, 4.01) with (182.23, -274.50) force +[05/07/2026 03:56:36] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:56:36] launching puck at (-4.79, -1.43) with (333.97, 99.41) force +[05/07/2026 03:56:43] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:56:43] launching puck at (-0.80, 4.94) with (55.80, -343.96) force +[05/07/2026 03:56:46] Client 15 sent emoji emote 4 +[05/07/2026 03:56:49] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:56:49] launching puck at (-2.08, 4.55) with (145.17, -316.77) force +[05/07/2026 03:56:49] Client 15 sent text emote What a save! +[05/07/2026 03:56:54] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:56:54] launching puck at (-4.98, 0.39) with (347.39, -27.16) force +[05/07/2026 03:56:55] Client 16 sent text emote Thanks! +[05/07/2026 03:56:55] Blue goal scored, blue score is now 2 +[05/07/2026 03:56:57] Client 16 sent emoji emote 1 +[05/07/2026 03:56:58] Client 16 sent emoji emote 1 +[05/07/2026 03:57:03] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:57:03] launching puck at (4.91, -0.93) with (-342.37, 64.82) force +[05/07/2026 03:57:04] Client 15 sent emoji emote 5 +[05/07/2026 03:57:10] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:57:10] launching puck at (-1.37, 4.81) with (95.62, -335.08) force +[05/07/2026 03:57:15] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:57:15] launching puck at (-0.77, -4.94) with (53.50, 344.32) force +[05/07/2026 03:57:21] Client 16 sent emoji emote 1 +[05/07/2026 03:57:26] Client 15 sent text emote well played +[05/07/2026 03:57:29] force = 70 * 0.8900747 = 62.30523 +[05/07/2026 03:57:29] launching puck at (-3.57, 1.56) with (222.37, -97.35) force +[05/07/2026 03:57:34] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:57:34] launching puck at (-2.14, -4.52) with (148.87, 315.05) force +[05/07/2026 03:57:36] Red goal scored, red score is now 1 +[05/07/2026 03:57:37] Client 15 sent emoji emote 5 +[05/07/2026 03:57:39] Client 16 sent emoji emote 3 +[05/07/2026 03:57:43] Client 15 sent text emote Nice shot! +[05/07/2026 03:57:45] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:57:45] launching puck at (-0.02, 5.00) with (1.73, -348.45) force +[05/07/2026 03:57:45] Client 16 sent text emote Thanks! +[05/07/2026 03:57:51] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:57:51] launching puck at (2.42, 4.38) with (-168.41, -305.05) force +[05/07/2026 03:58:00] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:58:00] launching puck at (1.47, 4.78) with (-102.22, -333.12) force +[05/07/2026 03:58:05] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:58:05] launching puck at (-1.57, 4.75) with (109.20, -330.90) force +[05/07/2026 03:58:13] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:58:13] launching puck at (-0.09, 5.00) with (6.14, -348.40) force +[05/07/2026 03:58:16] Client 16 sent emoji emote 2 +[05/07/2026 03:58:22] force = 70 * 0.8778989 = 61.45292 +[05/07/2026 03:58:22] launching puck at (-3.58, 1.21) with (220.26, -74.66) force +[05/07/2026 03:58:23] Client 15 sent text emote What a save! +[05/07/2026 03:58:29] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:58:29] launching puck at (-1.21, 4.85) with (84.27, -338.11) force +[05/07/2026 03:58:33] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:58:33] launching puck at (-5.00, -0.04) with (348.44, 2.93) force +[05/07/2026 03:58:38] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:58:38] launching puck at (-0.36, 4.99) with (25.17, -347.54) force +[05/07/2026 03:58:43] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:58:43] launching puck at (-4.47, 2.23) with (311.84, -155.48) force +[05/07/2026 03:58:46] Client 16 sent emoji emote 1 +[05/07/2026 03:58:52] force = 70 * 0.9796622 = 68.57635 +[05/07/2026 03:58:52] launching puck at (-4.65, 1.27) with (319.19, -86.86) force +[05/07/2026 03:58:52] Blue goal scored, blue score is now 3 +[05/07/2026 03:58:53] Dedicated match PATCH success: 200 {"ok":true,"id":262} +[05/07/2026 03:58:55] Dedicated match winner PATCH success: 200 {"ok":true,"id":262,"winner_id":33,"economy":{"entry_fee_rc":21,"rc_prize":37,"participant_cc":100}} +[05/07/2026 03:59:04] Rematch requested +[05/07/2026 03:59:17] Rematch was confirmed, closing in 5 secs. new room : +[05/07/2026 03:59:17] {"ok":true,"entry_fee":51,"rc_prize":91,"for_red":{"Players":[{"Name":"warlock2","LastSeen":1778126357122,"l10_wins":0,"l10_losses":7,"UserId":5,"rc":0.0},{"Name":"choel","LastSeen":1778126357122,"l10_wins":1,"l10_losses":0,"UserId":33,"rc":0.0}],"GameName":"soccar","Port":26267,"InitTime":1778126357122,"instance_started":true,"match_id":263,"entry_fee":51,"rc_prize":91,"your_team":"red"},"for_blue":{"Players":[{"Name":"warlock2","LastSeen":1778126357122,"l10_wins":0,"l10_losses":7,"UserId":5,"rc":0.0},{"Name":"choel","LastSeen":1778126357122,"l10_wins":1,"l10_losses":0,"UserId":33,"rc":0.0}],"GameName":"soccar","Port":26267,"InitTime":1778126357122,"instance_started":true,"match_id":263,"entry_fee":51,"rc_prize":91,"your_team":"blue"},"your_team":""} +[05/07/2026 03:59:17] Active player connections: 1 +[05/07/2026 03:59:17] Active player connections: 0 +[05/07/2026 03:59:22] Server will be closed due to no players in, 60 +[05/07/2026 03:59:32] Server will be closed due to no players in, 50 +[05/07/2026 03:59:42] Server will be closed due to no players in, 40 +[05/07/2026 03:59:52] Server will be closed due to no players in, 30 +[05/07/2026 04:00:02] Server will be closed due to no players in, 20 +[05/07/2026 04:00:12] Server will be closed due to no players in, 10 +[05/07/2026 04:00:22] All players left, exiting +[05/07/2026 04:00:22] Dedicated match PATCH success: 200 {"ok":true,"id":262} diff --git a/games/soccar/soccar_Data/Logs/263.txt b/games/soccar/soccar_Data/Logs/263.txt new file mode 100644 index 0000000..c3491fe --- /dev/null +++ b/games/soccar/soccar_Data/Logs/263.txt @@ -0,0 +1,72 @@ +[05/07/2026 03:59:19] Starting server at port 26267 +[05/07/2026 03:59:19] Failed to fetch red and blue names, isServer? +[05/07/2026 03:59:19] Starting auto close watchdog +[05/07/2026 03:59:19] Active player connections: 0 +[05/07/2026 03:59:21] Active player connections: 1 +[05/07/2026 03:59:21] Active player connections: 2 +[05/07/2026 03:59:21] Game started On Server +[05/07/2026 03:59:21] Client 15 set team to Red +[05/07/2026 03:59:21] Client 16 set team to Blue +[05/07/2026 03:59:22] Dedicated match PATCH success: 200 {"ok":true,"id":263} +[05/07/2026 03:59:22] Dedicated match PATCH success: 200 {"ok":true,"id":263} +[05/07/2026 03:59:25] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:59:25] launching puck at (4.92, -0.86) with (-343.22, 60.18) force +[05/07/2026 03:59:38] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:59:38] launching puck at (-1.39, 4.80) with (96.93, -334.70) force +[05/07/2026 03:59:43] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:59:43] launching puck at (1.40, 4.80) with (-97.74, -334.47) force +[05/07/2026 03:59:50] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:59:50] launching puck at (4.97, 0.56) with (-346.24, -39.23) force +[05/07/2026 03:59:54] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 03:59:54] launching puck at (1.56, -4.75) with (-108.94, 330.99) force +[05/07/2026 04:00:00] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:00:00] launching puck at (3.54, 3.53) with (-246.75, -246.04) force +[05/07/2026 04:00:04] Client 16 sent emoji emote 4 +[05/07/2026 04:00:06] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:00:06] launching puck at (2.54, -4.30) with (-177.24, 300.01) force +[05/07/2026 04:00:11] Client 15 sent emoji emote 0 +[05/07/2026 04:00:13] Client 15 sent emoji emote 1 +[05/07/2026 04:00:15] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:00:15] launching puck at (0.58, 4.97) with (-40.35, -346.11) force +[05/07/2026 04:00:16] Blue goal scored, blue score is now 1 +[05/07/2026 04:00:17] Client 15 sent text emote Nice shot! +[05/07/2026 04:00:21] Client 16 sent text emote Thanks! +[05/07/2026 04:00:21] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:00:21] launching puck at (4.97, -0.51) with (-346.65, 35.40) force +[05/07/2026 04:00:24] Client 15 sent emoji emote 1 +[05/07/2026 04:00:25] Client 15 sent emoji emote 1 +[05/07/2026 04:00:27] Client 15 sent emoji emote 4 +[05/07/2026 04:00:30] force = 70 * 0.8367839 = 58.57487 +[05/07/2026 04:00:30] launching puck at (-0.11, 3.43) with (6.21, -201.17) force +[05/07/2026 04:00:30] Blue goal scored, blue score is now 2 +[05/07/2026 04:00:35] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:00:35] launching puck at (0.42, -4.98) with (-28.98, 347.25) force +[05/07/2026 04:00:41] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:00:41] launching puck at (-2.48, 4.34) with (172.64, -302.68) force +[05/07/2026 04:00:45] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:00:45] launching puck at (-4.36, -2.45) with (303.86, 170.56) force +[05/07/2026 04:00:49] Client 15 sent emoji emote 1 +[05/07/2026 04:00:55] Client 16 sent emoji emote 4 +[05/07/2026 04:00:56] Client 16 sent emoji emote 3 +[05/07/2026 04:01:02] force = 70 * 0.9600008 = 67.20006 +[05/07/2026 04:01:02] launching puck at (3.89, 2.47) with (-261.44, -165.95) force +[05/07/2026 04:01:06] Client 16 sent text emote Oops +[05/07/2026 04:01:09] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:01:09] launching puck at (-0.18, 5.00) with (12.50, -348.23) force +[05/07/2026 04:01:09] Blue goal scored, blue score is now 3 +[05/07/2026 04:01:10] Dedicated match PATCH success: 200 {"ok":true,"id":263} +[05/07/2026 04:01:11] Dedicated match winner PATCH success: 200 {"ok":true,"id":263,"winner_id":33,"economy":{"entry_fee_rc":51,"rc_prize":91,"participant_cc":100}} +[05/07/2026 04:01:12] Client 15 sent emoji emote 1 +[05/07/2026 04:01:24] Rematch requested +[05/07/2026 04:01:46] Rematch was confirmed, closing in 5 secs. new room : +[05/07/2026 04:01:46] {"ok":true,"entry_fee":96,"rc_prize":172,"for_red":{"Players":[{"Name":"warlock2","LastSeen":1778126506027,"l10_wins":0,"l10_losses":7,"UserId":5,"rc":0.0},{"Name":"choel","LastSeen":1778126506027,"l10_wins":2,"l10_losses":0,"UserId":33,"rc":0.0}],"GameName":"soccar","Port":26122,"InitTime":1778126506027,"instance_started":true,"match_id":264,"entry_fee":96,"rc_prize":172,"your_team":"red"},"for_blue":{"Players":[{"Name":"warlock2","LastSeen":1778126506027,"l10_wins":0,"l10_losses":7,"UserId":5,"rc":0.0},{"Name":"choel","LastSeen":1778126506027,"l10_wins":2,"l10_losses":0,"UserId":33,"rc":0.0}],"GameName":"soccar","Port":26122,"InitTime":1778126506027,"instance_started":true,"match_id":264,"entry_fee":96,"rc_prize":172,"your_team":"blue"},"your_team":""} +[05/07/2026 04:01:46] Active player connections: 1 +[05/07/2026 04:01:46] Active player connections: 0 +[05/07/2026 04:01:51] Server will be closed due to no players in, 60 +[05/07/2026 04:02:01] Server will be closed due to no players in, 50 +[05/07/2026 04:02:11] Server will be closed due to no players in, 40 +[05/07/2026 04:02:21] Server will be closed due to no players in, 30 +[05/07/2026 04:02:31] Server will be closed due to no players in, 20 +[05/07/2026 04:02:41] Server will be closed due to no players in, 10 +[05/07/2026 04:02:51] All players left, exiting +[05/07/2026 04:02:51] Dedicated match PATCH success: 200 {"ok":true,"id":263} diff --git a/games/soccar/soccar_Data/Logs/264.txt b/games/soccar/soccar_Data/Logs/264.txt new file mode 100644 index 0000000..c5c1f6a --- /dev/null +++ b/games/soccar/soccar_Data/Logs/264.txt @@ -0,0 +1,132 @@ +[05/07/2026 04:01:48] Starting server at port 26122 +[05/07/2026 04:01:48] Failed to fetch red and blue names, isServer? +[05/07/2026 04:01:48] Starting auto close watchdog +[05/07/2026 04:01:48] Active player connections: 0 +[05/07/2026 04:01:50] Active player connections: 2 +[05/07/2026 04:01:50] Game started On Server +[05/07/2026 04:01:50] Client 16 set team to Red +[05/07/2026 04:01:50] Client 15 set team to Blue +[05/07/2026 04:01:50] Dedicated match PATCH success: 200 {"ok":true,"id":264} +[05/07/2026 04:01:51] Dedicated match PATCH success: 200 {"ok":true,"id":264} +[05/07/2026 04:01:54] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:01:54] launching puck at (0.07, -5.00) with (-4.68, 348.42) force +[05/07/2026 04:02:01] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:02:01] launching puck at (-4.99, -0.24) with (348.05, 16.82) force +[05/07/2026 04:02:05] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:02:05] launching puck at (-1.36, -4.81) with (94.70, 335.34) force +[05/07/2026 04:02:10] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:02:10] launching puck at (-4.64, 1.87) with (323.08, -130.54) force +[05/07/2026 04:02:14] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:02:14] launching puck at (3.70, -3.36) with (-257.82, 234.41) force +[05/07/2026 04:02:19] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:02:19] launching puck at (-1.75, 4.68) with (121.88, -326.44) force +[05/07/2026 04:02:24] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:02:24] launching puck at (0.54, -4.97) with (-37.68, 346.41) force +[05/07/2026 04:02:30] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:02:30] launching puck at (1.46, -4.78) with (-101.68, 333.29) force +[05/07/2026 04:02:41] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:02:41] launching puck at (4.27, -2.60) with (-297.62, 181.22) force +[05/07/2026 04:02:41] Red goal scored, red score is now 1 +[05/07/2026 04:02:44] Client 15 sent text emote Nice shot! +[05/07/2026 04:02:47] Client 16 sent emoji emote 5 +[05/07/2026 04:02:51] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:02:51] launching puck at (-0.90, 4.92) with (62.53, -342.80) force +[05/07/2026 04:02:56] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:02:56] launching puck at (-0.10, -5.00) with (7.04, 348.38) force +[05/07/2026 04:03:01] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:03:01] launching puck at (1.16, 4.86) with (-80.60, -339.00) force +[05/07/2026 04:03:06] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:03:06] launching puck at (4.59, 1.98) with (-319.98, -137.97) force +[05/07/2026 04:03:11] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:03:11] launching puck at (0.26, 4.99) with (-17.84, -348.00) force +[05/07/2026 04:03:15] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:03:15] launching puck at (-0.25, -4.99) with (17.24, 348.03) force +[05/07/2026 04:03:18] Client 15 sent text emote WOW +[05/07/2026 04:03:24] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:03:24] launching puck at (-5.00, -0.12) with (348.35, 8.63) force +[05/07/2026 04:03:28] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:03:28] launching puck at (1.01, -4.90) with (-70.71, 341.20) force +[05/07/2026 04:03:37] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:03:37] launching puck at (0.12, 5.00) with (-8.40, -348.35) force +[05/07/2026 04:03:41] Client 15 sent text emote Oops +[05/07/2026 04:03:42] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:03:42] launching puck at (-0.43, -4.98) with (29.65, 347.19) force +[05/07/2026 04:03:42] Red goal scored, red score is now 2 +[05/07/2026 04:03:45] Client 16 sent emoji emote 2 +[05/07/2026 04:03:47] Client 15 sent text emote well played +[05/07/2026 04:03:48] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:03:48] launching puck at (0.02, 5.00) with (-1.07, -348.45) force +[05/07/2026 04:03:48] Client 16 sent emoji emote 5 +[05/07/2026 04:03:55] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:03:55] launching puck at (3.84, -3.20) with (-267.73, 223.02) force +[05/07/2026 04:03:59] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:03:59] launching puck at (1.40, 4.80) with (-97.74, -334.46) force +[05/07/2026 04:04:03] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:04:03] launching puck at (3.70, -3.37) with (-257.62, 234.63) force +[05/07/2026 04:04:10] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:04:10] launching puck at (2.37, 4.40) with (-165.19, -306.81) force +[05/07/2026 04:04:11] Blue goal scored, blue score is now 1 +[05/07/2026 04:04:15] Client 15 sent emoji emote 5 +[05/07/2026 04:04:15] Client 16 sent text emote Nice shot! +[05/07/2026 04:04:18] Client 15 sent text emote Thanks! +[05/07/2026 04:04:19] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:04:19] launching puck at (0.74, -4.94) with (-51.74, 344.59) force +[05/07/2026 04:04:25] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:04:25] launching puck at (-1.63, 4.73) with (113.36, -329.50) force +[05/07/2026 04:04:30] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:04:30] launching puck at (-4.24, 2.65) with (295.58, -184.53) force +[05/07/2026 04:04:34] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:04:34] launching puck at (-2.09, 4.54) with (145.82, -316.48) force +[05/07/2026 04:04:39] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:04:39] launching puck at (-4.64, 1.87) with (323.06, -130.58) force +[05/07/2026 04:04:42] Client 16 sent emoji emote 2 +[05/07/2026 04:04:46] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:04:46] launching puck at (-4.76, 1.54) with (331.42, -107.63) force +[05/07/2026 04:04:50] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:04:50] launching puck at (4.66, -1.82) with (-324.68, 126.49) force +[05/07/2026 04:04:55] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:04:55] launching puck at (1.27, 4.83) with (-88.78, -336.95) force +[05/07/2026 04:05:01] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:05:01] launching puck at (-4.51, 2.15) with (314.48, -150.07) force +[05/07/2026 04:05:06] force = 70 * 0.9601145 = 67.20802 +[05/07/2026 04:05:06] launching puck at (-4.02, 2.26) with (270.08, -151.72) force +[05/07/2026 04:05:11] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:05:11] launching puck at (-4.14, -2.81) with (288.37, 195.61) force +[05/07/2026 04:05:15] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:05:15] launching puck at (-0.54, -4.97) with (37.34, 346.45) force +[05/07/2026 04:05:21] force = 70 * 0.7674387 = 53.72071 +[05/07/2026 04:05:21] launching puck at (0.44, 2.90) with (-23.51, -155.97) force +[05/07/2026 04:05:26] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:05:26] launching puck at (3.02, -3.98) with (-210.76, 277.49) force +[05/07/2026 04:05:31] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:05:31] launching puck at (4.50, 2.18) with (-313.52, -152.07) force +[05/07/2026 04:05:35] Client 15 sent text emote WOW +[05/07/2026 04:05:38] Client 16 sent emoji emote 3 +[05/07/2026 04:05:41] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:05:41] launching puck at (-5.00, -0.14) with (348.32, 9.59) force +[05/07/2026 04:05:46] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:05:46] launching puck at (-0.65, 4.96) with (45.29, -345.50) force +[05/07/2026 04:05:53] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:05:53] launching puck at (-3.63, 3.44) with (253.05, -239.55) force +[05/07/2026 04:05:58] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:05:58] launching puck at (1.48, -4.78) with (-103.34, 332.78) force +[05/07/2026 04:06:01] Client 16 sent emoji emote 2 +[05/07/2026 04:06:07] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 04:06:07] launching puck at (-1.59, -4.74) with (110.81, 330.36) force +[05/07/2026 04:06:11] Client 15 sent text emote What a save! +[05/07/2026 04:06:13] force = 70 * 0.9744412 = 68.21088 +[05/07/2026 04:06:13] launching puck at (-3.49, -3.25) with (237.85, 221.63) force +[05/07/2026 04:06:14] Red goal scored, red score is now 3 +[05/07/2026 04:06:15] Dedicated match PATCH success: 200 {"ok":true,"id":264} +[05/07/2026 04:06:16] Dedicated match winner PATCH success: 200 {"ok":true,"id":264,"winner_id":5,"economy":{"entry_fee_rc":96,"rc_prize":172,"participant_cc":100}} +[05/07/2026 04:06:16] Client 15 sent text emote GG +[05/07/2026 04:06:43] Active player connections: 1 +[05/07/2026 04:06:47] Active player connections: 0 +[05/07/2026 04:06:52] Server will be closed due to no players in, 60 +[05/07/2026 04:07:02] Server will be closed due to no players in, 50 +[05/07/2026 04:07:12] Server will be closed due to no players in, 40 +[05/07/2026 04:07:22] Server will be closed due to no players in, 30 +[05/07/2026 04:07:32] Server will be closed due to no players in, 20 +[05/07/2026 04:07:42] Server will be closed due to no players in, 10 +[05/07/2026 04:07:53] All players left, exiting +[05/07/2026 04:07:53] Dedicated match PATCH success: 200 {"ok":true,"id":264} diff --git a/games/soccar/soccar_Data/Logs/265.txt b/games/soccar/soccar_Data/Logs/265.txt new file mode 100644 index 0000000..0a9a4da --- /dev/null +++ b/games/soccar/soccar_Data/Logs/265.txt @@ -0,0 +1,29 @@ +[05/07/2026 19:56:55] Starting server at port 26638 +[05/07/2026 19:56:55] Failed to fetch red and blue names, isServer? +[05/07/2026 19:56:55] Starting auto close watchdog +[05/07/2026 19:56:55] Active player connections: 0 +[05/07/2026 19:56:58] Active player connections: 1 +[05/07/2026 19:56:58] Client 15 set team to Blue +[05/07/2026 19:56:59] Dedicated match PATCH success: 200 {"ok":true,"id":265} +[05/07/2026 19:57:02] Active player connections: 2 +[05/07/2026 19:57:02] Game started On Server +[05/07/2026 19:57:03] Client 16 set team to Red +[05/07/2026 19:57:03] Dedicated match PATCH success: 200 {"ok":true,"id":265} +[05/07/2026 19:57:08] force = 70 * 0.4858733 = 34.01113 +[05/07/2026 19:57:08] launching puck at (1.23, -0.85) with (-41.81, 29.03) force +[05/07/2026 19:57:13] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 19:57:13] launching puck at (0.16, 5.00) with (-11.18, -348.27) force +[05/07/2026 19:57:14] Blue goal scored, blue score is now 1 +[05/07/2026 19:57:27] force = 70 * 0.5453951 = 38.17766 +[05/07/2026 19:57:27] launching puck at (1.44, -1.03) with (-55.02, 39.26) force +[05/07/2026 19:57:32] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 19:57:32] launching puck at (0.01, 5.00) with (-0.98, -348.45) force +[05/07/2026 19:57:32] Blue goal scored, blue score is now 2 +[05/07/2026 19:57:38] force = 70 * 0.4830322 = 33.81225 +[05/07/2026 19:57:38] launching puck at (1.27, -0.77) with (-42.92, 26.09) force +[05/07/2026 19:57:43] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 19:57:43] launching puck at (0.07, 5.00) with (-5.16, -348.41) force +[05/07/2026 19:57:43] Blue goal scored, blue score is now 3 +[05/07/2026 19:57:44] Dedicated match PATCH success: 200 {"ok":true,"id":265} +[05/07/2026 19:57:46] Dedicated match winner PATCH success: 200 {"ok":true,"id":265,"winner_id":5,"economy":{"entry_fee_rc":21,"rc_prize":37,"participant_cc":100}} +[05/07/2026 19:58:23] Active player connections: 1 diff --git a/games/soccar/soccar_Data/Logs/266.txt b/games/soccar/soccar_Data/Logs/266.txt new file mode 100644 index 0000000..2a2f4c9 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/266.txt @@ -0,0 +1,38 @@ +[05/07/2026 20:16:38] Starting server at port 26887 +[05/07/2026 20:16:38] Failed to fetch red and blue names, isServer? +[05/07/2026 20:16:38] Starting auto close watchdog +[05/07/2026 20:16:38] Active player connections: 0 +[05/07/2026 20:16:44] Active player connections: 1 +[05/07/2026 20:16:44] Client 15 set team to Blue +[05/07/2026 20:16:44] Dedicated match PATCH success: 200 {"ok":true,"id":266} +[05/07/2026 20:16:49] Active player connections: 2 +[05/07/2026 20:16:49] Game started On Server +[05/07/2026 20:16:49] Client 16 set team to Red +[05/07/2026 20:16:50] Dedicated match PATCH success: 200 {"ok":true,"id":266} +[05/07/2026 20:16:52] force = 70 * 0.4607942 = 32.25559 +[05/07/2026 20:16:52] launching puck at (1.23, -0.68) with (-39.57, 22.03) force +[05/07/2026 20:16:56] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 20:16:56] launching puck at (0.07, 5.00) with (-5.02, -348.42) force +[05/07/2026 20:16:56] Blue goal scored, blue score is now 1 +[05/07/2026 20:17:01] force = 70 * 0.4245096 = 29.71567 +[05/07/2026 20:17:01] launching puck at (1.26, -0.26) with (-37.54, 7.86) force +[05/07/2026 20:17:05] force = 70 * 0.9955804 = 69.69063 +[05/07/2026 20:17:05] launching puck at (0.17, 5.00) with (-11.88, -348.25) force +[05/07/2026 20:17:06] Blue goal scored, blue score is now 2 +[05/07/2026 20:17:12] force = 70 * 0.573672 = 40.15704 +[05/07/2026 20:17:12] launching puck at (1.91, -0.07) with (-76.77, 2.83) force +[05/07/2026 20:17:15] force = 70 * 0.9685158 = 67.7961 +[05/07/2026 20:17:15] launching puck at (0.03, 4.70) with (-2.32, -318.71) force +[05/07/2026 20:17:16] Blue goal scored, blue score is now 3 +[05/07/2026 20:17:16] Dedicated match PATCH success: 200 {"ok":true,"id":266} +[05/07/2026 20:17:18] Dedicated match winner PATCH success: 200 {"ok":true,"id":266,"winner_id":5,"economy":{"entry_fee_rc":21,"rc_prize":36,"participant_cc":100}} +[05/07/2026 20:18:04] Active player connections: 1 +[05/07/2026 20:18:51] Active player connections: 0 +[05/07/2026 20:18:56] Server will be closed due to no players in, 60 +[05/07/2026 20:19:06] Server will be closed due to no players in, 50 +[05/07/2026 20:19:16] Server will be closed due to no players in, 40 +[05/07/2026 20:19:26] Server will be closed due to no players in, 30 +[05/07/2026 20:19:36] Server will be closed due to no players in, 20 +[05/07/2026 20:19:46] Server will be closed due to no players in, 10 +[05/07/2026 20:19:56] All players left, exiting +[05/07/2026 20:19:56] Dedicated match PATCH success: 200 {"ok":true,"id":266} diff --git a/games/soccar/soccar_Data/Logs/267.txt b/games/soccar/soccar_Data/Logs/267.txt new file mode 100644 index 0000000..a37e7a8 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/267.txt @@ -0,0 +1,12 @@ +[05/08/2026 09:24:12] Starting server at port 26355 +[05/08/2026 09:24:12] Failed to fetch red and blue names, isServer? +[05/08/2026 09:24:12] Starting auto close watchdog +[05/08/2026 09:24:12] Active player connections: 0 +[05/08/2026 09:24:17] Server will be closed due to no players in, 60 +[05/08/2026 09:24:27] Server will be closed due to no players in, 50 +[05/08/2026 09:24:37] Server will be closed due to no players in, 40 +[05/08/2026 09:24:47] Server will be closed due to no players in, 30 +[05/08/2026 09:24:57] Server will be closed due to no players in, 20 +[05/08/2026 09:25:07] Server will be closed due to no players in, 10 +[05/08/2026 09:25:17] No players joined, exiting +[05/08/2026 09:25:18] Dedicated match PATCH success: 200 {"ok":true,"id":267} diff --git a/games/soccar/soccar_Data/Logs/268.txt b/games/soccar/soccar_Data/Logs/268.txt new file mode 100644 index 0000000..48589a0 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/268.txt @@ -0,0 +1,102 @@ +[05/08/2026 09:24:53] Starting server at port 26055 +[05/08/2026 09:24:53] Failed to fetch red and blue names, isServer? +[05/08/2026 09:24:53] Starting auto close watchdog +[05/08/2026 09:24:53] Active player connections: 0 +[05/08/2026 09:24:55] Active player connections: 1 +[05/08/2026 09:24:56] Client 15 set team to Blue +[05/08/2026 09:24:56] Active player connections: 2 +[05/08/2026 09:24:56] Game started On Server +[05/08/2026 09:24:56] Dedicated match PATCH success: 200 {"ok":true,"id":268} +[05/08/2026 09:24:57] Client 16 set team to Red +[05/08/2026 09:24:57] Dedicated match PATCH success: 200 {"ok":true,"id":268} +[05/08/2026 09:25:04] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:25:04] launching puck at (0.16, -5.00) with (-10.93, 348.28) force +[05/08/2026 09:25:09] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:25:09] launching puck at (-3.90, 3.13) with (271.81, -218.03) force +[05/08/2026 09:25:15] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:25:15] launching puck at (-1.09, -4.88) with (76.13, 340.03) force +[05/08/2026 09:25:21] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:25:21] launching puck at (-1.73, 4.69) with (120.55, -326.94) force +[05/08/2026 09:25:27] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:25:27] launching puck at (-0.09, -5.00) with (6.53, 348.39) force +[05/08/2026 09:25:37] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:25:37] launching puck at (-2.52, 4.32) with (175.81, -300.85) force +[05/08/2026 09:25:44] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:25:44] launching puck at (-0.55, 4.97) with (38.13, -346.36) force +[05/08/2026 09:25:48] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:25:48] launching puck at (3.85, 3.19) with (-268.12, -222.55) force +[05/08/2026 09:25:55] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:25:55] launching puck at (4.98, 0.42) with (-347.23, -29.14) force +[05/08/2026 09:26:03] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:26:03] launching puck at (-0.34, 4.99) with (23.53, -347.66) force +[05/08/2026 09:26:11] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:26:11] launching puck at (4.97, 0.51) with (-346.65, -35.37) force +[05/08/2026 09:26:17] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:26:17] launching puck at (0.28, 4.99) with (-19.46, -347.91) force +[05/08/2026 09:26:22] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:26:22] launching puck at (4.75, 1.55) with (-331.19, -108.33) force +[05/08/2026 09:26:25] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:26:25] launching puck at (0.76, 4.94) with (-52.77, -344.43) force +[05/08/2026 09:26:29] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:26:29] launching puck at (3.81, -3.23) with (-265.77, 225.35) force +[05/08/2026 09:26:36] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:26:36] launching puck at (-0.50, -4.98) with (34.66, 346.72) force +[05/08/2026 09:26:44] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:26:44] launching puck at (0.98, -4.90) with (-68.12, 341.73) force +[05/08/2026 09:26:49] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:26:49] launching puck at (0.13, 5.00) with (-9.01, -348.34) force +[05/08/2026 09:26:59] force = 70 * 0.8592274 = 60.14592 +[05/08/2026 09:26:59] launching puck at (-3.46, 1.08) with (207.88, -64.92) force +[05/08/2026 09:27:04] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:27:04] launching puck at (-0.78, 4.94) with (54.65, -344.14) force +[05/08/2026 09:27:05] Blue goal scored, blue score is now 1 +[05/08/2026 09:27:13] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:27:13] launching puck at (0.02, -5.00) with (-1.44, 348.45) force +[05/08/2026 09:27:19] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:27:19] launching puck at (2.39, 4.39) with (-166.36, -306.18) force +[05/08/2026 09:27:24] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:27:24] launching puck at (1.63, -4.73) with (-113.26, 329.53) force +[05/08/2026 09:27:29] Client 16 sent text emote What a save! +[05/08/2026 09:27:34] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:27:34] launching puck at (-1.01, 4.90) with (70.32, -341.28) force +[05/08/2026 09:27:34] Blue goal scored, blue score is now 2 +[05/08/2026 09:27:45] Client 16 sent text emote WOW +[05/08/2026 09:27:48] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:27:48] launching puck at (0.19, -5.00) with (-13.05, 348.21) force +[05/08/2026 09:27:52] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:27:52] launching puck at (-3.17, 3.87) with (220.68, -269.67) force +[05/08/2026 09:27:57] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:27:57] launching puck at (-3.46, -3.61) with (241.13, 251.55) force +[05/08/2026 09:28:03] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:28:03] launching puck at (-2.51, 4.32) with (174.94, -301.35) force +[05/08/2026 09:28:08] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:28:08] launching puck at (4.87, -1.15) with (-339.14, 80.03) force +[05/08/2026 09:28:13] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:28:13] launching puck at (1.98, 4.59) with (-137.87, -320.02) force +[05/08/2026 09:28:18] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:28:18] launching puck at (-1.00, 4.90) with (69.89, -341.37) force +[05/08/2026 09:28:24] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:28:24] launching puck at (-0.95, 4.91) with (65.96, -342.15) force +[05/08/2026 09:28:29] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:28:29] launching puck at (2.11, 4.53) with (-146.82, -316.01) force +[05/08/2026 09:28:36] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:28:36] launching puck at (3.54, -3.53) with (-246.62, 246.17) force +[05/08/2026 09:28:42] force = 70 * 0.2248645 = 15.74052 +[05/08/2026 09:28:42] launching puck at (0.29, 0.85) with (-4.56, -13.31) force +[05/08/2026 09:28:51] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:28:51] launching puck at (-2.41, 4.38) with (167.81, -305.38) force +[05/08/2026 09:28:52] Blue goal scored, blue score is now 3 +[05/08/2026 09:28:52] Dedicated match PATCH success: 200 {"ok":true,"id":268} +[05/08/2026 09:28:54] Dedicated match winner PATCH success: 200 {"ok":true,"id":268,"winner_id":33,"economy":{"entry_fee_rc":21,"rc_prize":36,"participant_cc":100}} +[05/08/2026 09:29:05] Rematch requested +[05/08/2026 09:29:22] Rematch was confirmed, closing in 5 secs. new room : +[05/08/2026 09:29:22] {"ok":true,"entry_fee":15,"rc_prize":26,"for_red":{"Players":[{"Name":"lulu","LastSeen":1778232562759,"l10_wins":3,"l10_losses":5,"UserId":6,"rc":0.0},{"Name":"choel","LastSeen":1778232562759,"l10_wins":3,"l10_losses":1,"UserId":33,"rc":0.0}],"GameName":"soccar","Port":26735,"InitTime":1778232562759,"instance_started":true,"match_id":269,"entry_fee":15,"rc_prize":26,"your_team":"red"},"for_blue":{"Players":[{"Name":"lulu","LastSeen":1778232562759,"l10_wins":3,"l10_losses":5,"UserId":6,"rc":0.0},{"Name":"choel","LastSeen":1778232562759,"l10_wins":3,"l10_losses":1,"UserId":33,"rc":0.0}],"GameName":"soccar","Port":26735,"InitTime":1778232562759,"instance_started":true,"match_id":269,"entry_fee":15,"rc_prize":26,"your_team":"blue"},"your_team":""} +[05/08/2026 09:29:23] Active player connections: 0 +[05/08/2026 09:29:27] Server will be closed due to no players in, 60 +[05/08/2026 09:29:37] Server will be closed due to no players in, 50 +[05/08/2026 09:29:47] Server will be closed due to no players in, 40 +[05/08/2026 09:29:57] Server will be closed due to no players in, 30 +[05/08/2026 09:30:07] Server will be closed due to no players in, 20 +[05/08/2026 09:30:17] Server will be closed due to no players in, 10 +[05/08/2026 09:30:27] All players left, exiting +[05/08/2026 09:30:28] Dedicated match PATCH success: 200 {"ok":true,"id":268} diff --git a/games/soccar/soccar_Data/Logs/269.txt b/games/soccar/soccar_Data/Logs/269.txt new file mode 100644 index 0000000..4d3e5d9 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/269.txt @@ -0,0 +1,119 @@ +[05/08/2026 09:29:24] Starting server at port 26735 +[05/08/2026 09:29:24] Failed to fetch red and blue names, isServer? +[05/08/2026 09:29:24] Starting auto close watchdog +[05/08/2026 09:29:24] Active player connections: 0 +[05/08/2026 09:29:27] Active player connections: 1 +[05/08/2026 09:29:27] Active player connections: 2 +[05/08/2026 09:29:27] Game started On Server +[05/08/2026 09:29:27] Client 15 set team to Blue +[05/08/2026 09:29:27] Client 16 set team to Red +[05/08/2026 09:29:27] Dedicated match PATCH success: 200 {"ok":true,"id":269} +[05/08/2026 09:29:27] Dedicated match PATCH success: 200 {"ok":true,"id":269} +[05/08/2026 09:29:29] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:29:29] launching puck at (-0.22, -5.00) with (15.25, 348.12) force +[05/08/2026 09:29:34] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:29:34] launching puck at (-2.02, 4.57) with (140.98, -318.66) force +[05/08/2026 09:29:39] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:29:39] launching puck at (-2.79, -4.15) with (194.21, 289.31) force +[05/08/2026 09:29:44] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:29:44] launching puck at (1.91, -4.62) with (-133.41, 321.90) force +[05/08/2026 09:29:51] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:29:51] launching puck at (-0.71, -4.95) with (49.42, 344.93) force +[05/08/2026 09:29:57] force = 70 * 0.9226097 = 64.58268 +[05/08/2026 09:29:57] launching puck at (4.13, -0.83) with (-266.78, 53.62) force +[05/08/2026 09:29:57] Red goal scored, red score is now 1 +[05/08/2026 09:30:00] Client 15 sent emoji emote 4 +[05/08/2026 09:30:03] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:30:03] launching puck at (0.13, 5.00) with (-9.11, -348.33) force +[05/08/2026 09:30:08] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:30:08] launching puck at (0.90, -4.92) with (-62.76, 342.75) force +[05/08/2026 09:30:19] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:30:19] launching puck at (-4.94, 0.76) with (344.39, -53.08) force +[05/08/2026 09:30:25] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:30:25] launching puck at (-4.02, -2.97) with (280.06, 207.32) force +[05/08/2026 09:30:33] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:30:33] launching puck at (-1.12, 4.87) with (78.00, -339.61) force +[05/08/2026 09:30:37] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:30:37] launching puck at (-2.06, 4.55) with (143.79, -317.40) force +[05/08/2026 09:30:42] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:30:42] launching puck at (-3.29, 3.76) with (229.43, -262.26) force +[05/08/2026 09:30:46] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:30:46] launching puck at (2.75, 4.18) with (-191.46, -291.14) force +[05/08/2026 09:30:50] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:30:50] launching puck at (1.66, 4.72) with (-115.44, -328.77) force +[05/08/2026 09:30:54] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:30:54] launching puck at (3.47, 3.60) with (-241.92, -250.79) force +[05/08/2026 09:31:01] force = 70 * 0.8344769 = 58.41339 +[05/08/2026 09:31:01] launching puck at (3.37, 0.56) with (-196.99, -32.43) force +[05/08/2026 09:31:01] Blue goal scored, blue score is now 1 +[05/08/2026 09:31:07] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:31:07] launching puck at (-0.10, -5.00) with (7.05, 348.38) force +[05/08/2026 09:31:13] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:31:13] launching puck at (4.81, 1.36) with (-335.29, -94.86) force +[05/08/2026 09:31:23] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:31:23] launching puck at (0.76, -4.94) with (-53.02, 344.40) force +[05/08/2026 09:31:24] Red goal scored, red score is now 2 +[05/08/2026 09:31:28] Client 15 sent text emote Nice shot! +[05/08/2026 09:31:31] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:31:31] launching puck at (0.10, 5.00) with (-6.64, -348.39) force +[05/08/2026 09:31:34] Client 16 sent emoji emote 4 +[05/08/2026 09:31:37] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:31:37] launching puck at (0.92, -4.92) with (-63.88, 342.55) force +[05/08/2026 09:31:42] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:31:42] launching puck at (3.39, 3.67) with (-236.47, -255.94) force +[05/08/2026 09:31:48] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:31:48] launching puck at (4.53, -2.12) with (-315.50, 147.91) force +[05/08/2026 09:31:54] Client 15 sent text emote What a save! +[05/08/2026 09:31:58] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:31:58] launching puck at (-4.29, 2.57) with (298.74, -179.37) force +[05/08/2026 09:32:03] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:32:03] launching puck at (-2.65, -4.24) with (184.45, 295.63) force +[05/08/2026 09:32:07] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:32:07] launching puck at (-2.27, 4.46) with (157.88, -310.63) force +[05/08/2026 09:32:08] Blue goal scored, blue score is now 2 +[05/08/2026 09:32:14] Client 16 sent text emote Nice shot! +[05/08/2026 09:32:17] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:32:17] launching puck at (0.01, -5.00) with (-0.80, 348.45) force +[05/08/2026 09:32:29] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:32:29] launching puck at (0.69, 4.95) with (-47.80, -345.16) force +[05/08/2026 09:32:35] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:32:35] launching puck at (-1.58, -4.75) with (109.80, 330.70) force +[05/08/2026 09:32:43] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:32:43] launching puck at (-3.20, 3.84) with (223.07, -267.70) force +[05/08/2026 09:32:48] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:32:48] launching puck at (-5.00, -0.11) with (348.37, 7.83) force +[05/08/2026 09:32:52] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:32:52] launching puck at (1.37, 4.81) with (-95.70, -335.06) force +[05/08/2026 09:32:57] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:32:57] launching puck at (3.52, 3.55) with (-245.61, -247.17) force +[05/08/2026 09:33:04] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:33:04] launching puck at (1.49, 4.77) with (-103.93, -332.59) force +[05/08/2026 09:33:09] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:33:09] launching puck at (5.00, 0.04) with (-348.44, -2.93) force +[05/08/2026 09:33:14] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:33:14] launching puck at (4.13, -2.82) with (-287.72, 196.56) force +[05/08/2026 09:33:18] force = 70 * 0.5749462 = 40.24623 +[05/08/2026 09:33:18] launching puck at (-1.80, 0.66) with (72.59, -26.39) force +[05/08/2026 09:33:25] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:33:25] launching puck at (-3.27, 3.78) with (227.79, -263.69) force +[05/08/2026 09:33:30] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:33:30] launching puck at (3.37, -3.70) with (-234.71, 257.55) force +[05/08/2026 09:33:39] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:33:39] launching puck at (0.28, 4.99) with (-19.21, -347.92) force +[05/08/2026 09:33:45] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:33:45] launching puck at (4.60, 1.96) with (-320.43, -136.90) force +[05/08/2026 09:33:50] force = 70 * 0.9955804 = 69.69063 +[05/08/2026 09:33:50] launching puck at (4.64, 1.85) with (-323.64, -129.14) force +[05/08/2026 09:33:50] Blue goal scored, blue score is now 3 +[05/08/2026 09:33:52] Dedicated match PATCH success: 200 {"ok":true,"id":269} +[05/08/2026 09:33:53] Dedicated match winner PATCH success: 200 {"ok":true,"id":269,"winner_id":33,"economy":{"entry_fee_rc":15,"rc_prize":26,"participant_cc":100}} +[05/08/2026 09:34:34] Active player connections: 1 +[05/08/2026 09:34:47] Active player connections: 0 +[05/08/2026 09:34:52] Server will be closed due to no players in, 60 +[05/08/2026 09:35:02] Server will be closed due to no players in, 50 +[05/08/2026 09:35:12] Server will be closed due to no players in, 40 +[05/08/2026 09:35:22] Server will be closed due to no players in, 30 +[05/08/2026 09:35:32] Server will be closed due to no players in, 20 +[05/08/2026 09:35:42] Server will be closed due to no players in, 10 +[05/08/2026 09:35:52] All players left, exiting +[05/08/2026 09:35:53] Dedicated match PATCH success: 200 {"ok":true,"id":269} diff --git a/games/soccar/soccar_Data/Logs/27.txt b/games/soccar/soccar_Data/Logs/27.txt new file mode 100644 index 0000000..df1945b --- /dev/null +++ b/games/soccar/soccar_Data/Logs/27.txt @@ -0,0 +1,13 @@ +[05/16/2026 17:54:10] Starting server at port 26220 +[05/16/2026 17:54:10] Mirror server exception logging enabled +[05/16/2026 17:54:10] Failed to fetch red and blue names, isServer? +[05/16/2026 17:54:10] Starting auto close watchdog +[05/16/2026 17:54:10] Active player connections: 0 +[05/16/2026 17:54:15] Server will be closed due to no players in, 60 +[05/16/2026 17:54:25] Server will be closed due to no players in, 50 +[05/16/2026 17:54:35] Server will be closed due to no players in, 40 +[05/16/2026 17:54:45] Server will be closed due to no players in, 30 +[05/16/2026 17:54:55] Server will be closed due to no players in, 20 +[05/16/2026 17:55:05] Server will be closed due to no players in, 10 +[05/16/2026 17:55:15] No players joined, exiting +[05/16/2026 17:55:15] Dedicated match PATCH success: 200 {"ok":true,"id":27} diff --git a/games/soccar/soccar_Data/Logs/270.txt b/games/soccar/soccar_Data/Logs/270.txt new file mode 100644 index 0000000..b96dd01 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/270.txt @@ -0,0 +1,101 @@ +[05/10/2026 01:07:21] Starting server at port 26215 +[05/10/2026 01:07:21] Failed to fetch red and blue names, isServer? +[05/10/2026 01:07:21] Starting auto close watchdog +[05/10/2026 01:07:21] Active player connections: 0 +[05/10/2026 01:07:26] Active player connections: 1 +[05/10/2026 01:07:26] Active player connections: 2 +[05/10/2026 01:07:26] Game started On Server +[05/10/2026 01:07:26] Client 15 set team to Red +[05/10/2026 01:07:27] Client 16 set team to Blue +[05/10/2026 01:07:27] Dedicated match PATCH success: 200 {"ok":true,"id":270} +[05/10/2026 01:07:27] Dedicated match PATCH success: 200 {"ok":true,"id":270} +[05/10/2026 01:07:30] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 01:07:30] launching puck at (-0.18, -5.00) with (12.78, 348.22) force +[05/10/2026 01:07:35] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 01:07:35] launching puck at (2.01, 4.58) with (-140.00, -319.09) force +[05/10/2026 01:07:44] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 01:07:44] launching puck at (1.81, -4.66) with (-125.99, 324.88) force +[05/10/2026 01:07:49] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 01:07:49] launching puck at (4.67, 1.80) with (-325.19, -125.19) force +[05/10/2026 01:07:56] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 01:07:56] launching puck at (1.14, -4.87) with (-79.15, 339.35) force +[05/10/2026 01:08:01] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 01:08:01] launching puck at (4.92, 0.88) with (-343.03, -61.22) force +[05/10/2026 01:08:15] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 01:08:15] launching puck at (0.63, -4.96) with (-43.73, 345.70) force +[05/10/2026 01:08:19] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 01:08:19] launching puck at (3.83, 3.21) with (-266.96, -223.94) force +[05/10/2026 01:08:24] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 01:08:24] launching puck at (-1.14, 4.87) with (79.41, -339.28) force +[05/10/2026 01:08:31] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 01:08:31] launching puck at (-0.61, 4.96) with (42.41, -345.86) force +[05/10/2026 01:08:35] Client 15 sent text emote What a save! +[05/10/2026 01:08:41] force = 70 * 0.9752821 = 68.26974 +[05/10/2026 01:08:41] launching puck at (4.65, -1.09) with (-317.40, 74.50) force +[05/10/2026 01:08:46] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 01:08:46] launching puck at (1.53, 4.76) with (-106.55, -331.76) force +[05/10/2026 01:08:51] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 01:08:51] launching puck at (-0.64, 4.96) with (44.33, -345.62) force +[05/10/2026 01:08:59] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 01:08:59] launching puck at (-1.53, 4.76) with (106.39, -331.81) force +[05/10/2026 01:09:02] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 01:09:02] launching puck at (-4.96, -0.61) with (345.87, 42.34) force +[05/10/2026 01:09:09] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 01:09:09] launching puck at (-4.31, 2.54) with (300.20, -176.93) force +[05/10/2026 01:09:14] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 01:09:14] launching puck at (0.17, -5.00) with (-11.50, 348.26) force +[05/10/2026 01:09:19] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 01:09:19] launching puck at (-3.16, -3.88) with (220.21, 270.05) force +[05/10/2026 01:09:26] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 01:09:26] launching puck at (-1.75, -4.68) with (121.87, 326.45) force +[05/10/2026 01:09:30] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 01:09:30] launching puck at (-3.25, -3.80) with (226.27, 264.99) force +[05/10/2026 01:09:37] force = 70 * 0.7823626 = 54.76538 +[05/10/2026 01:09:37] launching puck at (0.17, 3.03) with (-9.47, -165.98) force +[05/10/2026 01:09:41] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 01:09:41] launching puck at (-0.61, -4.96) with (42.60, 345.84) force +[05/10/2026 01:09:46] force = 70 * 0.7383715 = 51.686 +[05/10/2026 01:09:46] launching puck at (-0.70, -2.66) with (36.25, 137.63) force +[05/10/2026 01:09:53] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 01:09:53] launching puck at (1.01, -4.90) with (-70.62, 341.22) force +[05/10/2026 01:09:53] Red goal scored, red score is now 1 +[05/10/2026 01:09:59] Client 16 sent emoji emote 4 +[05/10/2026 01:10:01] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 01:10:01] launching puck at (0.32, 4.99) with (-22.10, -347.75) force +[05/10/2026 01:10:08] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 01:10:08] launching puck at (4.54, -2.10) with (-316.07, 146.70) force +[05/10/2026 01:10:14] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 01:10:14] launching puck at (1.63, 4.73) with (-113.89, -329.31) force +[05/10/2026 01:10:20] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 01:10:20] launching puck at (-4.99, 0.37) with (347.50, -25.72) force +[05/10/2026 01:10:24] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 01:10:24] launching puck at (1.13, -4.87) with (-78.94, 339.39) force +[05/10/2026 01:10:25] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 01:10:25] launching puck at (0.99, -4.90) with (-68.78, 341.60) force +[05/10/2026 01:10:25] Active player connections: 1 +[05/10/2026 01:10:31] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 01:10:31] launching puck at (-1.16, 4.86) with (81.07, -338.89) force +[05/10/2026 01:10:50] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 01:10:50] launching puck at (-2.02, 4.57) with (140.66, -318.80) force +[05/10/2026 01:10:51] Blue goal scored, blue score is now 1 +[05/10/2026 01:11:38] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 01:11:38] launching puck at (0.19, -5.00) with (-12.96, 348.21) force +[05/10/2026 01:11:58] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 01:11:58] launching puck at (-0.38, -4.99) with (26.78, 347.42) force +[05/10/2026 01:11:58] Red goal scored, red score is now 2 +[05/10/2026 01:12:26] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 01:12:26] launching puck at (0.00, -5.00) with (0.07, 348.45) force +[05/10/2026 01:12:46] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 01:12:46] launching puck at (2.46, -4.36) with (-171.16, 303.52) force +[05/10/2026 01:12:46] Red goal scored, red score is now 3 +[05/10/2026 01:12:47] Dedicated match PATCH success: 200 {"ok":true,"id":270} +[05/10/2026 01:12:48] Dedicated match winner PATCH success: 200 {"ok":true,"id":270,"winner_id":33,"economy":{"entry_fee_rc":21,"rc_prize":36,"participant_cc":100}} +[05/10/2026 01:17:15] Active player connections: 0 +[05/10/2026 01:17:20] Server will be closed due to no players in, 60 +[05/10/2026 01:17:30] Server will be closed due to no players in, 50 +[05/10/2026 01:17:40] Server will be closed due to no players in, 40 +[05/10/2026 01:17:50] Server will be closed due to no players in, 30 +[05/10/2026 01:18:00] Server will be closed due to no players in, 20 +[05/10/2026 01:18:10] Server will be closed due to no players in, 10 +[05/10/2026 01:18:20] All players left, exiting +[05/10/2026 01:18:21] Dedicated match PATCH success: 200 {"ok":true,"id":270} diff --git a/games/soccar/soccar_Data/Logs/271.txt b/games/soccar/soccar_Data/Logs/271.txt new file mode 100644 index 0000000..2f3a52e --- /dev/null +++ b/games/soccar/soccar_Data/Logs/271.txt @@ -0,0 +1,17 @@ +[05/10/2026 02:09:36] Starting server at port 26765 +[05/10/2026 02:09:36] Failed to fetch red and blue names, isServer? +[05/10/2026 02:09:36] Starting auto close watchdog +[05/10/2026 02:09:36] Active player connections: 0 +[05/10/2026 02:09:41] Server will be closed due to no players in, 60 +[05/10/2026 02:09:41] Active player connections: 1 +[05/10/2026 02:09:42] Client 15 set team to Red +[05/10/2026 02:09:42] Dedicated match PATCH success: 200 {"ok":true,"id":271} +[05/10/2026 02:09:57] Active player connections: 0 +[05/10/2026 02:10:02] Server will be closed due to no players in, 60 +[05/10/2026 02:10:12] Server will be closed due to no players in, 50 +[05/10/2026 02:10:22] Server will be closed due to no players in, 40 +[05/10/2026 02:10:32] Server will be closed due to no players in, 30 +[05/10/2026 02:10:42] Server will be closed due to no players in, 20 +[05/10/2026 02:10:52] Server will be closed due to no players in, 10 +[05/10/2026 02:11:02] All players left, exiting +[05/10/2026 02:11:03] Dedicated match PATCH success: 200 {"ok":true,"id":271} diff --git a/games/soccar/soccar_Data/Logs/272.txt b/games/soccar/soccar_Data/Logs/272.txt new file mode 100644 index 0000000..1da36ec --- /dev/null +++ b/games/soccar/soccar_Data/Logs/272.txt @@ -0,0 +1,16 @@ +[05/10/2026 02:10:22] Starting server at port 26621 +[05/10/2026 02:10:22] Failed to fetch red and blue names, isServer? +[05/10/2026 02:10:22] Starting auto close watchdog +[05/10/2026 02:10:22] Active player connections: 0 +[05/10/2026 02:10:27] Active player connections: 1 +[05/10/2026 02:10:28] Client 15 set team to Red +[05/10/2026 02:10:28] Dedicated match PATCH success: 200 {"ok":true,"id":272} +[05/10/2026 02:10:52] Active player connections: 0 +[05/10/2026 02:10:57] Server will be closed due to no players in, 60 +[05/10/2026 02:11:07] Server will be closed due to no players in, 50 +[05/10/2026 02:11:17] Server will be closed due to no players in, 40 +[05/10/2026 02:11:27] Server will be closed due to no players in, 30 +[05/10/2026 02:11:37] Server will be closed due to no players in, 20 +[05/10/2026 02:11:47] Server will be closed due to no players in, 10 +[05/10/2026 02:11:57] All players left, exiting +[05/10/2026 02:11:57] Dedicated match PATCH success: 200 {"ok":true,"id":272} diff --git a/games/soccar/soccar_Data/Logs/273.txt b/games/soccar/soccar_Data/Logs/273.txt new file mode 100644 index 0000000..00ce64e --- /dev/null +++ b/games/soccar/soccar_Data/Logs/273.txt @@ -0,0 +1,101 @@ +[05/10/2026 02:11:36] Starting server at port 26192 +[05/10/2026 02:11:36] Failed to fetch red and blue names, isServer? +[05/10/2026 02:11:36] Starting auto close watchdog +[05/10/2026 02:11:36] Active player connections: 0 +[05/10/2026 02:11:41] Server will be closed due to no players in, 60 +[05/10/2026 02:11:41] Active player connections: 1 +[05/10/2026 02:11:41] Active player connections: 2 +[05/10/2026 02:11:41] Game started On Server +[05/10/2026 02:11:42] Client 15 set team to Red +[05/10/2026 02:11:42] Dedicated match PATCH success: 200 {"ok":true,"id":273} +[05/10/2026 02:11:42] Client 16 set team to Blue +[05/10/2026 02:11:42] Dedicated match PATCH success: 200 {"ok":true,"id":273} +[05/10/2026 02:11:54] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:11:54] launching puck at (0.07, -5.00) with (-4.74, 348.42) force +[05/10/2026 02:12:06] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:12:06] launching puck at (0.35, 4.99) with (-24.33, -347.60) force +[05/10/2026 02:12:14] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:12:14] launching puck at (0.69, -4.95) with (-48.08, 345.12) force +[05/10/2026 02:12:19] Client 16 sent text emote What a save! +[05/10/2026 02:12:24] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:12:24] launching puck at (1.91, -4.62) with (-133.12, 322.02) force +[05/10/2026 02:12:29] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:12:29] launching puck at (-2.07, -4.55) with (144.39, 317.13) force +[05/10/2026 02:12:34] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:12:34] launching puck at (3.58, -3.49) with (-249.77, 242.97) force +[05/10/2026 02:12:44] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:12:44] launching puck at (0.59, -4.97) with (-40.96, 346.04) force +[05/10/2026 02:12:50] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:12:50] launching puck at (1.18, -4.86) with (-82.13, 338.64) force +[05/10/2026 02:12:57] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:12:57] launching puck at (-2.96, 4.03) with (206.39, -280.76) force +[05/10/2026 02:13:02] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:13:02] launching puck at (3.62, 3.45) with (-252.16, -240.49) force +[05/10/2026 02:13:09] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:13:09] launching puck at (2.46, -4.35) with (-171.27, 303.46) force +[05/10/2026 02:13:15] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:13:15] launching puck at (1.90, -4.62) with (-132.63, 322.23) force +[05/10/2026 02:13:19] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:13:19] launching puck at (0.55, -4.97) with (-38.54, 346.32) force +[05/10/2026 02:13:19] Red goal scored, red score is now 1 +[05/10/2026 02:13:25] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:13:25] launching puck at (-0.05, 5.00) with (3.52, -348.44) force +[05/10/2026 02:13:28] Client 16 sent text emote Nice shot! +[05/10/2026 02:13:31] Client 15 sent text emote Thanks! +[05/10/2026 02:13:33] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:13:33] launching puck at (4.96, -0.63) with (-345.65, 44.13) force +[05/10/2026 02:13:38] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:13:38] launching puck at (0.12, 5.00) with (-8.62, -348.35) force +[05/10/2026 02:13:46] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:13:46] launching puck at (-2.74, 4.18) with (190.79, -291.58) force +[05/10/2026 02:13:47] Blue goal scored, blue score is now 1 +[05/10/2026 02:13:53] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:13:53] launching puck at (0.01, -5.00) with (-0.53, 348.45) force +[05/10/2026 02:13:54] Client 15 sent emoji emote 4 +[05/10/2026 02:13:59] force = 70 * 0.8993291 = 62.95304 +[05/10/2026 02:13:59] launching puck at (-3.18, -2.40) with (200.30, 150.90) force +[05/10/2026 02:14:04] Client 15 sent emoji emote 3 +[05/10/2026 02:14:10] Client 16 sent emoji emote 1 +[05/10/2026 02:14:15] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:14:15] launching puck at (-1.00, -4.90) with (69.50, 341.45) force +[05/10/2026 02:14:15] Red goal scored, red score is now 2 +[05/10/2026 02:14:21] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:14:21] launching puck at (-0.14, 5.00) with (10.07, -348.31) force +[05/10/2026 02:14:25] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:14:25] launching puck at (4.13, -2.82) with (-287.68, 196.62) force +[05/10/2026 02:14:30] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:14:30] launching puck at (3.21, 3.84) with (-223.45, -267.38) force +[05/10/2026 02:14:38] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:14:38] launching puck at (-1.84, -4.65) with (128.45, 323.91) force +[05/10/2026 02:14:42] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:14:42] launching puck at (-4.02, 2.97) with (280.32, -206.98) force +[05/10/2026 02:14:54] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:14:54] launching puck at (1.51, -4.77) with (-105.49, 332.10) force +[05/10/2026 02:14:59] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:14:59] launching puck at (1.01, -4.90) with (-70.26, 341.30) force +[05/10/2026 02:15:04] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:15:04] launching puck at (3.74, -3.32) with (-260.34, 231.61) force +[05/10/2026 02:15:11] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:15:11] launching puck at (-4.93, 0.86) with (343.24, -60.05) force +[05/10/2026 02:15:20] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:15:20] launching puck at (1.22, -4.85) with (-84.68, 338.01) force +[05/10/2026 02:15:30] force = 70 * 0.8000057 = 56.0004 +[05/10/2026 02:15:30] launching puck at (1.27, -2.89) with (-71.33, 161.86) force +[05/10/2026 02:15:35] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:15:35] launching puck at (-3.99, -3.02) with (277.74, 210.42) force +[05/10/2026 02:15:36] Red goal scored, red score is now 3 +[05/10/2026 02:15:37] Dedicated match PATCH success: 200 {"ok":true,"id":273} +[05/10/2026 02:15:38] Dedicated match winner PATCH success: 200 {"ok":true,"id":273,"winner_id":33,"economy":{"entry_fee_rc":21,"rc_prize":36,"participant_cc":100}} +[05/10/2026 02:15:43] Rematch requested +[05/10/2026 02:16:08] Rematch was confirmed, closing in 5 secs. new room : +[05/10/2026 02:16:08] {"ok":true,"entry_fee":42,"rc_prize":74,"for_red":{"Players":[{"Name":"choel","LastSeen":1778379368948,"l10_wins":5,"l10_losses":1,"UserId":33,"rc":0.0},{"Name":"lulu","LastSeen":1778379368948,"l10_wins":1,"l10_losses":5,"UserId":6,"rc":0.0}],"GameName":"soccar","Port":26085,"InitTime":1778379368948,"instance_started":true,"match_id":274,"entry_fee":42,"rc_prize":74,"your_team":"red"},"for_blue":{"Players":[{"Name":"choel","LastSeen":1778379368948,"l10_wins":5,"l10_losses":1,"UserId":33,"rc":0.0},{"Name":"lulu","LastSeen":1778379368948,"l10_wins":1,"l10_losses":5,"UserId":6,"rc":0.0}],"GameName":"soccar","Port":26085,"InitTime":1778379368948,"instance_started":true,"match_id":274,"entry_fee":42,"rc_prize":74,"your_team":"blue"},"your_team":""} +[05/10/2026 02:16:09] Active player connections: 1 +[05/10/2026 02:16:09] Active player connections: 0 +[05/10/2026 02:16:14] Server will be closed due to no players in, 60 +[05/10/2026 02:16:24] Server will be closed due to no players in, 50 +[05/10/2026 02:16:34] Server will be closed due to no players in, 40 +[05/10/2026 02:16:44] Server will be closed due to no players in, 30 +[05/10/2026 02:16:54] Server will be closed due to no players in, 20 +[05/10/2026 02:17:04] Server will be closed due to no players in, 10 +[05/10/2026 02:17:14] All players left, exiting +[05/10/2026 02:17:14] Dedicated match PATCH success: 200 {"ok":true,"id":273} diff --git a/games/soccar/soccar_Data/Logs/274.txt b/games/soccar/soccar_Data/Logs/274.txt new file mode 100644 index 0000000..a40448a --- /dev/null +++ b/games/soccar/soccar_Data/Logs/274.txt @@ -0,0 +1,74 @@ +[05/10/2026 02:16:10] Starting server at port 26085 +[05/10/2026 02:16:10] Failed to fetch red and blue names, isServer? +[05/10/2026 02:16:10] Starting auto close watchdog +[05/10/2026 02:16:10] Active player connections: 0 +[05/10/2026 02:16:13] Active player connections: 1 +[05/10/2026 02:16:13] Active player connections: 2 +[05/10/2026 02:16:13] Game started On Server +[05/10/2026 02:16:13] Client 15 set team to Red +[05/10/2026 02:16:13] Client 16 set team to Blue +[05/10/2026 02:16:13] Dedicated match PATCH success: 200 {"ok":true,"id":274} +[05/10/2026 02:16:14] Dedicated match PATCH success: 200 {"ok":true,"id":274} +[05/10/2026 02:16:25] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:16:25] launching puck at (0.31, -4.99) with (-21.76, 347.77) force +[05/10/2026 02:16:31] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:16:31] launching puck at (-3.30, 3.75) with (230.22, -261.57) force +[05/10/2026 02:16:36] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:16:36] launching puck at (-4.90, 0.97) with (341.82, -67.68) force +[05/10/2026 02:16:40] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:16:40] launching puck at (0.64, 4.96) with (-44.94, -345.54) force +[05/10/2026 02:16:44] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:16:44] launching puck at (5.00, -0.01) with (-348.45, 0.71) force +[05/10/2026 02:16:53] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:16:53] launching puck at (2.97, 4.02) with (-207.29, -280.09) force +[05/10/2026 02:17:09] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:17:09] launching puck at (4.84, -1.27) with (-336.99, 88.64) force +[05/10/2026 02:17:17] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:17:17] launching puck at (3.42, 3.65) with (-238.04, -254.47) force +[05/10/2026 02:17:18] Blue goal scored, blue score is now 1 +[05/10/2026 02:17:51] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:17:51] launching puck at (-0.21, 5.00) with (14.50, -348.15) force +[05/10/2026 02:17:55] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:17:55] launching puck at (3.66, -3.41) with (-254.75, 237.74) force +[05/10/2026 02:18:06] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:18:06] launching puck at (-3.16, 3.87) with (220.27, -270.00) force +[05/10/2026 02:18:17] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:18:17] launching puck at (-4.61, -1.93) with (321.35, 134.74) force +[05/10/2026 02:18:28] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:18:28] launching puck at (3.34, 3.72) with (-232.55, -259.50) force +[05/10/2026 02:18:34] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:18:34] launching puck at (0.92, -4.92) with (-63.81, 342.56) force +[05/10/2026 02:18:38] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:18:38] launching puck at (-0.13, 5.00) with (8.95, -348.34) force +[05/10/2026 02:18:45] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:18:45] launching puck at (2.89, -4.08) with (-201.39, 284.36) force +[05/10/2026 02:18:45] Active player connections: 1 +[05/10/2026 02:18:53] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:18:53] launching puck at (1.79, 4.67) with (-124.90, -325.30) force +[05/10/2026 02:19:14] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:19:14] launching puck at (-3.48, 3.59) with (242.22, -250.50) force +[05/10/2026 02:19:45] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:19:45] launching puck at (2.55, 4.30) with (-177.43, -299.90) force +[05/10/2026 02:20:38] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:20:38] launching puck at (-3.33, -3.73) with (232.27, 259.75) force +[05/10/2026 02:20:58] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:20:58] launching puck at (-4.82, 1.33) with (335.94, -92.55) force +[05/10/2026 02:21:19] force = 70 * 0.9748633 = 68.24043 +[05/10/2026 02:21:19] launching puck at (-1.21, 4.61) with (82.85, -314.85) force +[05/10/2026 02:21:20] Blue goal scored, blue score is now 2 +[05/10/2026 02:21:39] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:21:39] launching puck at (-0.18, 5.00) with (12.52, -348.23) force +[05/10/2026 02:21:59] force = 70 * 0.9955804 = 69.69063 +[05/10/2026 02:21:59] launching puck at (0.13, 5.00) with (-8.74, -348.34) force +[05/10/2026 02:22:00] Blue goal scored, blue score is now 3 +[05/10/2026 02:22:01] Dedicated match PATCH success: 200 {"ok":true,"id":274} +[05/10/2026 02:22:03] Dedicated match winner PATCH success: 200 {"ok":true,"id":274,"winner_id":6,"economy":{"entry_fee_rc":42,"rc_prize":74,"participant_cc":100}} +[05/10/2026 02:33:35] Active player connections: 0 +[05/10/2026 02:33:40] Server will be closed due to no players in, 60 +[05/10/2026 02:33:50] Server will be closed due to no players in, 50 +[05/10/2026 02:34:00] Server will be closed due to no players in, 40 +[05/10/2026 02:34:10] Server will be closed due to no players in, 30 +[05/10/2026 02:34:20] Server will be closed due to no players in, 20 +[05/10/2026 02:34:30] Server will be closed due to no players in, 10 +[05/10/2026 02:34:40] All players left, exiting +[05/10/2026 02:34:42] Dedicated match PATCH success: 200 {"ok":true,"id":274} diff --git a/games/soccar/soccar_Data/Logs/275.txt b/games/soccar/soccar_Data/Logs/275.txt new file mode 100644 index 0000000..9eb9422 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/275.txt @@ -0,0 +1,94 @@ +[05/11/2026 08:37:22] Starting server at port 26652 +[05/11/2026 08:37:22] Failed to fetch red and blue names, isServer? +[05/11/2026 08:37:22] Starting auto close watchdog +[05/11/2026 08:37:22] Active player connections: 0 +[05/11/2026 08:37:26] Active player connections: 1 +[05/11/2026 08:37:26] Client 15 set team to Blue +[05/11/2026 08:37:27] Dedicated match PATCH success: 200 {"ok":true,"id":275} +[05/11/2026 08:37:27] Active player connections: 2 +[05/11/2026 08:37:27] Game started On Server +[05/11/2026 08:37:27] Client 16 set team to Red +[05/11/2026 08:37:28] Dedicated match PATCH success: 200 {"ok":true,"id":275} +[05/11/2026 08:37:30] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:37:30] launching puck at (-0.06, -5.00) with (4.51, 348.42) force +[05/11/2026 08:37:35] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:37:35] launching puck at (-1.00, 4.90) with (69.63, -341.43) force +[05/11/2026 08:37:41] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:37:41] launching puck at (0.25, -4.99) with (-17.40, 348.02) force +[05/11/2026 08:37:41] Red goal scored, red score is now 1 +[05/11/2026 08:37:48] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:37:48] launching puck at (-0.11, 5.00) with (7.74, -348.37) force +[05/11/2026 08:37:54] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:37:54] launching puck at (5.00, -0.14) with (-348.31, 9.86) force +[05/11/2026 08:38:10] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:38:10] launching puck at (-0.72, 4.95) with (50.39, -344.79) force +[05/11/2026 08:38:11] Blue goal scored, blue score is now 1 +[05/11/2026 08:38:17] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:38:17] launching puck at (0.03, -5.00) with (-2.29, 348.45) force +[05/11/2026 08:38:26] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:38:26] launching puck at (0.14, 5.00) with (-9.93, -348.31) force +[05/11/2026 08:38:34] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:38:34] launching puck at (0.34, -4.99) with (-23.89, 347.63) force +[05/11/2026 08:38:40] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:38:40] launching puck at (-0.35, 4.99) with (24.42, -347.60) force +[05/11/2026 08:38:45] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:38:45] launching puck at (5.00, 0.02) with (-348.45, -1.43) force +[05/11/2026 08:38:49] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:38:49] launching puck at (0.00, 5.00) with (0.15, -348.45) force +[05/11/2026 08:38:55] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:38:55] launching puck at (5.00, -0.02) with (-348.45, 1.37) force +[05/11/2026 08:39:02] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:39:02] launching puck at (3.27, 3.78) with (-228.05, -263.47) force +[05/11/2026 08:39:09] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:39:09] launching puck at (0.06, -5.00) with (-4.32, 348.43) force +[05/11/2026 08:39:13] Client 16 sent emoji emote 4 +[05/11/2026 08:39:19] force = 70 * 0.9535298 = 66.74709 +[05/11/2026 08:39:19] launching puck at (1.00, -4.43) with (-66.57, 295.49) force +[05/11/2026 08:39:20] Red goal scored, red score is now 2 +[05/11/2026 08:39:25] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:39:25] launching puck at (-0.09, 5.00) with (6.19, -348.40) force +[05/11/2026 08:39:32] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:39:32] launching puck at (-1.61, 4.73) with (112.27, -329.87) force +[05/11/2026 08:39:39] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:39:39] launching puck at (-3.46, 3.61) with (241.26, -251.42) force +[05/11/2026 08:39:44] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:39:44] launching puck at (4.76, 1.53) with (-331.75, -106.58) force +[05/11/2026 08:39:50] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:39:50] launching puck at (4.95, -0.69) with (-345.12, 48.11) force +[05/11/2026 08:39:57] force = 70 * 0.9204898 = 64.43429 +[05/11/2026 08:39:57] launching puck at (4.19, -0.19) with (-269.83, 12.14) force +[05/11/2026 08:40:02] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:40:02] launching puck at (2.93, 4.05) with (-203.92, -282.55) force +[05/11/2026 08:40:08] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:40:08] launching puck at (-1.15, 4.87) with (80.22, -339.09) force +[05/11/2026 08:40:08] Blue goal scored, blue score is now 2 +[05/11/2026 08:40:12] Client 16 sent emoji emote 4 +[05/11/2026 08:40:14] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:40:14] launching puck at (-0.07, -5.00) with (4.97, 348.42) force +[05/11/2026 08:40:20] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:40:20] launching puck at (-0.46, 4.98) with (32.19, -346.96) force +[05/11/2026 08:40:25] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:40:25] launching puck at (1.04, -4.89) with (-72.79, 340.77) force +[05/11/2026 08:40:30] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:40:30] launching puck at (-0.48, 4.98) with (33.44, -346.84) force +[05/11/2026 08:40:35] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:40:35] launching puck at (1.83, -4.65) with (-127.79, 324.18) force +[05/11/2026 08:40:40] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:40:40] launching puck at (2.35, 4.41) with (-164.10, -307.39) force +[05/11/2026 08:40:45] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:40:45] launching puck at (-0.30, 4.99) with (20.64, -347.84) force +[05/11/2026 08:40:50] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:40:50] launching puck at (-0.76, 4.94) with (52.62, -344.46) force +[05/11/2026 08:40:51] Blue goal scored, blue score is now 3 +[05/11/2026 08:40:52] Dedicated match PATCH success: 200 {"ok":true,"id":275} +[05/11/2026 08:40:54] Dedicated match winner PATCH success: 200 {"ok":true,"id":275,"winner_id":6,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/11/2026 08:42:11] Active player connections: 1 +[05/11/2026 08:42:12] Active player connections: 0 +[05/11/2026 08:42:17] Server will be closed due to no players in, 60 +[05/11/2026 08:42:27] Server will be closed due to no players in, 50 +[05/11/2026 08:42:37] Server will be closed due to no players in, 40 +[05/11/2026 08:42:47] Server will be closed due to no players in, 30 +[05/11/2026 08:42:57] Server will be closed due to no players in, 20 +[05/11/2026 08:43:07] Server will be closed due to no players in, 10 +[05/11/2026 08:43:17] All players left, exiting +[05/11/2026 08:43:18] Dedicated match PATCH success: 200 {"ok":true,"id":275} diff --git a/games/soccar/soccar_Data/Logs/276.txt b/games/soccar/soccar_Data/Logs/276.txt new file mode 100644 index 0000000..08d89ec --- /dev/null +++ b/games/soccar/soccar_Data/Logs/276.txt @@ -0,0 +1,12 @@ +[05/11/2026 08:41:58] Starting server at port 26289 +[05/11/2026 08:41:59] Failed to fetch red and blue names, isServer? +[05/11/2026 08:41:59] Starting auto close watchdog +[05/11/2026 08:41:59] Active player connections: 0 +[05/11/2026 08:42:04] Server will be closed due to no players in, 60 +[05/11/2026 08:42:14] Server will be closed due to no players in, 50 +[05/11/2026 08:42:24] Server will be closed due to no players in, 40 +[05/11/2026 08:42:34] Server will be closed due to no players in, 30 +[05/11/2026 08:42:44] Server will be closed due to no players in, 20 +[05/11/2026 08:42:54] Server will be closed due to no players in, 10 +[05/11/2026 08:43:04] No players joined, exiting +[05/11/2026 08:43:04] Dedicated match PATCH success: 200 {"ok":true,"id":276} diff --git a/games/soccar/soccar_Data/Logs/277.txt b/games/soccar/soccar_Data/Logs/277.txt new file mode 100644 index 0000000..834c728 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/277.txt @@ -0,0 +1,12 @@ +[05/11/2026 08:42:32] Starting server at port 26475 +[05/11/2026 08:42:32] Failed to fetch red and blue names, isServer? +[05/11/2026 08:42:32] Starting auto close watchdog +[05/11/2026 08:42:32] Active player connections: 0 +[05/11/2026 08:42:37] Server will be closed due to no players in, 60 +[05/11/2026 08:42:47] Server will be closed due to no players in, 50 +[05/11/2026 08:42:57] Server will be closed due to no players in, 40 +[05/11/2026 08:43:07] Server will be closed due to no players in, 30 +[05/11/2026 08:43:17] Server will be closed due to no players in, 20 +[05/11/2026 08:43:27] Server will be closed due to no players in, 10 +[05/11/2026 08:43:37] No players joined, exiting +[05/11/2026 08:43:37] Dedicated match PATCH success: 200 {"ok":true,"id":277} diff --git a/games/soccar/soccar_Data/Logs/278.txt b/games/soccar/soccar_Data/Logs/278.txt new file mode 100644 index 0000000..73e6c16 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/278.txt @@ -0,0 +1,12 @@ +[05/11/2026 08:43:19] Starting server at port 26595 +[05/11/2026 08:43:19] Failed to fetch red and blue names, isServer? +[05/11/2026 08:43:19] Starting auto close watchdog +[05/11/2026 08:43:19] Active player connections: 0 +[05/11/2026 08:43:24] Server will be closed due to no players in, 60 +[05/11/2026 08:43:34] Server will be closed due to no players in, 50 +[05/11/2026 08:43:44] Server will be closed due to no players in, 40 +[05/11/2026 08:43:54] Server will be closed due to no players in, 30 +[05/11/2026 08:44:04] Server will be closed due to no players in, 20 +[05/11/2026 08:44:14] Server will be closed due to no players in, 10 +[05/11/2026 08:44:24] No players joined, exiting +[05/11/2026 08:44:24] Dedicated match PATCH success: 200 {"ok":true,"id":278} diff --git a/games/soccar/soccar_Data/Logs/279.txt b/games/soccar/soccar_Data/Logs/279.txt new file mode 100644 index 0000000..bf43f62 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/279.txt @@ -0,0 +1,55 @@ +[05/11/2026 08:44:11] Starting server at port 26767 +[05/11/2026 08:44:11] Failed to fetch red and blue names, isServer? +[05/11/2026 08:44:11] Starting auto close watchdog +[05/11/2026 08:44:11] Active player connections: 0 +[05/11/2026 08:44:16] Server will be closed due to no players in, 60 +[05/11/2026 08:44:16] Active player connections: 1 +[05/11/2026 08:44:17] Client 15 set team to Blue +[05/11/2026 08:44:17] Active player connections: 2 +[05/11/2026 08:44:17] Game started On Server +[05/11/2026 08:44:17] Dedicated match PATCH success: 200 {"ok":true,"id":279} +[05/11/2026 08:44:17] Client 16 set team to Red +[05/11/2026 08:44:17] Dedicated match PATCH success: 200 {"ok":true,"id":279} +[05/11/2026 08:44:20] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:44:20] launching puck at (-0.13, -5.00) with (8.78, 348.34) force +[05/11/2026 08:44:24] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:44:24] launching puck at (-1.40, 4.80) with (97.30, -334.59) force +[05/11/2026 08:44:29] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:44:29] launching puck at (-3.89, -3.15) with (270.76, 219.34) force +[05/11/2026 08:44:34] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:44:34] launching puck at (-3.07, 3.95) with (213.89, -275.08) force +[05/11/2026 08:44:39] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:44:39] launching puck at (-0.20, -5.00) with (13.62, 348.19) force +[05/11/2026 08:44:43] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:44:43] launching puck at (0.16, 5.00) with (-11.08, -348.28) force +[05/11/2026 08:44:48] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:44:48] launching puck at (-4.64, -1.87) with (323.15, 130.37) force +[05/11/2026 08:44:48] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:44:48] launching puck at (-4.78, -1.47) with (333.09, 102.33) force +[05/11/2026 08:44:48] Active player connections: 1 +[05/11/2026 08:44:57] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:44:57] launching puck at (-4.56, 2.06) with (317.45, -143.68) force +[05/11/2026 08:44:58] Blue goal scored, blue score is now 1 +[05/11/2026 08:45:20] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:45:20] launching puck at (-0.09, 5.00) with (6.07, -348.40) force +[05/11/2026 08:45:40] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:45:40] launching puck at (0.93, 4.91) with (-64.81, -342.37) force +[05/11/2026 08:45:40] Blue goal scored, blue score is now 2 +[05/11/2026 08:46:00] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:46:00] launching puck at (0.14, 5.00) with (-9.92, -348.31) force +[05/11/2026 08:46:19] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:46:19] launching puck at (0.11, 5.00) with (-8.01, -348.36) force +[05/11/2026 08:46:38] force = 70 * 0.5230897 = 36.61628 +[05/11/2026 08:46:38] launching puck at (0.73, 1.49) with (-26.87, -54.52) force +[05/11/2026 08:46:38] Blue goal scored, blue score is now 3 +[05/11/2026 08:46:38] Dedicated match PATCH success: 200 {"ok":true,"id":279} +[05/11/2026 08:46:40] Dedicated match winner PATCH success: 200 {"ok":true,"id":279,"winner_id":6,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/11/2026 08:47:08] Active player connections: 0 +[05/11/2026 08:47:13] Server will be closed due to no players in, 60 +[05/11/2026 08:47:23] Server will be closed due to no players in, 50 +[05/11/2026 08:47:33] Server will be closed due to no players in, 40 +[05/11/2026 08:47:43] Server will be closed due to no players in, 30 +[05/11/2026 08:47:53] Server will be closed due to no players in, 20 +[05/11/2026 08:48:03] Server will be closed due to no players in, 10 +[05/11/2026 08:48:13] All players left, exiting +[05/11/2026 08:48:14] Dedicated match PATCH success: 200 {"ok":true,"id":279} diff --git a/games/soccar/soccar_Data/Logs/28.txt b/games/soccar/soccar_Data/Logs/28.txt new file mode 100644 index 0000000..3220201 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/28.txt @@ -0,0 +1,18 @@ +[05/16/2026 17:55:21] Starting server at port 26591 +[05/16/2026 17:55:21] Mirror server exception logging enabled +[05/16/2026 17:55:21] Failed to fetch red and blue names, isServer? +[05/16/2026 17:55:21] Starting auto close watchdog +[05/16/2026 17:55:21] Active player connections: 0 +[05/16/2026 17:55:24] Active player connections: 1 +[05/16/2026 17:55:25] Client 15 set team to Red +[05/16/2026 17:55:25] Dedicated match PATCH success: 200 {"ok":true,"id":28} +[05/16/2026 17:55:32] Mirror server: client disconnected (connId=1441816030) +[05/16/2026 17:55:32] Active player connections: 0 +[05/16/2026 17:55:37] Server will be closed due to no players in, 60 +[05/16/2026 17:55:47] Server will be closed due to no players in, 50 +[05/16/2026 17:55:57] Server will be closed due to no players in, 40 +[05/16/2026 17:56:07] Server will be closed due to no players in, 30 +[05/16/2026 17:56:17] Server will be closed due to no players in, 20 +[05/16/2026 17:56:27] Server will be closed due to no players in, 10 +[05/16/2026 17:56:37] All players left, exiting +[05/16/2026 17:56:38] Dedicated match PATCH success: 200 {"ok":true,"id":28} diff --git a/games/soccar/soccar_Data/Logs/280.txt b/games/soccar/soccar_Data/Logs/280.txt new file mode 100644 index 0000000..4c0db1d --- /dev/null +++ b/games/soccar/soccar_Data/Logs/280.txt @@ -0,0 +1,16 @@ +[05/11/2026 08:46:56] Starting server at port 26873 +[05/11/2026 08:46:56] Failed to fetch red and blue names, isServer? +[05/11/2026 08:46:56] Starting auto close watchdog +[05/11/2026 08:46:56] Active player connections: 0 +[05/11/2026 08:47:00] Active player connections: 1 +[05/11/2026 08:47:01] Client 15 set team to Red +[05/11/2026 08:47:01] Dedicated match PATCH success: 200 {"ok":true,"id":280} +[05/11/2026 08:47:18] Active player connections: 0 +[05/11/2026 08:47:23] Server will be closed due to no players in, 60 +[05/11/2026 08:47:33] Server will be closed due to no players in, 50 +[05/11/2026 08:47:43] Server will be closed due to no players in, 40 +[05/11/2026 08:47:53] Server will be closed due to no players in, 30 +[05/11/2026 08:48:03] Server will be closed due to no players in, 20 +[05/11/2026 08:48:13] Server will be closed due to no players in, 10 +[05/11/2026 08:48:23] All players left, exiting +[05/11/2026 08:48:23] Dedicated match PATCH success: 200 {"ok":true,"id":280} diff --git a/games/soccar/soccar_Data/Logs/281.txt b/games/soccar/soccar_Data/Logs/281.txt new file mode 100644 index 0000000..92908de --- /dev/null +++ b/games/soccar/soccar_Data/Logs/281.txt @@ -0,0 +1,16 @@ +[05/11/2026 08:47:29] Starting server at port 26247 +[05/11/2026 08:47:29] Failed to fetch red and blue names, isServer? +[05/11/2026 08:47:29] Starting auto close watchdog +[05/11/2026 08:47:29] Active player connections: 0 +[05/11/2026 08:47:34] Active player connections: 1 +[05/11/2026 08:47:34] Client 15 set team to Red +[05/11/2026 08:47:35] Dedicated match PATCH success: 200 {"ok":true,"id":281} +[05/11/2026 08:48:06] Active player connections: 0 +[05/11/2026 08:48:11] Server will be closed due to no players in, 60 +[05/11/2026 08:48:21] Server will be closed due to no players in, 50 +[05/11/2026 08:48:31] Server will be closed due to no players in, 40 +[05/11/2026 08:48:41] Server will be closed due to no players in, 30 +[05/11/2026 08:48:51] Server will be closed due to no players in, 20 +[05/11/2026 08:49:01] Server will be closed due to no players in, 10 +[05/11/2026 08:49:11] All players left, exiting +[05/11/2026 08:49:11] Dedicated match PATCH success: 200 {"ok":true,"id":281} diff --git a/games/soccar/soccar_Data/Logs/282.txt b/games/soccar/soccar_Data/Logs/282.txt new file mode 100644 index 0000000..ac3fddc --- /dev/null +++ b/games/soccar/soccar_Data/Logs/282.txt @@ -0,0 +1,16 @@ +[05/11/2026 08:48:44] Starting server at port 26264 +[05/11/2026 08:48:44] Failed to fetch red and blue names, isServer? +[05/11/2026 08:48:44] Starting auto close watchdog +[05/11/2026 08:48:44] Active player connections: 0 +[05/11/2026 08:48:49] Active player connections: 1 +[05/11/2026 08:48:49] Client 15 set team to Red +[05/11/2026 08:48:50] Dedicated match PATCH success: 200 {"ok":true,"id":282} +[05/11/2026 08:49:13] Active player connections: 0 +[05/11/2026 08:49:18] Server will be closed due to no players in, 60 +[05/11/2026 08:49:28] Server will be closed due to no players in, 50 +[05/11/2026 08:49:38] Server will be closed due to no players in, 40 +[05/11/2026 08:49:48] Server will be closed due to no players in, 30 +[05/11/2026 08:49:58] Server will be closed due to no players in, 20 +[05/11/2026 08:50:08] Server will be closed due to no players in, 10 +[05/11/2026 08:50:18] All players left, exiting +[05/11/2026 08:50:18] Dedicated match PATCH success: 200 {"ok":true,"id":282} diff --git a/games/soccar/soccar_Data/Logs/283.txt b/games/soccar/soccar_Data/Logs/283.txt new file mode 100644 index 0000000..1f9cd29 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/283.txt @@ -0,0 +1,81 @@ +[05/11/2026 08:49:36] Starting server at port 26494 +[05/11/2026 08:49:36] Failed to fetch red and blue names, isServer? +[05/11/2026 08:49:36] Starting auto close watchdog +[05/11/2026 08:49:36] Active player connections: 0 +[05/11/2026 08:49:41] Active player connections: 1 +[05/11/2026 08:49:41] Client 15 set team to Blue +[05/11/2026 08:49:41] Dedicated match PATCH success: 200 {"ok":true,"id":283} +[05/11/2026 08:49:43] Active player connections: 2 +[05/11/2026 08:49:43] Game started On Server +[05/11/2026 08:49:43] Client 16 set team to Red +[05/11/2026 08:49:43] Dedicated match PATCH success: 200 {"ok":true,"id":283} +[05/11/2026 08:49:45] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:49:45] launching puck at (-0.18, -5.00) with (12.43, 348.23) force +[05/11/2026 08:49:50] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:49:50] launching puck at (-2.84, 4.11) with (198.06, -286.69) force +[05/11/2026 08:49:54] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:49:54] launching puck at (-4.26, -2.61) with (297.15, 182.00) force +[05/11/2026 08:49:59] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:49:59] launching puck at (-0.71, -4.95) with (49.39, 344.93) force +[05/11/2026 08:50:04] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:50:04] launching puck at (-0.04, -5.00) with (2.71, 348.44) force +[05/11/2026 08:50:04] Red goal scored, red score is now 1 +[05/11/2026 08:50:09] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:50:09] launching puck at (0.01, 5.00) with (-0.58, -348.45) force +[05/11/2026 08:50:15] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:50:15] launching puck at (2.17, -4.50) with (-151.17, 313.95) force +[05/11/2026 08:50:22] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:50:22] launching puck at (-2.12, 4.53) with (147.66, -315.62) force +[05/11/2026 08:50:28] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:50:28] launching puck at (-2.25, -4.47) with (156.56, 311.30) force +[05/11/2026 08:50:37] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:50:37] launching puck at (-0.30, 4.99) with (21.09, -347.81) force +[05/11/2026 08:50:37] Blue goal scored, blue score is now 1 +[05/11/2026 08:50:42] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:50:42] launching puck at (0.03, -5.00) with (-2.28, 348.45) force +[05/11/2026 08:50:48] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:50:48] launching puck at (2.39, 4.39) with (-166.62, -306.03) force +[05/11/2026 08:50:54] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:50:54] launching puck at (1.75, -4.68) with (-122.01, 326.39) force +[05/11/2026 08:50:55] Red goal scored, red score is now 2 +[05/11/2026 08:51:00] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:51:00] launching puck at (0.14, 5.00) with (-9.83, -348.31) force +[05/11/2026 08:51:05] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:51:05] launching puck at (1.71, -4.70) with (-119.12, 327.46) force +[05/11/2026 08:51:10] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:51:10] launching puck at (-4.99, -0.38) with (347.45, 26.44) force +[05/11/2026 08:51:17] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:51:17] launching puck at (-2.08, -4.54) with (145.28, 316.72) force +[05/11/2026 08:51:22] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:51:22] launching puck at (-3.70, 3.36) with (258.07, -234.14) force +[05/11/2026 08:51:28] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:51:28] launching puck at (-3.16, 3.87) with (220.45, -269.86) force +[05/11/2026 08:51:32] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:51:32] launching puck at (-4.10, 2.86) with (286.01, -199.05) force +[05/11/2026 08:51:37] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:51:37] launching puck at (4.99, -0.34) with (-347.65, 23.66) force +[05/11/2026 08:51:43] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:51:43] launching puck at (-4.99, 0.37) with (347.51, -25.55) force +[05/11/2026 08:51:48] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:51:48] launching puck at (-2.50, -4.33) with (174.28, 301.74) force +[05/11/2026 08:51:59] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:51:59] launching puck at (3.36, 3.70) with (-234.03, -258.16) force +[05/11/2026 08:52:04] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:52:04] launching puck at (4.95, 0.67) with (-345.29, -46.83) force +[05/11/2026 08:52:11] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:52:11] launching puck at (-0.75, -4.94) with (52.48, 344.48) force +[05/11/2026 08:52:22] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:52:22] launching puck at (0.32, -4.99) with (-22.24, 347.74) force +[05/11/2026 08:52:22] Red goal scored, red score is now 3 +[05/11/2026 08:52:23] Dedicated match PATCH success: 200 {"ok":true,"id":283} +[05/11/2026 08:52:25] Dedicated match winner PATCH success: 200 {"ok":true,"id":283,"winner_id":6,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/11/2026 08:52:58] Active player connections: 1 +[05/11/2026 08:52:59] Active player connections: 0 +[05/11/2026 08:53:04] Server will be closed due to no players in, 60 +[05/11/2026 08:53:14] Server will be closed due to no players in, 50 +[05/11/2026 08:53:24] Server will be closed due to no players in, 40 +[05/11/2026 08:53:34] Server will be closed due to no players in, 30 +[05/11/2026 08:53:44] Server will be closed due to no players in, 20 +[05/11/2026 08:53:54] Server will be closed due to no players in, 10 +[05/11/2026 08:54:04] All players left, exiting +[05/11/2026 08:54:05] Dedicated match PATCH success: 200 {"ok":true,"id":283} diff --git a/games/soccar/soccar_Data/Logs/284.txt b/games/soccar/soccar_Data/Logs/284.txt new file mode 100644 index 0000000..eef3785 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/284.txt @@ -0,0 +1,134 @@ +[05/11/2026 08:53:12] Starting server at port 26073 +[05/11/2026 08:53:12] Failed to fetch red and blue names, isServer? +[05/11/2026 08:53:12] Starting auto close watchdog +[05/11/2026 08:53:12] Active player connections: 0 +[05/11/2026 08:53:17] Active player connections: 1 +[05/11/2026 08:53:17] Client 15 set team to Blue +[05/11/2026 08:53:17] Dedicated match PATCH success: 200 {"ok":true,"id":284} +[05/11/2026 08:53:18] Active player connections: 2 +[05/11/2026 08:53:18] Game started On Server +[05/11/2026 08:53:19] Client 16 set team to Red +[05/11/2026 08:53:19] Dedicated match PATCH success: 200 {"ok":true,"id":284} +[05/11/2026 08:53:21] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:53:21] launching puck at (-0.02, -5.00) with (1.56, 348.45) force +[05/11/2026 08:53:27] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:53:27] launching puck at (-1.32, 4.82) with (91.99, -336.09) force +[05/11/2026 08:53:33] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:53:33] launching puck at (2.90, -4.07) with (-202.05, 283.89) force +[05/11/2026 08:53:39] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:53:39] launching puck at (0.92, 4.91) with (-64.23, -342.48) force +[05/11/2026 08:53:45] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:53:45] launching puck at (4.34, -2.48) with (-302.66, 172.67) force +[05/11/2026 08:53:50] force = 70 * 0.9341501 = 65.39051 +[05/11/2026 08:53:50] launching puck at (4.33, -0.07) with (-283.25, 4.40) force +[05/11/2026 08:53:55] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:53:55] launching puck at (0.50, 4.97) with (-34.89, -346.70) force +[05/11/2026 08:54:02] force = 70 * 0.915345 = 64.07415 +[05/11/2026 08:54:02] launching puck at (-3.94, -1.28) with (252.20, 82.28) force +[05/11/2026 08:54:06] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:54:06] launching puck at (-1.29, -4.83) with (89.77, 336.69) force +[05/11/2026 08:54:11] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:54:11] launching puck at (-4.76, -1.53) with (331.70, 106.75) force +[05/11/2026 08:54:18] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:54:18] launching puck at (-0.05, 5.00) with (3.41, -348.44) force +[05/11/2026 08:54:24] force = 70 * 0.760304 = 53.22128 +[05/11/2026 08:54:24] launching puck at (-0.42, -2.86) with (22.13, 152.21) force +[05/11/2026 08:54:31] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:54:31] launching puck at (-4.76, -1.54) with (331.55, 107.21) force +[05/11/2026 08:54:36] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:54:36] launching puck at (1.58, 4.74) with (-110.45, -330.49) force +[05/11/2026 08:54:36] Blue goal scored, blue score is now 1 +[05/11/2026 08:54:42] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:54:42] launching puck at (0.00, -5.00) with (0.02, 348.45) force +[05/11/2026 08:54:49] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:54:49] launching puck at (-2.74, -4.18) with (190.73, 291.62) force +[05/11/2026 08:54:54] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:54:54] launching puck at (-2.18, -4.50) with (151.93, 313.59) force +[05/11/2026 08:55:00] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:55:00] launching puck at (-3.86, 3.18) with (269.07, -221.41) force +[05/11/2026 08:55:05] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:55:05] launching puck at (-4.67, -1.78) with (325.51, 124.34) force +[05/11/2026 08:55:09] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:55:09] launching puck at (4.03, 2.96) with (-281.06, -205.97) force +[05/11/2026 08:55:14] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:55:14] launching puck at (2.66, -4.24) with (-185.07, 295.24) force +[05/11/2026 08:55:18] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:55:18] launching puck at (4.89, 1.05) with (-340.70, -73.12) force +[05/11/2026 08:55:24] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:55:24] launching puck at (3.42, -3.64) with (-238.65, 253.90) force +[05/11/2026 08:55:31] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:55:31] launching puck at (-1.53, -4.76) with (106.31, 331.84) force +[05/11/2026 08:55:36] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:55:36] launching puck at (3.86, -3.18) with (-268.90, 221.61) force +[05/11/2026 08:55:41] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:55:41] launching puck at (4.05, 2.93) with (-282.18, -204.44) force +[05/11/2026 08:55:46] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:55:46] launching puck at (3.40, -3.67) with (-236.75, 255.68) force +[05/11/2026 08:56:02] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:56:02] launching puck at (0.56, -4.97) with (-39.18, 346.24) force +[05/11/2026 08:56:07] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:56:07] launching puck at (-4.20, -2.71) with (293.03, 188.56) force +[05/11/2026 08:56:07] Red goal scored, red score is now 1 +[05/11/2026 08:56:12] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:56:12] launching puck at (0.18, 5.00) with (-12.76, -348.22) force +[05/11/2026 08:56:15] Client 15 sent text emote Nice shot! +[05/11/2026 08:56:16] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:56:16] launching puck at (2.66, -4.23) with (-185.63, 294.89) force +[05/11/2026 08:56:21] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:56:21] launching puck at (4.90, 1.01) with (-341.31, -70.18) force +[05/11/2026 08:56:26] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:56:26] launching puck at (1.01, -4.90) with (-70.24, 341.30) force +[05/11/2026 08:56:31] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:56:31] launching puck at (0.68, 4.95) with (-47.38, -345.22) force +[05/11/2026 08:56:31] Blue goal scored, blue score is now 2 +[05/11/2026 08:56:37] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:56:37] launching puck at (0.01, -5.00) with (-1.01, 348.45) force +[05/11/2026 08:56:43] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:56:43] launching puck at (0.74, 4.94) with (-51.90, -344.57) force +[05/11/2026 08:56:48] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:56:48] launching puck at (0.17, -5.00) with (-12.13, 348.24) force +[05/11/2026 08:56:53] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:56:53] launching puck at (1.61, 4.73) with (-112.48, -329.80) force +[05/11/2026 08:56:58] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:56:58] launching puck at (-3.64, -3.43) with (253.68, 238.89) force +[05/11/2026 08:57:04] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:57:04] launching puck at (-4.52, 2.14) with (314.97, -149.04) force +[05/11/2026 08:57:10] force = 70 * 0.7418249 = 51.92774 +[05/11/2026 08:57:10] launching puck at (2.55, 1.08) with (-132.66, -56.22) force +[05/11/2026 08:57:14] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:57:14] launching puck at (2.22, 4.48) with (-154.43, -312.36) force +[05/11/2026 08:57:19] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:57:19] launching puck at (3.89, -3.14) with (-270.93, 219.13) force +[05/11/2026 08:57:24] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:57:24] launching puck at (4.98, 0.45) with (-347.03, -31.41) force +[05/11/2026 08:57:30] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:57:30] launching puck at (1.39, -4.80) with (-97.06, 334.66) force +[05/11/2026 08:57:39] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:57:39] launching puck at (-0.87, -4.92) with (60.89, 343.09) force +[05/11/2026 08:57:46] force = 70 * 0.6428587 = 45.00011 +[05/11/2026 08:57:46] launching puck at (-1.96, 1.07) with (88.29, -48.27) force +[05/11/2026 08:57:51] force = 70 * 0.7481352 = 52.36946 +[05/11/2026 08:57:51] launching puck at (-2.81, 0.07) with (147.28, -3.90) force +[05/11/2026 08:57:56] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:57:56] launching puck at (4.14, -2.81) with (-288.36, 195.63) force +[05/11/2026 08:58:01] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:58:01] launching puck at (-2.17, -4.50) with (151.54, 313.78) force +[05/11/2026 08:58:06] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:58:06] launching puck at (1.35, -4.81) with (-94.33, 335.44) force +[05/11/2026 08:58:10] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:58:10] launching puck at (1.47, 4.78) with (-102.72, -332.97) force +[05/11/2026 08:58:10] Blue goal scored, blue score is now 3 +[05/11/2026 08:58:11] Dedicated match PATCH success: 200 {"ok":true,"id":284} +[05/11/2026 08:58:13] Dedicated match winner PATCH success: 200 {"ok":true,"id":284,"winner_id":33,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/11/2026 08:58:21] Rematch requested +[05/11/2026 08:58:34] Rematch was confirmed, closing in 5 secs. new room : +[05/11/2026 08:58:34] {"ok":true,"entry_fee":80,"rc_prize":130,"for_red":{"Players":[{"Name":"lulu","LastSeen":1778489914359,"l10_wins":2,"l10_losses":1,"UserId":6,"rc":0.0},{"Name":"choel","LastSeen":1778489914359,"l10_wins":1,"l10_losses":2,"UserId":33,"rc":0.0}],"GameName":"soccar","Port":26696,"InitTime":1778489914359,"instance_started":true,"match_id":285,"entry_fee":80,"rc_prize":130,"your_team":"red"},"for_blue":{"Players":[{"Name":"lulu","LastSeen":1778489914359,"l10_wins":2,"l10_losses":1,"UserId":6,"rc":0.0},{"Name":"choel","LastSeen":1778489914359,"l10_wins":1,"l10_losses":2,"UserId":33,"rc":0.0}],"GameName":"soccar","Port":26696,"InitTime":1778489914359,"instance_started":true,"match_id":285,"entry_fee":80,"rc_prize":130,"your_team":"blue"},"your_team":""} +[05/11/2026 08:58:34] Active player connections: 0 +[05/11/2026 08:58:39] Server will be closed due to no players in, 60 +[05/11/2026 08:58:49] Server will be closed due to no players in, 50 +[05/11/2026 08:58:59] Server will be closed due to no players in, 40 +[05/11/2026 08:59:09] Server will be closed due to no players in, 30 +[05/11/2026 08:59:19] Server will be closed due to no players in, 20 +[05/11/2026 08:59:29] Server will be closed due to no players in, 10 +[05/11/2026 08:59:39] All players left, exiting +[05/11/2026 08:59:39] Dedicated match PATCH success: 200 {"ok":true,"id":284} diff --git a/games/soccar/soccar_Data/Logs/285.txt b/games/soccar/soccar_Data/Logs/285.txt new file mode 100644 index 0000000..1f839fa --- /dev/null +++ b/games/soccar/soccar_Data/Logs/285.txt @@ -0,0 +1,122 @@ +[05/11/2026 08:58:35] Starting server at port 26696 +[05/11/2026 08:58:35] Failed to fetch red and blue names, isServer? +[05/11/2026 08:58:35] Starting auto close watchdog +[05/11/2026 08:58:35] Active player connections: 0 +[05/11/2026 08:58:38] Active player connections: 1 +[05/11/2026 08:58:38] Active player connections: 2 +[05/11/2026 08:58:38] Game started On Server +[05/11/2026 08:58:39] Client 15 set team to Blue +[05/11/2026 08:58:39] Client 16 set team to Red +[05/11/2026 08:58:39] Dedicated match PATCH success: 200 {"ok":true,"id":285} +[05/11/2026 08:58:39] Dedicated match PATCH success: 200 {"ok":true,"id":285} +[05/11/2026 08:58:41] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:58:41] launching puck at (-0.16, -5.00) with (11.11, 348.28) force +[05/11/2026 08:58:47] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:58:47] launching puck at (3.34, 3.72) with (-232.70, -259.37) force +[05/11/2026 08:58:53] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:58:53] launching puck at (4.55, -2.07) with (-317.28, 144.06) force +[05/11/2026 08:58:59] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:58:59] launching puck at (3.96, 3.05) with (-276.19, -212.46) force +[05/11/2026 08:59:04] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:59:04] launching puck at (3.06, -3.96) with (-213.04, 275.74) force +[05/11/2026 08:59:08] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:59:08] launching puck at (1.84, 4.65) with (-128.31, -323.97) force +[05/11/2026 08:59:13] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:59:13] launching puck at (4.98, 0.44) with (-347.07, -30.96) force +[05/11/2026 08:59:17] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:59:17] launching puck at (-0.86, 4.93) with (59.76, -343.29) force +[05/11/2026 08:59:22] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:59:22] launching puck at (-1.30, -4.83) with (90.80, 336.42) force +[05/11/2026 08:59:26] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:59:26] launching puck at (-4.75, -1.57) with (330.78, 109.56) force +[05/11/2026 08:59:35] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:59:35] launching puck at (-2.52, 4.32) with (175.54, -301.01) force +[05/11/2026 08:59:41] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:59:41] launching puck at (1.55, 4.75) with (-108.07, -331.27) force +[05/11/2026 08:59:42] Blue goal scored, blue score is now 1 +[05/11/2026 08:59:48] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:59:48] launching puck at (0.05, -5.00) with (-3.68, 348.43) force +[05/11/2026 08:59:55] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 08:59:55] launching puck at (-4.91, -0.92) with (342.51, 64.08) force +[05/11/2026 09:00:00] force = 70 * 0.9256641 = 64.79649 +[05/11/2026 09:00:00] launching puck at (-4.24, -0.13) with (274.91, 8.21) force +[05/11/2026 09:00:06] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:00:06] launching puck at (-4.99, -0.28) with (347.91, 19.39) force +[05/11/2026 09:00:10] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:00:10] launching puck at (-0.49, -4.98) with (34.36, 346.76) force +[05/11/2026 09:00:14] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:00:14] launching puck at (-4.14, 2.80) with (288.56, -195.33) force +[05/11/2026 09:00:18] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:00:18] launching puck at (-1.86, -4.64) with (129.32, 323.57) force +[05/11/2026 09:00:24] force = 70 * 0.980042 = 68.60294 +[05/11/2026 09:00:24] launching puck at (2.52, 4.12) with (-172.91, -282.51) force +[05/11/2026 09:00:29] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:00:29] launching puck at (0.32, -4.99) with (-22.60, 347.72) force +[05/11/2026 09:00:34] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:00:34] launching puck at (0.80, -4.94) with (-55.91, 343.94) force +[05/11/2026 09:00:42] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:00:42] launching puck at (4.40, -2.38) with (-306.53, 165.71) force +[05/11/2026 09:00:47] force = 70 * 0.6801286 = 47.609 +[05/11/2026 09:00:47] launching puck at (-2.42, 0.16) with (115.20, -7.54) force +[05/11/2026 09:00:51] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:00:51] launching puck at (-1.76, -4.68) with (122.87, 326.07) force +[05/11/2026 09:00:51] Red goal scored, red score is now 1 +[05/11/2026 09:00:56] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:00:56] launching puck at (0.01, 5.00) with (-0.39, -348.45) force +[05/11/2026 09:01:02] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:01:02] launching puck at (1.68, -4.71) with (-117.42, 328.07) force +[05/11/2026 09:01:07] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:01:07] launching puck at (3.12, 3.91) with (-217.42, -272.30) force +[05/11/2026 09:01:12] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:01:12] launching puck at (4.60, -1.96) with (-320.49, 136.78) force +[05/11/2026 09:01:18] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:01:18] launching puck at (-0.30, 4.99) with (20.69, -347.84) force +[05/11/2026 09:01:23] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:01:23] launching puck at (1.68, 4.71) with (-116.78, -328.30) force +[05/11/2026 09:01:27] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:01:27] launching puck at (4.63, 1.89) with (-322.51, -131.95) force +[05/11/2026 09:01:33] force = 70 * 0.974358 = 68.20506 +[05/11/2026 09:01:33] launching puck at (4.03, 2.55) with (-274.77, -173.60) force +[05/11/2026 09:01:38] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:01:38] launching puck at (0.84, -4.93) with (-58.67, 343.48) force +[05/11/2026 09:01:42] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:01:42] launching puck at (-0.19, -5.00) with (13.30, 348.20) force +[05/11/2026 09:01:43] Red goal scored, red score is now 2 +[05/11/2026 09:01:48] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:01:48] launching puck at (0.02, 5.00) with (-1.26, -348.45) force +[05/11/2026 09:01:55] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:01:55] launching puck at (-2.34, 4.42) with (163.06, -307.95) force +[05/11/2026 09:01:59] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:01:59] launching puck at (-1.69, 4.71) with (117.59, -328.01) force +[05/11/2026 09:02:05] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:02:05] launching puck at (4.99, -0.24) with (-348.05, 16.85) force +[05/11/2026 09:02:09] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:02:09] launching puck at (-0.97, 4.90) with (67.60, -341.83) force +[05/11/2026 09:02:13] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:02:13] launching puck at (1.78, -4.67) with (-123.72, 325.75) force +[05/11/2026 09:02:20] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:02:20] launching puck at (0.52, 4.97) with (-36.09, -346.58) force +[05/11/2026 09:02:25] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:02:25] launching puck at (0.12, 5.00) with (-8.14, -348.36) force +[05/11/2026 09:02:30] Client 15 sent text emote What a save! +[05/11/2026 09:02:33] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:02:33] launching puck at (3.50, 3.57) with (-244.10, -248.67) force +[05/11/2026 09:02:42] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:02:42] launching puck at (-0.41, 4.98) with (28.69, -347.27) force +[05/11/2026 09:02:48] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:02:48] launching puck at (1.21, -4.85) with (-84.11, 338.15) force +[05/11/2026 09:02:55] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:02:55] launching puck at (0.75, -4.94) with (-52.36, 344.50) force +[05/11/2026 09:02:56] Red goal scored, red score is now 3 +[05/11/2026 09:02:57] Dedicated match PATCH success: 200 {"ok":true,"id":285} +[05/11/2026 09:02:58] Dedicated match winner PATCH success: 200 {"ok":true,"id":285,"winner_id":6,"economy":{"entry_fee_rc":80,"rc_prize":130,"participant_cc":100}} +[05/11/2026 09:03:33] Active player connections: 1 +[05/11/2026 09:03:33] Active player connections: 0 +[05/11/2026 09:03:38] Server will be closed due to no players in, 60 +[05/11/2026 09:03:48] Server will be closed due to no players in, 50 +[05/11/2026 09:03:58] Server will be closed due to no players in, 40 +[05/11/2026 09:04:08] Server will be closed due to no players in, 30 +[05/11/2026 09:04:18] Server will be closed due to no players in, 20 +[05/11/2026 09:04:28] Server will be closed due to no players in, 10 +[05/11/2026 09:04:38] All players left, exiting +[05/11/2026 09:04:39] Dedicated match PATCH success: 200 {"ok":true,"id":285} diff --git a/games/soccar/soccar_Data/Logs/286.txt b/games/soccar/soccar_Data/Logs/286.txt new file mode 100644 index 0000000..707fca7 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/286.txt @@ -0,0 +1,95 @@ +[05/11/2026 09:04:05] Starting server at port 26762 +[05/11/2026 09:04:05] Failed to fetch red and blue names, isServer? +[05/11/2026 09:04:05] Starting auto close watchdog +[05/11/2026 09:04:06] Active player connections: 0 +[05/11/2026 09:04:11] Active player connections: 1 +[05/11/2026 09:04:11] Client 15 set team to Blue +[05/11/2026 09:04:11] Active player connections: 2 +[05/11/2026 09:04:11] Game started On Server +[05/11/2026 09:04:11] Dedicated match PATCH success: 200 {"ok":true,"id":286} +[05/11/2026 09:04:11] Client 16 set team to Red +[05/11/2026 09:04:12] Dedicated match PATCH success: 200 {"ok":true,"id":286} +[05/11/2026 09:04:14] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:04:14] launching puck at (-0.49, -4.98) with (34.16, 346.77) force +[05/11/2026 09:04:18] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:04:18] launching puck at (1.90, 4.63) with (-132.16, -322.42) force +[05/11/2026 09:04:23] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:04:23] launching puck at (-2.86, -4.10) with (199.18, 285.92) force +[05/11/2026 09:04:27] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:04:27] launching puck at (1.86, 4.64) with (-129.57, -323.47) force +[05/11/2026 09:04:32] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:04:32] launching puck at (-2.05, -4.56) with (142.60, 317.94) force +[05/11/2026 09:04:39] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:04:39] launching puck at (1.83, 4.65) with (-127.62, -324.24) force +[05/11/2026 09:04:45] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:04:45] launching puck at (1.54, 4.76) with (-107.39, -331.49) force +[05/11/2026 09:04:53] force = 70 * 0.7687044 = 53.8093 +[05/11/2026 09:04:53] launching puck at (-2.87, 0.65) with (154.51, -35.08) force +[05/11/2026 09:04:58] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:04:58] launching puck at (-4.56, 2.04) with (318.11, -142.21) force +[05/11/2026 09:05:02] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:05:02] launching puck at (-3.30, 3.76) with (229.77, -261.96) force +[05/11/2026 09:05:03] Blue goal scored, blue score is now 1 +[05/11/2026 09:05:07] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:05:07] launching puck at (-0.35, -4.99) with (24.42, 347.60) force +[05/11/2026 09:05:12] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:05:12] launching puck at (-3.10, 3.93) with (215.84, -273.55) force +[05/11/2026 09:05:18] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:05:18] launching puck at (-3.64, -3.42) with (253.99, 238.56) force +[05/11/2026 09:05:23] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:05:23] launching puck at (3.14, 3.89) with (-218.61, -271.35) force +[05/11/2026 09:05:27] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:05:27] launching puck at (4.40, -2.38) with (-306.30, 166.13) force +[05/11/2026 09:05:34] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:05:34] launching puck at (1.22, 4.85) with (-85.31, -337.85) force +[05/11/2026 09:05:39] force = 70 * 0.8319998 = 58.23999 +[05/11/2026 09:05:39] launching puck at (-2.88, 1.81) with (167.65, -105.18) force +[05/11/2026 09:05:47] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:05:47] launching puck at (-0.09, 5.00) with (5.94, -348.40) force +[05/11/2026 09:05:48] Blue goal scored, blue score is now 2 +[05/11/2026 09:05:53] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:05:53] launching puck at (-0.48, -4.98) with (33.12, 346.88) force +[05/11/2026 09:05:58] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:05:58] launching puck at (-0.33, 4.99) with (23.07, -347.69) force +[05/11/2026 09:06:03] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:06:03] launching puck at (-4.39, -2.39) with (306.24, 166.24) force +[05/11/2026 09:06:08] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:06:08] launching puck at (0.06, 5.00) with (-4.28, -348.43) force +[05/11/2026 09:06:12] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:06:12] launching puck at (-0.80, -4.93) with (56.10, 343.91) force +[05/11/2026 09:06:19] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:06:19] launching puck at (-0.29, 4.99) with (20.37, -347.86) force +[05/11/2026 09:06:25] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:06:25] launching puck at (-2.58, -4.28) with (179.80, 298.48) force +[05/11/2026 09:06:25] Red goal scored, red score is now 1 +[05/11/2026 09:06:33] Client 16 sent emoji emote 5 +[05/11/2026 09:06:34] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:06:34] launching puck at (-0.07, 5.00) with (4.67, -348.42) force +[05/11/2026 09:06:40] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:06:40] launching puck at (-1.09, -4.88) with (75.93, 340.08) force +[05/11/2026 09:06:45] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:06:45] launching puck at (-1.81, 4.66) with (125.79, -324.95) force +[05/11/2026 09:06:49] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:06:49] launching puck at (-4.91, -0.92) with (342.51, 64.11) force +[05/11/2026 09:06:55] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:06:55] launching puck at (2.20, 4.49) with (-153.55, -312.80) force +[05/11/2026 09:07:02] force = 70 * 0.9893147 = 69.25203 +[05/11/2026 09:07:02] launching puck at (3.18, 3.77) with (-220.32, -260.87) force +[05/11/2026 09:07:09] Client 15 sent emoji emote 5 +[05/11/2026 09:07:10] force = 70 * 0.9721783 = 68.05248 +[05/11/2026 09:07:10] launching puck at (2.34, 4.12) with (-159.45, -280.51) force +[05/11/2026 09:07:10] Blue goal scored, blue score is now 3 +[05/11/2026 09:07:11] Dedicated match PATCH success: 200 {"ok":true,"id":286} +[05/11/2026 09:07:13] Dedicated match winner PATCH success: 200 {"ok":true,"id":286,"winner_id":6,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/11/2026 09:07:19] Rematch requested +[05/11/2026 09:07:37] Rematch was confirmed, closing in 5 secs. new room : +[05/11/2026 09:07:37] {"ok":true,"entry_fee":80,"rc_prize":130,"for_red":{"Players":[{"Name":"choel","LastSeen":1778490457125,"l10_wins":1,"l10_losses":4,"UserId":33,"rc":0.0},{"Name":"lulu","LastSeen":1778490457125,"l10_wins":4,"l10_losses":1,"UserId":6,"rc":0.0}],"GameName":"soccar","Port":26776,"InitTime":1778490457125,"instance_started":true,"match_id":287,"entry_fee":80,"rc_prize":130,"your_team":"red"},"for_blue":{"Players":[{"Name":"choel","LastSeen":1778490457125,"l10_wins":1,"l10_losses":4,"UserId":33,"rc":0.0},{"Name":"lulu","LastSeen":1778490457125,"l10_wins":4,"l10_losses":1,"UserId":6,"rc":0.0}],"GameName":"soccar","Port":26776,"InitTime":1778490457125,"instance_started":true,"match_id":287,"entry_fee":80,"rc_prize":130,"your_team":"blue"},"your_team":""} +[05/11/2026 09:07:37] Active player connections: 0 +[05/11/2026 09:07:42] Server will be closed due to no players in, 60 +[05/11/2026 09:07:52] Server will be closed due to no players in, 50 +[05/11/2026 09:08:02] Server will be closed due to no players in, 40 +[05/11/2026 09:08:12] Server will be closed due to no players in, 30 +[05/11/2026 09:08:22] Server will be closed due to no players in, 20 +[05/11/2026 09:08:32] Server will be closed due to no players in, 10 +[05/11/2026 09:08:42] All players left, exiting +[05/11/2026 09:08:42] Dedicated match PATCH success: 200 {"ok":true,"id":286} diff --git a/games/soccar/soccar_Data/Logs/287.txt b/games/soccar/soccar_Data/Logs/287.txt new file mode 100644 index 0000000..c60d37d --- /dev/null +++ b/games/soccar/soccar_Data/Logs/287.txt @@ -0,0 +1,76 @@ +[05/11/2026 09:07:38] Starting server at port 26776 +[05/11/2026 09:07:38] Failed to fetch red and blue names, isServer? +[05/11/2026 09:07:38] Starting auto close watchdog +[05/11/2026 09:07:38] Active player connections: 0 +[05/11/2026 09:07:41] Active player connections: 1 +[05/11/2026 09:07:41] Active player connections: 2 +[05/11/2026 09:07:41] Game started On Server +[05/11/2026 09:07:41] Client 15 set team to Blue +[05/11/2026 09:07:42] Client 16 set team to Red +[05/11/2026 09:07:42] Dedicated match PATCH success: 200 {"ok":true,"id":287} +[05/11/2026 09:07:42] Dedicated match PATCH success: 200 {"ok":true,"id":287} +[05/11/2026 09:07:44] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:07:44] launching puck at (-0.10, -5.00) with (6.92, 348.38) force +[05/11/2026 09:07:49] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:07:49] launching puck at (-1.25, 4.84) with (87.01, -337.41) force +[05/11/2026 09:07:55] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:07:55] launching puck at (-0.03, -5.00) with (1.78, 348.45) force +[05/11/2026 09:07:56] Red goal scored, red score is now 1 +[05/11/2026 09:08:01] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:08:01] launching puck at (-0.14, 5.00) with (10.01, -348.31) force +[05/11/2026 09:08:06] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:08:06] launching puck at (4.98, -0.44) with (-347.12, 30.44) force +[05/11/2026 09:08:10] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:08:10] launching puck at (-0.69, 4.95) with (47.78, -345.16) force +[05/11/2026 09:08:15] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:08:15] launching puck at (3.70, -3.36) with (-257.82, 234.42) force +[05/11/2026 09:08:19] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:08:19] launching puck at (-0.20, 5.00) with (13.89, -348.18) force +[05/11/2026 09:08:29] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:08:29] launching puck at (1.18, -4.86) with (-82.57, 338.53) force +[05/11/2026 09:08:36] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:08:36] launching puck at (-3.41, 3.65) with (237.85, -254.65) force +[05/11/2026 09:08:43] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:08:43] launching puck at (-0.69, 4.95) with (48.36, -345.08) force +[05/11/2026 09:08:48] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:08:48] launching puck at (0.34, 4.99) with (-23.99, -347.63) force +[05/11/2026 09:08:52] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:08:52] launching puck at (4.30, 2.55) with (-299.63, -177.89) force +[05/11/2026 09:08:52] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:08:52] launching puck at (4.30, 2.55) with (-299.63, -177.89) force +[05/11/2026 09:08:52] Active player connections: 1 +[05/11/2026 09:08:58] force = 70 * 0.5582525 = 39.07767 +[05/11/2026 09:08:58] launching puck at (-1.54, 1.00) with (60.04, -39.26) force +[05/11/2026 09:09:20] force = 70 * 0.8801612 = 61.61129 +[05/11/2026 09:09:20] launching puck at (-3.50, -1.50) with (215.49, 92.30) force +[05/11/2026 09:09:41] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:09:41] launching puck at (-2.86, 4.10) with (199.27, -285.85) force +[05/11/2026 09:09:41] Blue goal scored, blue score is now 1 +[05/11/2026 09:10:01] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:10:01] launching puck at (0.09, 5.00) with (-6.61, -348.39) force +[05/11/2026 09:10:22] force = 70 * 0.8828007 = 61.79605 +[05/11/2026 09:10:22] launching puck at (-0.04, 3.83) with (2.36, -236.60) force +[05/11/2026 09:10:46] force = 70 * 0.9181873 = 64.27311 +[05/11/2026 09:10:46] launching puck at (0.43, 4.15) with (-27.67, -266.50) force +[05/11/2026 09:10:46] Blue goal scored, blue score is now 2 +[05/11/2026 09:11:05] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:11:05] launching puck at (-0.05, 5.00) with (3.72, -348.43) force +[05/11/2026 09:11:26] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:11:26] launching puck at (-0.06, 5.00) with (4.17, -348.43) force +[05/11/2026 09:11:40] Client 15 sent emoji emote 5 +[05/11/2026 09:11:46] force = 70 * 0.6159455 = 43.11619 +[05/11/2026 09:11:46] launching puck at (-0.77, 1.96) with (33.04, -84.69) force +[05/11/2026 09:12:04] force = 70 * 0.8242909 = 57.70036 +[05/11/2026 09:12:04] launching puck at (-0.03, 3.34) with (1.89, -192.62) force +[05/11/2026 09:12:04] Blue goal scored, blue score is now 3 +[05/11/2026 09:12:05] Dedicated match PATCH success: 200 {"ok":true,"id":287} +[05/11/2026 09:12:07] Dedicated match winner PATCH success: 200 {"ok":true,"id":287,"winner_id":6,"economy":{"entry_fee_rc":80,"rc_prize":130,"participant_cc":100}} +[05/11/2026 09:12:47] Active player connections: 0 +[05/11/2026 09:12:52] Server will be closed due to no players in, 60 +[05/11/2026 09:13:02] Server will be closed due to no players in, 50 +[05/11/2026 09:13:12] Server will be closed due to no players in, 40 +[05/11/2026 09:13:22] Server will be closed due to no players in, 30 +[05/11/2026 09:13:32] Server will be closed due to no players in, 20 +[05/11/2026 09:13:42] Server will be closed due to no players in, 10 +[05/11/2026 09:13:52] All players left, exiting +[05/11/2026 09:13:52] Dedicated match PATCH success: 200 {"ok":true,"id":287} diff --git a/games/soccar/soccar_Data/Logs/288.txt b/games/soccar/soccar_Data/Logs/288.txt new file mode 100644 index 0000000..8147eb1 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/288.txt @@ -0,0 +1,50 @@ +[05/11/2026 09:13:30] Starting server at port 26404 +[05/11/2026 09:13:30] Failed to fetch red and blue names, isServer? +[05/11/2026 09:13:30] Starting auto close watchdog +[05/11/2026 09:13:30] Active player connections: 0 +[05/11/2026 09:13:34] Active player connections: 1 +[05/11/2026 09:13:35] Client 15 set team to Blue +[05/11/2026 09:13:35] Dedicated match PATCH success: 200 {"ok":true,"id":288} +[05/11/2026 09:13:36] Active player connections: 2 +[05/11/2026 09:13:36] Game started On Server +[05/11/2026 09:13:36] Client 16 set team to Red +[05/11/2026 09:13:36] Dedicated match PATCH success: 200 {"ok":true,"id":288} +[05/11/2026 09:13:38] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:13:38] launching puck at (-0.34, -4.99) with (23.61, 347.65) force +[05/11/2026 09:13:44] force = 70 * 0.4372322 = 30.60625 +[05/11/2026 09:13:44] launching puck at (-1.33, 0.07) with (40.59, -2.11) force +[05/11/2026 09:13:48] force = 70 * 0.9587138 = 67.10996 +[05/11/2026 09:13:48] launching puck at (0.84, -4.52) with (-56.24, 303.13) force +[05/11/2026 09:13:48] Red goal scored, red score is now 1 +[05/11/2026 09:13:53] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:13:53] launching puck at (0.10, 5.00) with (-7.06, -348.38) force +[05/11/2026 09:14:04] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:14:04] launching puck at (1.81, -4.66) with (-125.94, 324.90) force +[05/11/2026 09:14:12] force = 70 * 0.8969697 = 62.78788 +[05/11/2026 09:14:12] launching puck at (-0.84, 3.87) with (52.64, -243.07) force +[05/11/2026 09:14:12] Blue goal scored, blue score is now 1 +[05/11/2026 09:14:19] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:14:19] launching puck at (-3.33, -3.73) with (232.13, 259.87) force +[05/11/2026 09:14:24] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:14:24] launching puck at (-0.05, 5.00) with (3.75, -348.43) force +[05/11/2026 09:14:24] Blue goal scored, blue score is now 2 +[05/11/2026 09:14:30] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:14:30] launching puck at (3.18, -3.86) with (-221.65, 268.87) force +[05/11/2026 09:14:38] force = 70 * 0.9547856 = 66.83499 +[05/11/2026 09:14:38] launching puck at (-0.19, 4.55) with (12.50, -303.94) force +[05/11/2026 09:14:39] Blue goal scored, blue score is now 3 +[05/11/2026 09:14:39] Dedicated match PATCH success: 200 {"ok":true,"id":288} +[05/11/2026 09:14:41] Dedicated match winner PATCH success: 200 {"ok":true,"id":288,"winner_id":6,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/11/2026 09:14:47] Rematch requested +[05/11/2026 09:15:00] Rematch was confirmed, closing in 5 secs. new room : +[05/11/2026 09:15:00] {"ok":true,"entry_fee":80,"rc_prize":130,"for_red":{"Players":[{"Name":"choel","LastSeen":1778490900075,"l10_wins":1,"l10_losses":5,"UserId":33,"rc":0.0},{"Name":"lulu","LastSeen":1778490900075,"l10_wins":5,"l10_losses":1,"UserId":6,"rc":0.0}],"GameName":"soccar","Port":26624,"InitTime":1778490900075,"instance_started":true,"match_id":289,"entry_fee":80,"rc_prize":130,"your_team":"red"},"for_blue":{"Players":[{"Name":"choel","LastSeen":1778490900075,"l10_wins":1,"l10_losses":5,"UserId":33,"rc":0.0},{"Name":"lulu","LastSeen":1778490900075,"l10_wins":5,"l10_losses":1,"UserId":6,"rc":0.0}],"GameName":"soccar","Port":26624,"InitTime":1778490900075,"instance_started":true,"match_id":289,"entry_fee":80,"rc_prize":130,"your_team":"blue"},"your_team":""} +[05/11/2026 09:15:00] Active player connections: 1 +[05/11/2026 09:15:01] Active player connections: 0 +[05/11/2026 09:15:06] Server will be closed due to no players in, 60 +[05/11/2026 09:15:16] Server will be closed due to no players in, 50 +[05/11/2026 09:15:26] Server will be closed due to no players in, 40 +[05/11/2026 09:15:36] Server will be closed due to no players in, 30 +[05/11/2026 09:15:46] Server will be closed due to no players in, 20 +[05/11/2026 09:15:56] Server will be closed due to no players in, 10 +[05/11/2026 09:16:06] All players left, exiting +[05/11/2026 09:16:06] Dedicated match PATCH success: 200 {"ok":true,"id":288} diff --git a/games/soccar/soccar_Data/Logs/289.txt b/games/soccar/soccar_Data/Logs/289.txt new file mode 100644 index 0000000..3dbb7ec --- /dev/null +++ b/games/soccar/soccar_Data/Logs/289.txt @@ -0,0 +1,38 @@ +[05/11/2026 09:15:03] Starting server at port 26624 +[05/11/2026 09:15:03] Failed to fetch red and blue names, isServer? +[05/11/2026 09:15:03] Starting auto close watchdog +[05/11/2026 09:15:03] Active player connections: 0 +[05/11/2026 09:15:04] Active player connections: 1 +[05/11/2026 09:15:04] Client 15 set team to Red +[05/11/2026 09:15:05] Dedicated match PATCH success: 200 {"ok":true,"id":289} +[05/11/2026 09:15:05] Active player connections: 2 +[05/11/2026 09:15:05] Game started On Server +[05/11/2026 09:15:05] Client 16 set team to Blue +[05/11/2026 09:15:05] Dedicated match PATCH success: 200 {"ok":true,"id":289} +[05/11/2026 09:15:09] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:15:09] launching puck at (3.93, -3.10) with (-273.57, 215.82) force +[05/11/2026 09:15:13] force = 70 * 0.8274984 = 57.92489 +[05/11/2026 09:15:13] launching puck at (-0.10, 3.36) with (5.57, -194.73) force +[05/11/2026 09:15:14] Blue goal scored, blue score is now 1 +[05/11/2026 09:15:19] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:15:19] launching puck at (4.12, -2.83) with (-287.41, 197.02) force +[05/11/2026 09:15:23] force = 70 * 0.9634852 = 67.44397 +[05/11/2026 09:15:23] launching puck at (-0.24, 4.64) with (16.36, -312.92) force +[05/11/2026 09:15:23] Blue goal scored, blue score is now 2 +[05/11/2026 09:15:28] force = 70 * 0.9955804 = 69.69063 +[05/11/2026 09:15:28] launching puck at (4.15, -2.79) with (-289.31, 194.21) force +[05/11/2026 09:15:32] force = 70 * 0.7760924 = 54.32647 +[05/11/2026 09:15:32] launching puck at (-0.12, 2.99) with (6.32, -162.50) force +[05/11/2026 09:15:33] Blue goal scored, blue score is now 3 +[05/11/2026 09:15:33] Dedicated match PATCH success: 200 {"ok":true,"id":289} +[05/11/2026 09:15:35] Dedicated match winner PATCH success: 200 {"ok":true,"id":289,"winner_id":6,"economy":{"entry_fee_rc":80,"rc_prize":130,"participant_cc":100}} +[05/11/2026 09:16:28] Active player connections: 1 +[05/11/2026 09:16:29] Active player connections: 0 +[05/11/2026 09:16:34] Server will be closed due to no players in, 60 +[05/11/2026 09:16:44] Server will be closed due to no players in, 50 +[05/11/2026 09:16:54] Server will be closed due to no players in, 40 +[05/11/2026 09:17:04] Server will be closed due to no players in, 30 +[05/11/2026 09:17:14] Server will be closed due to no players in, 20 +[05/11/2026 09:17:24] Server will be closed due to no players in, 10 +[05/11/2026 09:17:34] All players left, exiting +[05/11/2026 09:17:35] Dedicated match PATCH success: 200 {"ok":true,"id":289} diff --git a/games/soccar/soccar_Data/Logs/29.txt b/games/soccar/soccar_Data/Logs/29.txt new file mode 100644 index 0000000..6ef0e22 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/29.txt @@ -0,0 +1,41 @@ +[05/16/2026 18:01:35] Starting server at port 26056 +[05/16/2026 18:01:35] Mirror server exception logging enabled +[05/16/2026 18:01:35] Failed to fetch red and blue names, isServer? +[05/16/2026 18:01:35] Starting auto close watchdog +[05/16/2026 18:01:35] Active player connections: 0 +[05/16/2026 18:01:39] Active player connections: 1 +[05/16/2026 18:01:39] Client 15 set team to Blue +[05/16/2026 18:01:40] Dedicated match PATCH success: 200 {"ok":true,"id":29} +[05/16/2026 18:01:40] Active player connections: 2 +[05/16/2026 18:01:40] Game started On Server +[05/16/2026 18:01:40] Client 16 set team to Red +[05/16/2026 18:01:40] Dedicated match PATCH success: 200 {"ok":true,"id":29} +[05/16/2026 18:01:47] force = 70 * 0.5888494 = 41.21946 +[05/16/2026 18:01:47] launching puck at (1.78, -0.87) with (-73.57, 35.84) force +[05/16/2026 18:01:52] force = 70 * 0.8117088 = 56.81962 +[05/16/2026 18:01:52] launching puck at (0.14, 3.24) with (-7.84, -184.14) force +[05/16/2026 18:01:53] Blue goal scored, blue score is now 1 +[05/16/2026 18:01:58] force = 70 * 0.5360222 = 37.52156 +[05/16/2026 18:01:58] launching puck at (1.55, -0.75) with (-58.21, 28.14) force +[05/16/2026 18:02:03] force = 70 * 0.9790149 = 68.53104 +[05/16/2026 18:02:03] launching puck at (0.08, 4.82) with (-5.66, -330.05) force +[05/16/2026 18:02:03] Blue goal scored, blue score is now 2 +[05/16/2026 18:02:09] force = 70 * 0.6114039 = 42.79827 +[05/16/2026 18:02:09] launching puck at (2.00, -0.59) with (-85.69, 25.27) force +[05/16/2026 18:02:12] force = 70 * 0.8642186 = 60.4953 +[05/16/2026 18:02:12] launching puck at (0.00, 3.66) with (0.21, -221.64) force +[05/16/2026 18:02:13] Blue goal scored, blue score is now 3 +[05/16/2026 18:02:13] Dedicated match PATCH success: 200 {"ok":true,"id":29} +[05/16/2026 18:02:15] Dedicated match winner PATCH success: 200 {"ok":true,"id":29,"winner_id":2,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/16/2026 18:02:23] Mirror server: client disconnected (connId=720397134) +[05/16/2026 18:02:23] Active player connections: 1 +[05/16/2026 18:02:23] Mirror server: client disconnected (connId=1441813280) +[05/16/2026 18:02:23] Active player connections: 0 +[05/16/2026 18:02:28] Server will be closed due to no players in, 60 +[05/16/2026 18:02:38] Server will be closed due to no players in, 50 +[05/16/2026 18:02:48] Server will be closed due to no players in, 40 +[05/16/2026 18:02:58] Server will be closed due to no players in, 30 +[05/16/2026 18:03:08] Server will be closed due to no players in, 20 +[05/16/2026 18:03:18] Server will be closed due to no players in, 10 +[05/16/2026 18:03:28] All players left, exiting +[05/16/2026 18:03:28] Dedicated match PATCH success: 200 {"ok":true,"id":29} diff --git a/games/soccar/soccar_Data/Logs/290.txt b/games/soccar/soccar_Data/Logs/290.txt new file mode 100644 index 0000000..4c2bf17 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/290.txt @@ -0,0 +1,41 @@ +[05/13/2026 06:43:54] Starting server at port 26404 +[05/13/2026 06:43:54] Failed to fetch red and blue names, isServer? +[05/13/2026 06:43:54] Starting auto close watchdog +[05/13/2026 06:43:54] Active player connections: 0 +[05/13/2026 06:43:59] Active player connections: 1 +[05/13/2026 06:43:59] Client 15 set team to Blue +[05/13/2026 06:43:59] Active player connections: 2 +[05/13/2026 06:43:59] Game started On Server +[05/13/2026 06:43:59] Client 16 set team to Red +[05/13/2026 06:44:00] Dedicated match PATCH success: 200 {"ok":true,"id":290} +[05/13/2026 06:44:00] Dedicated match PATCH success: 200 {"ok":true,"id":290} +[05/13/2026 06:44:04] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:44:04] launching puck at (0.02, -5.00) with (-1.59, 348.45) force +[05/13/2026 06:44:07] Client 16 sent emoji emote 3 +[05/13/2026 06:44:10] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:44:10] launching puck at (1.72, 4.69) with (-120.10, -327.10) force +[05/13/2026 06:44:17] Client 15 sent emoji emote 2 +[05/13/2026 06:44:20] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:44:20] launching puck at (3.26, -3.79) with (-226.91, 264.44) force +[05/13/2026 06:44:28] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:44:28] launching puck at (4.99, 0.35) with (-347.61, -24.22) force +[05/13/2026 06:44:33] force = 70 * 0.7643546 = 53.50482 +[05/13/2026 06:44:33] launching puck at (2.39, -1.67) with (-128.00, 89.23) force +[05/13/2026 06:44:33] force = 70 * 0.5155735 = 36.09015 +[05/13/2026 06:44:33] launching puck at (-1.59, 0.35) with (57.26, -12.61) force +[05/13/2026 06:44:33] Active player connections: 1 +[05/13/2026 06:44:40] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:44:40] launching puck at (-0.31, -4.99) with (21.36, 347.80) force +[05/13/2026 06:45:01] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:45:01] launching puck at (2.87, 4.09) with (-200.20, -285.20) force +[05/13/2026 06:45:24] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:45:24] launching puck at (-3.90, 3.13) with (271.62, -218.27) force +[05/13/2026 06:45:35] Active player connections: 0 +[05/13/2026 06:45:40] Server will be closed due to no players in, 60 +[05/13/2026 06:45:50] Server will be closed due to no players in, 50 +[05/13/2026 06:46:00] Server will be closed due to no players in, 40 +[05/13/2026 06:46:10] Server will be closed due to no players in, 30 +[05/13/2026 06:46:20] Server will be closed due to no players in, 20 +[05/13/2026 06:46:30] Server will be closed due to no players in, 10 +[05/13/2026 06:46:40] All players left, exiting +[05/13/2026 06:46:40] Dedicated match PATCH success: 200 {"ok":true,"id":290} diff --git a/games/soccar/soccar_Data/Logs/291.txt b/games/soccar/soccar_Data/Logs/291.txt new file mode 100644 index 0000000..8e7c37d --- /dev/null +++ b/games/soccar/soccar_Data/Logs/291.txt @@ -0,0 +1,68 @@ +[05/13/2026 06:47:50] Starting server at port 26476 +[05/13/2026 06:47:50] Failed to fetch red and blue names, isServer? +[05/13/2026 06:47:50] Starting auto close watchdog +[05/13/2026 06:47:50] Active player connections: 0 +[05/13/2026 06:47:55] Server will be closed due to no players in, 60 +[05/13/2026 06:47:55] Active player connections: 1 +[05/13/2026 06:47:56] Client 15 set team to Blue +[05/13/2026 06:47:56] Dedicated match PATCH success: 200 {"ok":true,"id":291} +[05/13/2026 06:47:56] Active player connections: 2 +[05/13/2026 06:47:56] Game started On Server +[05/13/2026 06:47:57] Client 16 set team to Red +[05/13/2026 06:47:57] Dedicated match PATCH success: 200 {"ok":true,"id":291} +[05/13/2026 06:47:59] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:47:59] launching puck at (-0.10, -5.00) with (6.68, 348.39) force +[05/13/2026 06:48:07] Client 16 sent emoji emote 3 +[05/13/2026 06:48:08] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:48:08] launching puck at (-4.36, 2.45) with (303.61, -171.01) force +[05/13/2026 06:48:15] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:48:15] launching puck at (-1.43, -4.79) with (100.00, 333.80) force +[05/13/2026 06:48:20] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:48:20] launching puck at (1.56, -4.75) with (-108.57, 331.11) force +[05/13/2026 06:48:26] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:48:26] launching puck at (5.00, 0.00) with (-348.45, -0.23) force +[05/13/2026 06:48:30] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:48:30] launching puck at (4.99, 0.32) with (-347.72, -22.61) force +[05/13/2026 06:48:31] Red goal scored, red score is now 1 +[05/13/2026 06:48:41] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:48:41] launching puck at (-0.04, 5.00) with (2.81, -348.44) force +[05/13/2026 06:48:47] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:48:47] launching puck at (4.99, 0.23) with (-348.09, -15.87) force +[05/13/2026 06:48:54] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:48:54] launching puck at (-0.21, 5.00) with (14.95, -348.13) force +[05/13/2026 06:48:59] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:48:59] launching puck at (4.44, -2.30) with (-309.28, 160.51) force +[05/13/2026 06:49:10] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:49:10] launching puck at (4.97, 0.53) with (-346.48, -37.06) force +[05/13/2026 06:49:17] force = 70 * 0.7940603 = 55.58422 +[05/13/2026 06:49:17] launching puck at (2.03, -2.36) with (-113.10, 131.21) force +[05/13/2026 06:49:25] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:49:25] launching puck at (5.00, 0.20) with (-348.18, -13.80) force +[05/13/2026 06:49:32] force = 70 * 0.8462701 = 59.23891 +[05/13/2026 06:49:32] launching puck at (3.44, 0.72) with (-203.69, -42.56) force +[05/13/2026 06:49:39] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:49:39] launching puck at (3.00, 4.00) with (-209.17, -278.69) force +[05/13/2026 06:49:50] force = 70 * 0.9443851 = 66.10696 +[05/13/2026 06:49:50] launching puck at (3.72, -2.43) with (-245.78, 160.45) force +[05/13/2026 06:49:58] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:49:58] launching puck at (4.29, -2.57) with (-298.85, 179.19) force +[05/13/2026 06:50:05] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:50:05] launching puck at (-0.23, -4.99) with (15.99, 348.09) force +[05/13/2026 06:50:06] Red goal scored, red score is now 2 +[05/13/2026 06:50:13] force = 70 * 0.9783934 = 68.48754 +[05/13/2026 06:50:13] launching puck at (-4.69, 1.06) with (321.33, -72.52) force +[05/13/2026 06:50:19] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:50:19] launching puck at (-0.40, -4.98) with (27.61, 347.36) force +[05/13/2026 06:50:20] Red goal scored, red score is now 3 +[05/13/2026 06:50:21] Dedicated match PATCH success: 200 {"ok":true,"id":291} +[05/13/2026 06:50:23] Dedicated match winner PATCH success: 200 {"ok":true,"id":291,"winner_id":33,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/13/2026 06:51:10] Active player connections: 1 +[05/13/2026 06:51:11] Active player connections: 0 +[05/13/2026 06:51:16] Server will be closed due to no players in, 60 +[05/13/2026 06:51:26] Server will be closed due to no players in, 50 +[05/13/2026 06:51:36] Server will be closed due to no players in, 40 +[05/13/2026 06:51:46] Server will be closed due to no players in, 30 +[05/13/2026 06:51:56] Server will be closed due to no players in, 20 +[05/13/2026 06:52:06] Server will be closed due to no players in, 10 +[05/13/2026 06:52:16] All players left, exiting +[05/13/2026 06:52:16] Dedicated match PATCH success: 200 {"ok":true,"id":291} diff --git a/games/soccar/soccar_Data/Logs/292.txt b/games/soccar/soccar_Data/Logs/292.txt new file mode 100644 index 0000000..3080540 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/292.txt @@ -0,0 +1,12 @@ +[05/13/2026 06:50:57] Starting server at port 26105 +[05/13/2026 06:50:57] Failed to fetch red and blue names, isServer? +[05/13/2026 06:50:57] Starting auto close watchdog +[05/13/2026 06:50:57] Active player connections: 0 +[05/13/2026 06:51:02] Server will be closed due to no players in, 60 +[05/13/2026 06:51:12] Server will be closed due to no players in, 50 +[05/13/2026 06:51:22] Server will be closed due to no players in, 40 +[05/13/2026 06:51:32] Server will be closed due to no players in, 30 +[05/13/2026 06:51:42] Server will be closed due to no players in, 20 +[05/13/2026 06:51:52] Server will be closed due to no players in, 10 +[05/13/2026 06:52:02] No players joined, exiting +[05/13/2026 06:52:03] Dedicated match PATCH success: 200 {"ok":true,"id":292} diff --git a/games/soccar/soccar_Data/Logs/293.txt b/games/soccar/soccar_Data/Logs/293.txt new file mode 100644 index 0000000..f0552c3 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/293.txt @@ -0,0 +1,44 @@ +[05/13/2026 06:53:12] Starting server at port 26828 +[05/13/2026 06:53:12] Failed to fetch red and blue names, isServer? +[05/13/2026 06:53:12] Starting auto close watchdog +[05/13/2026 06:53:12] Active player connections: 0 +[05/13/2026 06:53:17] Active player connections: 2 +[05/13/2026 06:53:17] Game started On Server +[05/13/2026 06:53:17] Client 16 set team to Blue +[05/13/2026 06:53:17] Client 15 set team to Red +[05/13/2026 06:53:18] Dedicated match PATCH success: 200 {"ok":true,"id":293} +[05/13/2026 06:53:18] Dedicated match PATCH success: 200 {"ok":true,"id":293} +[05/13/2026 06:53:21] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:53:21] launching puck at (-0.07, -5.00) with (4.95, 348.42) force +[05/13/2026 06:53:28] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:53:28] launching puck at (-4.77, -1.51) with (332.22, 105.10) force +[05/13/2026 06:53:35] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:53:35] launching puck at (4.53, -2.12) with (-315.44, 148.05) force +[05/13/2026 06:53:43] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:53:43] launching puck at (-4.05, 2.93) with (282.47, -204.04) force +[05/13/2026 06:53:49] force = 70 * 0.9716705 = 68.01694 +[05/13/2026 06:53:49] launching puck at (4.18, 2.23) with (-284.02, -151.95) force +[05/13/2026 06:53:55] force = 70 * 0.9951361 = 69.65953 +[05/13/2026 06:53:55] launching puck at (-4.78, -1.43) with (333.31, 99.89) force +[05/13/2026 06:54:00] force = 70 * 0.9000957 = 63.0067 +[05/13/2026 06:54:00] launching puck at (2.75, -2.90) with (-173.00, 182.48) force +[05/13/2026 06:54:07] force = 70 * 0.9364329 = 65.5503 +[05/13/2026 06:54:07] launching puck at (-3.97, 1.79) with (260.40, -117.17) force +[05/13/2026 06:54:11] force = 70 * 0.9181008 = 64.26706 +[05/13/2026 06:54:11] launching puck at (-0.16, -4.16) with (10.25, 267.66) force +[05/13/2026 06:54:11] force = 70 * 0.9094135 = 63.65894 +[05/13/2026 06:54:11] launching puck at (-0.17, -4.08) with (10.90, 259.59) force +[05/13/2026 06:54:11] Active player connections: 1 +[05/13/2026 06:54:25] force = 70 * 0.9143375 = 64.00362 +[05/13/2026 06:54:25] launching puck at (-2.61, -3.20) with (166.95, 204.96) force +[05/13/2026 06:54:25] force = 70 * 0.9096076 = 63.67253 +[05/13/2026 06:54:25] launching puck at (-2.61, -3.14) with (166.05, 200.07) force +[05/13/2026 06:54:25] Active player connections: 0 +[05/13/2026 06:54:30] Server will be closed due to no players in, 60 +[05/13/2026 06:54:40] Server will be closed due to no players in, 50 +[05/13/2026 06:54:50] Server will be closed due to no players in, 40 +[05/13/2026 06:55:00] Server will be closed due to no players in, 30 +[05/13/2026 06:55:10] Server will be closed due to no players in, 20 +[05/13/2026 06:55:20] Server will be closed due to no players in, 10 +[05/13/2026 06:55:30] All players left, exiting +[05/13/2026 06:55:30] Dedicated match PATCH success: 200 {"ok":true,"id":293} diff --git a/games/soccar/soccar_Data/Logs/294.txt b/games/soccar/soccar_Data/Logs/294.txt new file mode 100644 index 0000000..c0a799e --- /dev/null +++ b/games/soccar/soccar_Data/Logs/294.txt @@ -0,0 +1,100 @@ +[05/13/2026 06:56:39] Starting server at port 26333 +[05/13/2026 06:56:39] Failed to fetch red and blue names, isServer? +[05/13/2026 06:56:39] Starting auto close watchdog +[05/13/2026 06:56:39] Active player connections: 0 +[05/13/2026 06:56:42] Active player connections: 1 +[05/13/2026 06:56:43] Client 15 set team to Blue +[05/13/2026 06:56:43] Dedicated match PATCH success: 200 {"ok":true,"id":294} +[05/13/2026 06:56:44] Active player connections: 2 +[05/13/2026 06:56:44] Game started On Server +[05/13/2026 06:56:44] Client 16 set team to Red +[05/13/2026 06:56:44] Dedicated match PATCH success: 200 {"ok":true,"id":294} +[05/13/2026 06:56:51] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:56:51] launching puck at (0.02, -5.00) with (-1.42, 348.45) force +[05/13/2026 06:56:56] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:56:56] launching puck at (-4.95, -0.70) with (344.97, 49.12) force +[05/13/2026 06:57:07] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:57:07] launching puck at (-4.97, -0.50) with (346.69, 35.06) force +[05/13/2026 06:57:13] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:57:13] launching puck at (-0.63, 4.96) with (43.86, -345.68) force +[05/13/2026 06:57:20] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:57:20] launching puck at (-4.50, 2.18) with (313.70, -151.69) force +[05/13/2026 06:57:31] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:57:31] launching puck at (-2.55, 4.30) with (177.68, -299.75) force +[05/13/2026 06:57:36] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:57:36] launching puck at (-4.75, 1.56) with (331.00, -108.89) force +[05/13/2026 06:57:41] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:57:41] launching puck at (-1.56, -4.75) with (109.07, 330.94) force +[05/13/2026 06:57:46] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:57:46] launching puck at (-4.04, -2.95) with (281.58, 205.26) force +[05/13/2026 06:57:51] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:57:51] launching puck at (-2.19, 4.49) with (152.66, -313.23) force +[05/13/2026 06:58:00] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:58:00] launching puck at (-1.21, -4.85) with (84.20, 338.13) force +[05/13/2026 06:58:07] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:58:07] launching puck at (1.97, -4.59) with (-137.56, 320.15) force +[05/13/2026 06:58:21] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:58:21] launching puck at (0.46, -4.98) with (-31.79, 347.00) force +[05/13/2026 06:58:28] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:58:28] launching puck at (-4.94, 0.76) with (344.36, -53.23) force +[05/13/2026 06:58:33] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:58:33] launching puck at (3.25, -3.80) with (-226.55, 264.75) force +[05/13/2026 06:58:41] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:58:41] launching puck at (0.47, 4.98) with (-32.75, -346.91) force +[05/13/2026 06:58:46] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:58:46] launching puck at (1.05, 4.89) with (-73.50, -340.61) force +[05/13/2026 06:58:54] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:58:54] launching puck at (2.73, 4.19) with (-190.00, -292.09) force +[05/13/2026 06:59:00] force = 70 * 0.9950714 = 69.655 +[05/13/2026 06:59:00] launching puck at (3.95, -3.05) with (-275.22, 212.79) force +[05/13/2026 06:59:04] force = 70 * 0.5865377 = 41.05764 +[05/13/2026 06:59:04] launching puck at (-1.93, 0.43) with (79.12, -17.72) force +[05/13/2026 06:59:10] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:59:10] launching puck at (-4.21, 2.69) with (293.55, -187.74) force +[05/13/2026 06:59:14] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:59:14] launching puck at (-0.26, 4.99) with (18.43, -347.97) force +[05/13/2026 06:59:18] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:59:18] launching puck at (-4.11, -2.85) with (286.20, 198.76) force +[05/13/2026 06:59:24] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:59:24] launching puck at (-0.50, 4.97) with (34.88, -346.70) force +[05/13/2026 06:59:26] Blue goal scored, blue score is now 1 +[05/13/2026 06:59:34] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:59:34] launching puck at (0.00, -5.00) with (0.07, 348.45) force +[05/13/2026 06:59:42] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:59:42] launching puck at (-1.14, 4.87) with (79.36, -339.30) force +[05/13/2026 06:59:47] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:59:47] launching puck at (-2.74, -4.18) with (191.12, 291.36) force +[05/13/2026 06:59:52] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 06:59:52] launching puck at (-3.27, 3.78) with (227.74, -263.73) force +[05/13/2026 07:00:01] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 07:00:01] launching puck at (-2.01, -4.58) with (140.03, 319.08) force +[05/13/2026 07:00:07] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 07:00:07] launching puck at (2.93, 4.05) with (-204.05, -282.46) force +[05/13/2026 07:00:13] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 07:00:13] launching puck at (0.67, -4.96) with (-46.44, 345.34) force +[05/13/2026 07:00:20] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 07:00:20] launching puck at (-4.99, 0.30) with (347.82, -20.97) force +[05/13/2026 07:00:26] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 07:00:26] launching puck at (1.10, 4.88) with (-76.88, -339.87) force +[05/13/2026 07:00:47] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 07:00:47] launching puck at (3.80, 3.25) with (-264.69, -226.63) force +[05/13/2026 07:00:53] force = 70 * 0.780268 = 54.61876 +[05/13/2026 07:00:53] launching puck at (-1.85, -2.39) with (101.08, 130.44) force +[05/13/2026 07:00:53] force = 70 * 0.7865914 = 55.0614 +[05/13/2026 07:00:53] launching puck at (-1.84, -2.45) with (101.36, 134.90) force +[05/13/2026 07:00:53] Active player connections: 1 +[05/13/2026 07:01:00] force = 70 * 0.9955804 = 69.69063 +[05/13/2026 07:01:00] launching puck at (-2.29, 4.45) with (159.28, -309.92) force +[05/13/2026 07:01:23] force = 70 * 0.444925 = 31.14475 +[05/13/2026 07:01:23] launching puck at (0.31, 1.31) with (-9.79, -40.95) force +[05/13/2026 07:01:23] force = 70 * 0.444925 = 31.14475 +[05/13/2026 07:01:23] launching puck at (0.31, 1.31) with (-9.79, -40.95) force +[05/13/2026 07:01:23] Active player connections: 0 +[05/13/2026 07:01:28] Server will be closed due to no players in, 60 +[05/13/2026 07:01:38] Server will be closed due to no players in, 50 +[05/13/2026 07:01:48] Server will be closed due to no players in, 40 +[05/13/2026 07:01:58] Server will be closed due to no players in, 30 +[05/13/2026 07:02:08] Server will be closed due to no players in, 20 +[05/13/2026 07:02:18] Server will be closed due to no players in, 10 +[05/13/2026 07:02:28] All players left, exiting +[05/13/2026 07:02:28] Dedicated match PATCH success: 200 {"ok":true,"id":294} diff --git a/games/soccar/soccar_Data/Logs/3.txt b/games/soccar/soccar_Data/Logs/3.txt new file mode 100644 index 0000000..8895b7a --- /dev/null +++ b/games/soccar/soccar_Data/Logs/3.txt @@ -0,0 +1,12 @@ +[05/14/2026 12:18:50] Starting server at port 26311 +[05/14/2026 12:18:50] Failed to fetch red and blue names, isServer? +[05/14/2026 12:18:50] Starting auto close watchdog +[05/14/2026 12:18:50] Active player connections: 0 +[05/14/2026 12:18:55] Server will be closed due to no players in, 60 +[05/14/2026 12:19:05] Server will be closed due to no players in, 50 +[05/14/2026 12:19:15] Server will be closed due to no players in, 40 +[05/14/2026 12:19:25] Server will be closed due to no players in, 30 +[05/14/2026 12:19:35] Server will be closed due to no players in, 20 +[05/14/2026 12:19:45] Server will be closed due to no players in, 10 +[05/14/2026 12:19:55] No players joined, exiting +[05/14/2026 12:19:55] Dedicated match PATCH success: 200 {"ok":true,"id":3} diff --git a/games/soccar/soccar_Data/Logs/30.txt b/games/soccar/soccar_Data/Logs/30.txt new file mode 100644 index 0000000..2cc773c --- /dev/null +++ b/games/soccar/soccar_Data/Logs/30.txt @@ -0,0 +1,41 @@ +[05/16/2026 18:02:35] Starting server at port 26814 +[05/16/2026 18:02:35] Mirror server exception logging enabled +[05/16/2026 18:02:35] Failed to fetch red and blue names, isServer? +[05/16/2026 18:02:35] Starting auto close watchdog +[05/16/2026 18:02:35] Active player connections: 0 +[05/16/2026 18:02:37] Active player connections: 1 +[05/16/2026 18:02:37] Client 15 set team to Blue +[05/16/2026 18:02:38] Dedicated match PATCH success: 200 {"ok":true,"id":30} +[05/16/2026 18:02:39] Active player connections: 2 +[05/16/2026 18:02:39] Game started On Server +[05/16/2026 18:02:39] Client 16 set team to Red +[05/16/2026 18:02:39] Dedicated match PATCH success: 200 {"ok":true,"id":30} +[05/16/2026 18:02:41] force = 70 * 0.4941466 = 34.59026 +[05/16/2026 18:02:41] launching puck at (1.23, -0.92) with (-42.42, 31.66) force +[05/16/2026 18:02:45] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 18:02:45] launching puck at (0.17, 5.00) with (-12.03, -348.25) force +[05/16/2026 18:02:45] Blue goal scored, blue score is now 1 +[05/16/2026 18:02:49] force = 70 * 0.7857361 = 55.00153 +[05/16/2026 18:02:49] launching puck at (2.52, -1.73) with (-138.86, 94.97) force +[05/16/2026 18:02:54] force = 70 * 0.8082601 = 56.57821 +[05/16/2026 18:02:54] launching puck at (-0.07, 3.22) with (3.76, -182.05) force +[05/16/2026 18:02:55] Blue goal scored, blue score is now 2 +[05/16/2026 18:02:59] force = 70 * 0.7757346 = 54.30142 +[05/16/2026 18:02:59] launching puck at (-1.57, -2.55) with (85.09, 138.34) force +[05/16/2026 18:03:04] force = 70 * 0.8705173 = 60.93621 +[05/16/2026 18:03:04] launching puck at (0.08, 3.72) with (-5.10, -226.55) force +[05/16/2026 18:03:04] Blue goal scored, blue score is now 3 +[05/16/2026 18:03:05] Dedicated match PATCH success: 200 {"ok":true,"id":30} +[05/16/2026 18:03:07] Dedicated match winner PATCH success: 200 {"ok":true,"id":30,"winner_id":3,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/16/2026 18:03:11] Mirror server: client disconnected (connId=720377233) +[05/16/2026 18:03:11] Active player connections: 1 +[05/16/2026 18:03:12] Mirror server: client disconnected (connId=1441823162) +[05/16/2026 18:03:12] Active player connections: 0 +[05/16/2026 18:03:17] Server will be closed due to no players in, 60 +[05/16/2026 18:03:27] Server will be closed due to no players in, 50 +[05/16/2026 18:03:37] Server will be closed due to no players in, 40 +[05/16/2026 18:03:47] Server will be closed due to no players in, 30 +[05/16/2026 18:03:57] Server will be closed due to no players in, 20 +[05/16/2026 18:04:07] Server will be closed due to no players in, 10 +[05/16/2026 18:04:17] All players left, exiting +[05/16/2026 18:04:17] Dedicated match PATCH success: 200 {"ok":true,"id":30} diff --git a/games/soccar/soccar_Data/Logs/31.txt b/games/soccar/soccar_Data/Logs/31.txt new file mode 100644 index 0000000..b5b2925 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/31.txt @@ -0,0 +1,49 @@ +[05/16/2026 18:10:28] Starting server at port 26841 +[05/16/2026 18:10:28] Mirror server exception logging enabled +[05/16/2026 18:10:28] Failed to fetch red and blue names, isServer? +[05/16/2026 18:10:28] Starting auto close watchdog +[05/16/2026 18:10:28] Active player connections: 0 +[05/16/2026 18:10:31] Active player connections: 1 +[05/16/2026 18:10:32] Client 15 set team to Blue +[05/16/2026 18:10:32] Active player connections: 2 +[05/16/2026 18:10:32] Game started On Server +[05/16/2026 18:10:32] Dedicated match PATCH success: 200 {"ok":true,"id":31} +[05/16/2026 18:10:32] Client 16 set team to Red +[05/16/2026 18:10:32] Dedicated match PATCH success: 200 {"ok":true,"id":31} +[05/16/2026 18:10:39] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 18:10:39] launching puck at (4.31, -2.54) with (-300.08, 177.11) force +[05/16/2026 18:11:04] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 18:11:04] launching puck at (-2.11, -4.53) with (147.22, 315.82) force +[05/16/2026 18:11:08] Client 16 sent emoji emote 2 +[05/16/2026 18:11:14] force = 70 * 0.8372468 = 58.60727 +[05/16/2026 18:11:14] launching puck at (-0.07, 3.44) with (4.35, -201.54) force +[05/16/2026 18:11:15] Blue goal scored, blue score is now 1 +[05/16/2026 18:11:38] force = 70 * 0.6112161 = 42.78513 +[05/16/2026 18:11:38] launching puck at (-1.89, 0.88) with (80.90, -37.75) force +[05/16/2026 18:11:42] force = 70 * 0.8618231 = 60.32762 +[05/16/2026 18:11:42] launching puck at (0.14, -3.64) with (-8.34, 219.62) force +[05/16/2026 18:11:42] Red goal scored, red score is now 1 +[05/16/2026 18:11:48] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 18:11:48] launching puck at (-0.02, 5.00) with (1.10, -348.45) force +[05/16/2026 18:11:55] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 18:11:55] launching puck at (0.51, 4.97) with (-35.88, -346.60) force +[05/16/2026 18:11:55] Blue goal scored, blue score is now 2 +[05/16/2026 18:12:00] force = 70 * 0.6843433 = 47.90403 +[05/16/2026 18:12:00] launching puck at (2.06, -1.32) with (-98.63, 63.37) force +[05/16/2026 18:12:04] force = 70 * 0.7648636 = 53.54045 +[05/16/2026 18:12:04] launching puck at (0.01, 2.92) with (-0.61, -156.31) force +[05/16/2026 18:12:05] Blue goal scored, blue score is now 3 +[05/16/2026 18:12:07] Dedicated match PATCH success: 200 {"ok":true,"id":31} +[05/16/2026 18:12:09] Dedicated match winner PATCH success: 200 {"ok":true,"id":31,"winner_id":2,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/16/2026 18:12:21] Mirror server: client disconnected (connId=1441816551) +[05/16/2026 18:12:21] Active player connections: 1 +[05/16/2026 18:12:22] Mirror server: client disconnected (connId=720401230) +[05/16/2026 18:12:22] Active player connections: 0 +[05/16/2026 18:12:27] Server will be closed due to no players in, 60 +[05/16/2026 18:12:37] Server will be closed due to no players in, 50 +[05/16/2026 18:12:47] Server will be closed due to no players in, 40 +[05/16/2026 18:12:57] Server will be closed due to no players in, 30 +[05/16/2026 18:13:07] Server will be closed due to no players in, 20 +[05/16/2026 18:13:17] Server will be closed due to no players in, 10 +[05/16/2026 18:13:27] All players left, exiting +[05/16/2026 18:13:27] Dedicated match PATCH success: 200 {"ok":true,"id":31} diff --git a/games/soccar/soccar_Data/Logs/32.txt b/games/soccar/soccar_Data/Logs/32.txt new file mode 100644 index 0000000..0258a5f --- /dev/null +++ b/games/soccar/soccar_Data/Logs/32.txt @@ -0,0 +1,45 @@ +[05/16/2026 18:17:15] Starting server at port 26614 +[05/16/2026 18:17:15] Mirror server exception logging enabled +[05/16/2026 18:17:15] Failed to fetch red and blue names, isServer? +[05/16/2026 18:17:15] Starting auto close watchdog +[05/16/2026 18:17:15] Active player connections: 0 +[05/16/2026 18:17:18] Active player connections: 1 +[05/16/2026 18:17:18] Client 15 set team to Blue +[05/16/2026 18:17:19] Active player connections: 2 +[05/16/2026 18:17:19] Game started On Server +[05/16/2026 18:17:19] Client 16 set team to Red +[05/16/2026 18:17:19] Dedicated match PATCH success: 200 {"ok":true,"id":32} +[05/16/2026 18:17:19] Dedicated match PATCH success: 200 {"ok":true,"id":32} +[05/16/2026 18:17:23] force = 70 * 0.6680661 = 46.76463 +[05/16/2026 18:17:23] launching puck at (1.68, -1.66) with (-78.42, 77.81) force +[05/16/2026 18:17:28] force = 70 * 0.7603306 = 53.22314 +[05/16/2026 18:17:28] launching puck at (-0.02, 2.89) with (0.89, -153.83) force +[05/16/2026 18:17:29] Blue goal scored, blue score is now 1 +[05/16/2026 18:17:35] force = 70 * 0.7841967 = 54.89377 +[05/16/2026 18:17:35] launching puck at (2.38, -1.90) with (-130.90, 104.22) force +[05/16/2026 18:17:40] force = 70 * 0.7102547 = 49.71783 +[05/16/2026 18:17:40] launching puck at (0.01, 2.59) with (-0.58, -128.73) force +[05/16/2026 18:17:45] force = 70 * 0.681357 = 47.69499 +[05/16/2026 18:17:45] launching puck at (2.27, 0.86) with (-108.41, -41.17) force +[05/16/2026 18:17:49] force = 70 * 0.8253492 = 57.77444 +[05/16/2026 18:17:49] launching puck at (-0.03, 3.35) with (1.50, -193.34) force +[05/16/2026 18:17:50] Blue goal scored, blue score is now 2 +[05/16/2026 18:17:54] force = 70 * 0.7570701 = 52.9949 +[05/16/2026 18:17:54] launching puck at (2.68, -1.04) with (-141.77, 55.00) force +[05/16/2026 18:18:01] force = 70 * 0.8295259 = 58.06682 +[05/16/2026 18:18:01] launching puck at (0.01, 3.38) with (-0.64, -196.20) force +[05/16/2026 18:18:02] Blue goal scored, blue score is now 3 +[05/16/2026 18:18:02] Dedicated match PATCH success: 200 {"ok":true,"id":32} +[05/16/2026 18:18:05] Dedicated match winner PATCH success: 200 {"ok":true,"id":32,"winner_id":2,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/16/2026 18:18:11] Mirror server: client disconnected (connId=720372763) +[05/16/2026 18:18:11] Active player connections: 1 +[05/16/2026 18:18:14] Mirror server: client disconnected (connId=1441809103) +[05/16/2026 18:18:14] Active player connections: 0 +[05/16/2026 18:18:19] Server will be closed due to no players in, 60 +[05/16/2026 18:18:29] Server will be closed due to no players in, 50 +[05/16/2026 18:18:39] Server will be closed due to no players in, 40 +[05/16/2026 18:18:49] Server will be closed due to no players in, 30 +[05/16/2026 18:18:59] Server will be closed due to no players in, 20 +[05/16/2026 18:19:09] Server will be closed due to no players in, 10 +[05/16/2026 18:19:19] All players left, exiting +[05/16/2026 18:19:20] Dedicated match PATCH success: 200 {"ok":true,"id":32} diff --git a/games/soccar/soccar_Data/Logs/33.txt b/games/soccar/soccar_Data/Logs/33.txt new file mode 100644 index 0000000..2b9f6ca --- /dev/null +++ b/games/soccar/soccar_Data/Logs/33.txt @@ -0,0 +1,136 @@ +[05/16/2026 23:42:48] Starting server at port 26733 +[05/16/2026 23:42:48] Mirror server exception logging enabled +[05/16/2026 23:42:48] Failed to fetch red and blue names, isServer? +[05/16/2026 23:42:48] Starting auto close watchdog +[05/16/2026 23:42:48] Active player connections: 0 +[05/16/2026 23:42:51] Active player connections: 1 +[05/16/2026 23:42:51] Client 15 set team to Blue +[05/16/2026 23:42:52] Active player connections: 2 +[05/16/2026 23:42:52] Game started On Server +[05/16/2026 23:42:52] Dedicated match PATCH success: 200 {"ok":true,"id":33} +[05/16/2026 23:42:52] Client 16 set team to Red +[05/16/2026 23:42:52] Dedicated match PATCH success: 200 {"ok":true,"id":33} +[05/16/2026 23:42:56] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:42:56] launching puck at (0.19, -5.00) with (-13.41, 348.20) force +[05/16/2026 23:42:59] Client 15 sent emoji emote 3 +[05/16/2026 23:43:01] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:43:01] launching puck at (-3.43, 3.64) with (239.07, -253.50) force +[05/16/2026 23:43:07] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:43:07] launching puck at (-1.39, -4.80) with (96.74, 334.75) force +[05/16/2026 23:43:13] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:43:13] launching puck at (-0.66, 4.96) with (45.83, -345.43) force +[05/16/2026 23:43:20] Client 16 sent emoji emote 4 +[05/16/2026 23:43:24] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:43:24] launching puck at (-3.50, -3.57) with (244.25, 248.52) force +[05/16/2026 23:43:29] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:43:29] launching puck at (-0.34, 4.99) with (23.39, -347.67) force +[05/16/2026 23:43:30] Blue goal scored, blue score is now 1 +[05/16/2026 23:43:32] Client 15 sent emoji emote 5 +[05/16/2026 23:43:37] Client 16 sent emoji emote 1 +[05/16/2026 23:43:41] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:43:41] launching puck at (-1.76, -4.68) with (122.37, 326.26) force +[05/16/2026 23:43:46] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:43:46] launching puck at (-2.37, 4.40) with (165.51, -306.64) force +[05/16/2026 23:43:54] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:43:54] launching puck at (3.72, -3.35) with (-258.92, 233.19) force +[05/16/2026 23:44:00] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:44:00] launching puck at (1.33, 4.82) with (-92.69, -335.90) force +[05/16/2026 23:44:00] Blue goal scored, blue score is now 2 +[05/16/2026 23:44:01] Client 16 sent emoji emote 3 +[05/16/2026 23:44:03] Client 16 sent emoji emote 4 +[05/16/2026 23:44:06] Client 15 sent emoji emote 2 +[05/16/2026 23:44:07] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:44:07] launching puck at (0.19, -5.00) with (-13.30, 348.20) force +[05/16/2026 23:44:11] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:44:11] launching puck at (-3.00, 4.00) with (209.33, -278.57) force +[05/16/2026 23:44:16] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:44:16] launching puck at (-3.41, -3.66) with (237.72, 254.78) force +[05/16/2026 23:44:22] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:44:22] launching puck at (-1.75, 4.68) with (122.07, -326.37) force +[05/16/2026 23:44:28] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:44:28] launching puck at (-3.30, -3.76) with (229.97, 261.79) force +[05/16/2026 23:44:32] Client 16 sent emoji emote 4 +[05/16/2026 23:44:36] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:44:36] launching puck at (-4.95, -0.72) with (344.82, 50.20) force +[05/16/2026 23:44:46] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:44:46] launching puck at (2.03, -4.57) with (-141.19, 318.57) force +[05/16/2026 23:44:53] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:44:53] launching puck at (1.94, 4.61) with (-135.52, -321.02) force +[05/16/2026 23:44:57] Client 15 sent text emote Oops +[05/16/2026 23:44:59] Client 16 sent emoji emote 5 +[05/16/2026 23:45:02] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:45:02] launching puck at (-2.63, -4.25) with (183.15, 296.44) force +[05/16/2026 23:45:02] Red goal scored, red score is now 1 +[05/16/2026 23:45:06] Client 15 sent text emote Nice shot! +[05/16/2026 23:45:08] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:45:08] launching puck at (-0.04, 5.00) with (2.75, -348.44) force +[05/16/2026 23:45:16] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:45:16] launching puck at (-1.29, -4.83) with (90.23, 336.57) force +[05/16/2026 23:45:22] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:45:22] launching puck at (1.77, -4.68) with (-123.44, 325.85) force +[05/16/2026 23:45:31] force = 70 * 0.9185652 = 64.29956 +[05/16/2026 23:45:31] launching puck at (4.08, 0.90) with (-262.03, -57.61) force +[05/16/2026 23:45:36] force = 70 * 0.5336346 = 37.35442 +[05/16/2026 23:45:36] launching puck at (-1.49, -0.84) with (55.68, 31.40) force +[05/16/2026 23:45:42] Client 15 sent emoji emote 0 +[05/16/2026 23:45:44] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:45:44] launching puck at (-3.03, -3.98) with (210.99, 277.31) force +[05/16/2026 23:45:51] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:45:51] launching puck at (-0.43, 4.98) with (30.18, -347.14) force +[05/16/2026 23:45:57] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:45:57] launching puck at (-5.00, 0.08) with (348.41, -5.79) force +[05/16/2026 23:46:02] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:46:02] launching puck at (-4.94, -0.77) with (344.32, 53.54) force +[05/16/2026 23:46:08] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:46:08] launching puck at (0.03, -5.00) with (-2.36, 348.45) force +[05/16/2026 23:46:12] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:46:12] launching puck at (-4.99, -0.37) with (347.52, 25.47) force +[05/16/2026 23:46:19] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:46:19] launching puck at (-2.70, -4.21) with (188.35, 293.16) force +[05/16/2026 23:46:24] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:46:24] launching puck at (0.79, -4.94) with (-54.84, 344.11) force +[05/16/2026 23:46:29] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:46:29] launching puck at (2.80, -4.14) with (-195.32, 288.57) force +[05/16/2026 23:46:33] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:46:33] launching puck at (4.49, 2.20) with (-313.00, -153.13) force +[05/16/2026 23:46:34] Red goal scored, red score is now 2 +[05/16/2026 23:46:36] Client 16 sent emoji emote 1 +[05/16/2026 23:46:38] Client 16 sent emoji emote 5 +[05/16/2026 23:46:38] Client 15 sent emoji emote 4 +[05/16/2026 23:46:39] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:46:39] launching puck at (-0.14, 5.00) with (9.47, -348.32) force +[05/16/2026 23:46:46] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:46:46] launching puck at (4.01, -2.99) with (-279.11, 208.61) force +[05/16/2026 23:46:51] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:46:51] launching puck at (4.50, 2.18) with (-313.53, -152.06) force +[05/16/2026 23:46:58] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:46:58] launching puck at (-3.96, -3.05) with (276.10, 212.58) force +[05/16/2026 23:47:00] Client 15 sent text emote WOW +[05/16/2026 23:47:08] force = 70 * 0.5320364 = 37.24255 +[05/16/2026 23:47:08] launching puck at (-0.74, -1.53) with (27.66, 57.10) force +[05/16/2026 23:47:17] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:47:17] launching puck at (-2.27, -4.46) with (158.05, 310.55) force +[05/16/2026 23:47:20] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:47:20] launching puck at (-4.70, 1.69) with (327.83, -118.09) force +[05/16/2026 23:47:25] Client 15 sent text emote WOW +[05/16/2026 23:47:25] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:47:25] launching puck at (2.33, -4.42) with (-162.52, 308.23) force +[05/16/2026 23:47:26] Red goal scored, red score is now 3 +[05/16/2026 23:47:27] Dedicated match PATCH success: 200 {"ok":true,"id":33} +[05/16/2026 23:47:29] Client 15 sent text emote GG +[05/16/2026 23:47:29] Dedicated match winner PATCH success: 200 {"ok":true,"id":33,"winner_id":8,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/16/2026 23:47:30] Client 16 sent emoji emote 0 +[05/16/2026 23:47:33] Rematch requested +[05/16/2026 23:47:41] Rematch was confirmed, closing in 5 secs. new room : +[05/16/2026 23:47:41] {"ok":true,"entry_fee":419,"rc_prize":694,"for_red":{"Players":[{"Name":"Peach","LastSeen":1778975261701,"l10_wins":1,"l10_losses":0,"UserId":8,"rc":0.0},{"Name":"King LuLu","LastSeen":1778975261701,"l10_wins":0,"l10_losses":1,"UserId":7,"rc":0.0}],"GameName":"soccar","Port":26794,"InitTime":1778975261701,"instance_started":true,"match_id":34,"entry_fee":419,"rc_prize":694,"your_team":"red"},"for_blue":{"Players":[{"Name":"Peach","LastSeen":1778975261701,"l10_wins":1,"l10_losses":0,"UserId":8,"rc":0.0},{"Name":"King LuLu","LastSeen":1778975261701,"l10_wins":0,"l10_losses":1,"UserId":7,"rc":0.0}],"GameName":"soccar","Port":26794,"InitTime":1778975261701,"instance_started":true,"match_id":34,"entry_fee":419,"rc_prize":694,"your_team":"blue"},"your_team":""} +[05/16/2026 23:47:41] Mirror server: client disconnected (connId=1504186185) +[05/16/2026 23:47:41] Mirror server: client disconnected (connId=2091305674) +[05/16/2026 23:47:41] Active player connections: 0 +[05/16/2026 23:47:46] Server will be closed due to no players in, 60 +[05/16/2026 23:47:56] Server will be closed due to no players in, 50 +[05/16/2026 23:48:06] Server will be closed due to no players in, 40 +[05/16/2026 23:48:16] Server will be closed due to no players in, 30 +[05/16/2026 23:48:26] Server will be closed due to no players in, 20 +[05/16/2026 23:48:36] Server will be closed due to no players in, 10 +[05/16/2026 23:48:46] All players left, exiting +[05/16/2026 23:48:47] Dedicated match PATCH success: 200 {"ok":true,"id":33} diff --git a/games/soccar/soccar_Data/Logs/34.txt b/games/soccar/soccar_Data/Logs/34.txt new file mode 100644 index 0000000..b6ea99e --- /dev/null +++ b/games/soccar/soccar_Data/Logs/34.txt @@ -0,0 +1,77 @@ +[05/16/2026 23:47:44] Starting server at port 26794 +[05/16/2026 23:47:44] Mirror server exception logging enabled +[05/16/2026 23:47:44] Failed to fetch red and blue names, isServer? +[05/16/2026 23:47:44] Starting auto close watchdog +[05/16/2026 23:47:44] Active player connections: 0 +[05/16/2026 23:47:45] Active player connections: 2 +[05/16/2026 23:47:45] Game started On Server +[05/16/2026 23:47:46] Client 15 set team to Red +[05/16/2026 23:47:46] Client 16 set team to Blue +[05/16/2026 23:47:46] Dedicated match PATCH success: 200 {"ok":true,"id":34} +[05/16/2026 23:47:46] Dedicated match PATCH success: 200 {"ok":true,"id":34} +[05/16/2026 23:47:49] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:47:49] launching puck at (0.07, -5.00) with (-4.76, 348.42) force +[05/16/2026 23:47:54] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:47:54] launching puck at (0.62, 4.96) with (-43.05, -345.78) force +[05/16/2026 23:48:00] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:48:00] launching puck at (-0.40, -4.98) with (27.91, 347.33) force +[05/16/2026 23:48:06] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:48:06] launching puck at (3.60, 3.47) with (-250.82, -241.88) force +[05/16/2026 23:48:12] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:48:12] launching puck at (4.10, -2.87) with (-285.45, 199.84) force +[05/16/2026 23:48:17] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:48:17] launching puck at (3.43, 3.63) with (-239.37, -253.22) force +[05/16/2026 23:48:21] Client 16 sent emoji emote 4 +[05/16/2026 23:48:23] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:48:23] launching puck at (4.95, -0.73) with (-344.70, 50.99) force +[05/16/2026 23:48:29] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:48:29] launching puck at (4.51, -2.15) with (-314.65, 149.72) force +[05/16/2026 23:48:37] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:48:37] launching puck at (0.00, -5.00) with (-0.14, 348.45) force +[05/16/2026 23:48:41] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:48:41] launching puck at (4.90, 1.02) with (-341.15, -70.98) force +[05/16/2026 23:48:50] force = 70 * 0.7807575 = 54.65302 +[05/16/2026 23:48:50] launching puck at (2.92, 0.78) with (-159.77, -42.43) force +[05/16/2026 23:48:55] force = 70 * 0.7468554 = 52.27988 +[05/16/2026 23:48:55] launching puck at (-1.78, 2.17) with (93.08, -113.35) force +[05/16/2026 23:48:55] Blue goal scored, blue score is now 1 +[05/16/2026 23:49:00] Client 15 sent emoji emote 4 +[05/16/2026 23:49:00] Client 16 sent emoji emote 3 +[05/16/2026 23:49:02] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:49:02] launching puck at (-0.14, -5.00) with (10.02, 348.31) force +[05/16/2026 23:49:06] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:49:06] launching puck at (4.67, 1.79) with (-325.47, -124.45) force +[05/16/2026 23:49:14] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:49:14] launching puck at (-1.33, -4.82) with (92.69, 335.90) force +[05/16/2026 23:49:19] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:49:19] launching puck at (-4.97, 0.53) with (346.51, -36.76) force +[05/16/2026 23:49:31] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:49:31] launching puck at (0.51, -4.97) with (-35.50, 346.64) force +[05/16/2026 23:49:35] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:49:35] launching puck at (-0.08, 5.00) with (5.64, -348.41) force +[05/16/2026 23:49:36] Blue goal scored, blue score is now 2 +[05/16/2026 23:49:38] Client 15 sent emoji emote 1 +[05/16/2026 23:49:41] Client 16 sent emoji emote 3 +[05/16/2026 23:49:42] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:49:42] launching puck at (2.03, -4.57) with (-141.39, 318.48) force +[05/16/2026 23:49:49] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:49:49] launching puck at (1.76, 4.68) with (-122.39, -326.25) force +[05/16/2026 23:49:54] force = 70 * 0.6390401 = 44.73281 +[05/16/2026 23:49:54] launching puck at (2.18, 0.43) with (-97.30, -19.32) force +[05/16/2026 23:49:55] Blue goal scored, blue score is now 3 +[05/16/2026 23:49:55] Dedicated match PATCH success: 200 {"ok":true,"id":34} +[05/16/2026 23:49:57] Dedicated match winner PATCH success: 200 {"ok":true,"id":34,"winner_id":7,"economy":{"entry_fee_rc":419,"rc_prize":694,"participant_cc":100}} +[05/16/2026 23:50:04] Rematch requested +[05/16/2026 23:50:10] Rematch was confirmed, closing in 5 secs. new room : +[05/16/2026 23:50:10] {"ok":true,"entry_fee":227,"rc_prize":376,"for_red":{"Players":[{"Name":"Peach","LastSeen":1778975410949,"l10_wins":1,"l10_losses":1,"UserId":8,"rc":0.0},{"Name":"King LuLu","LastSeen":1778975410949,"l10_wins":1,"l10_losses":1,"UserId":7,"rc":0.0}],"GameName":"soccar","Port":26165,"InitTime":1778975410949,"instance_started":true,"match_id":35,"entry_fee":227,"rc_prize":376,"your_team":"red"},"for_blue":{"Players":[{"Name":"Peach","LastSeen":1778975410949,"l10_wins":1,"l10_losses":1,"UserId":8,"rc":0.0},{"Name":"King LuLu","LastSeen":1778975410949,"l10_wins":1,"l10_losses":1,"UserId":7,"rc":0.0}],"GameName":"soccar","Port":26165,"InitTime":1778975410949,"instance_started":true,"match_id":35,"entry_fee":227,"rc_prize":376,"your_team":"blue"},"your_team":""} +[05/16/2026 23:50:11] Mirror server: client disconnected (connId=1504226406) +[05/16/2026 23:50:11] Mirror server: client disconnected (connId=2091276441) +[05/16/2026 23:50:11] Active player connections: 0 +[05/16/2026 23:50:16] Server will be closed due to no players in, 60 +[05/16/2026 23:50:26] Server will be closed due to no players in, 50 +[05/16/2026 23:50:36] Server will be closed due to no players in, 40 +[05/16/2026 23:50:46] Server will be closed due to no players in, 30 +[05/16/2026 23:50:56] Server will be closed due to no players in, 20 +[05/16/2026 23:51:06] Server will be closed due to no players in, 10 +[05/16/2026 23:51:16] All players left, exiting +[05/16/2026 23:51:16] Dedicated match PATCH success: 200 {"ok":true,"id":34} diff --git a/games/soccar/soccar_Data/Logs/35.txt b/games/soccar/soccar_Data/Logs/35.txt new file mode 100644 index 0000000..ec6e74e --- /dev/null +++ b/games/soccar/soccar_Data/Logs/35.txt @@ -0,0 +1,59 @@ +[05/16/2026 23:50:12] Starting server at port 26165 +[05/16/2026 23:50:12] Mirror server exception logging enabled +[05/16/2026 23:50:12] Failed to fetch red and blue names, isServer? +[05/16/2026 23:50:12] Starting auto close watchdog +[05/16/2026 23:50:12] Active player connections: 0 +[05/16/2026 23:50:14] Active player connections: 1 +[05/16/2026 23:50:14] Active player connections: 2 +[05/16/2026 23:50:14] Game started On Server +[05/16/2026 23:50:15] Client 15 set team to Red +[05/16/2026 23:50:15] Client 16 set team to Blue +[05/16/2026 23:50:15] Dedicated match PATCH success: 200 {"ok":true,"id":35} +[05/16/2026 23:50:15] Dedicated match PATCH success: 200 {"ok":true,"id":35} +[05/16/2026 23:50:17] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:50:17] launching puck at (-0.11, -5.00) with (7.52, 348.37) force +[05/16/2026 23:50:21] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:50:21] launching puck at (-1.22, 4.85) with (85.21, -337.87) force +[05/16/2026 23:50:26] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:50:26] launching puck at (1.28, -4.83) with (-89.43, 336.78) force +[05/16/2026 23:50:32] Client 15 sent emoji emote 2 +[05/16/2026 23:50:33] force = 70 * 0.9917068 = 69.41948 +[05/16/2026 23:50:33] launching puck at (0.37, 4.94) with (-25.93, -343.14) force +[05/16/2026 23:50:36] Client 16 sent emoji emote 4 +[05/16/2026 23:50:38] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:50:38] launching puck at (-3.39, -3.68) with (236.16, 256.22) force +[05/16/2026 23:50:43] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:50:43] launching puck at (0.03, 5.00) with (-2.10, -348.45) force +[05/16/2026 23:50:56] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:50:56] launching puck at (-3.29, -3.76) with (229.56, 262.15) force +[05/16/2026 23:51:01] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:51:01] launching puck at (-3.88, 3.15) with (270.56, -219.58) force +[05/16/2026 23:51:07] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:51:07] launching puck at (-2.40, -4.39) with (167.32, 305.65) force +[05/16/2026 23:51:12] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:51:12] launching puck at (-4.57, -2.02) with (318.83, 140.61) force +[05/16/2026 23:51:18] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:51:18] launching puck at (0.84, -4.93) with (-58.45, 343.52) force +[05/16/2026 23:51:22] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:51:22] launching puck at (5.00, 0.04) with (-348.44, -2.52) force +[05/16/2026 23:51:27] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:51:27] launching puck at (-3.41, 3.65) with (237.99, -254.52) force +[05/16/2026 23:51:36] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:51:36] launching puck at (4.37, 2.43) with (-304.43, -169.54) force +[05/16/2026 23:51:59] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 23:51:59] launching puck at (2.97, 4.02) with (-207.30, -280.08) force +[05/16/2026 23:51:59] Mirror server transport error (connId=1504223539, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting. +[05/16/2026 23:51:59] Mirror server: client disconnected (connId=1504223539) +[05/16/2026 23:51:59] Active player connections: 1 +[05/16/2026 23:52:19] force = 70 * 0.8764656 = 61.35259 +[05/16/2026 23:52:19] launching puck at (-3.77, 0.02) with (231.39, -1.45) force +[05/16/2026 23:52:35] Mirror server: client disconnected (connId=2091293481) +[05/16/2026 23:52:35] Active player connections: 0 +[05/16/2026 23:52:40] Server will be closed due to no players in, 60 +[05/16/2026 23:52:49] Server will be closed due to no players in, 50 +[05/16/2026 23:52:59] Server will be closed due to no players in, 40 +[05/16/2026 23:53:10] Server will be closed due to no players in, 30 +[05/16/2026 23:53:19] Server will be closed due to no players in, 20 +[05/16/2026 23:53:29] Server will be closed due to no players in, 10 +[05/16/2026 23:53:39] All players left, exiting +[05/16/2026 23:53:40] Dedicated match PATCH success: 200 {"ok":true,"id":35} diff --git a/games/soccar/soccar_Data/Logs/36.txt b/games/soccar/soccar_Data/Logs/36.txt new file mode 100644 index 0000000..adc30c6 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/36.txt @@ -0,0 +1,18 @@ +[05/17/2026 00:07:09] Starting server at port 26324 +[05/17/2026 00:07:09] Mirror server exception logging enabled +[05/17/2026 00:07:09] Failed to fetch red and blue names, isServer? +[05/17/2026 00:07:09] Starting auto close watchdog +[05/17/2026 00:07:09] Active player connections: 0 +[05/17/2026 00:07:11] Active player connections: 1 +[05/17/2026 00:07:11] Client 15 set team to Red +[05/17/2026 00:07:12] Dedicated match PATCH success: 200 {"ok":true,"id":36} +[05/17/2026 00:07:43] Mirror server: client disconnected (connId=720374120) +[05/17/2026 00:07:43] Active player connections: 0 +[05/17/2026 00:07:47] Server will be closed due to no players in, 60 +[05/17/2026 00:07:57] Server will be closed due to no players in, 50 +[05/17/2026 00:08:07] Server will be closed due to no players in, 40 +[05/17/2026 00:08:17] Server will be closed due to no players in, 30 +[05/17/2026 00:08:27] Server will be closed due to no players in, 20 +[05/17/2026 00:08:37] Server will be closed due to no players in, 10 +[05/17/2026 00:08:47] All players left, exiting +[05/17/2026 00:08:48] Dedicated match PATCH success: 200 {"ok":true,"id":36} diff --git a/games/soccar/soccar_Data/Logs/37.txt b/games/soccar/soccar_Data/Logs/37.txt new file mode 100644 index 0000000..748b432 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/37.txt @@ -0,0 +1,107 @@ +[05/17/2026 00:07:54] Starting server at port 26839 +[05/17/2026 00:07:54] Mirror server exception logging enabled +[05/17/2026 00:07:54] Failed to fetch red and blue names, isServer? +[05/17/2026 00:07:54] Starting auto close watchdog +[05/17/2026 00:07:54] Active player connections: 0 +[05/17/2026 00:07:56] Active player connections: 1 +[05/17/2026 00:07:56] Client 15 set team to Blue +[05/17/2026 00:07:57] Dedicated match PATCH success: 200 {"ok":true,"id":37} +[05/17/2026 00:07:58] Active player connections: 2 +[05/17/2026 00:07:58] Game started On Server +[05/17/2026 00:07:58] Client 16 set team to Red +[05/17/2026 00:07:58] Dedicated match PATCH success: 200 {"ok":true,"id":37} +[05/17/2026 00:08:02] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:08:02] launching puck at (0.02, -5.00) with (-1.46, 348.45) force +[05/17/2026 00:08:09] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:08:09] launching puck at (1.68, 4.71) with (-116.83, -328.28) force +[05/17/2026 00:08:17] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:08:17] launching puck at (-0.14, -5.00) with (9.74, 348.32) force +[05/17/2026 00:08:24] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:08:24] launching puck at (-1.32, -4.82) with (91.95, 336.10) force +[05/17/2026 00:08:34] force = 70 * 0.9695106 = 67.86575 +[05/17/2026 00:08:34] launching puck at (4.55, -1.21) with (-309.01, 82.30) force +[05/17/2026 00:08:36] Client 15 sent emoji emote 3 +[05/17/2026 00:08:39] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:08:39] launching puck at (1.07, 4.88) with (-74.37, -340.42) force +[05/17/2026 00:08:50] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:08:50] launching puck at (4.93, -0.86) with (-343.27, 59.90) force +[05/17/2026 00:08:58] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:08:58] launching puck at (-0.23, 4.99) with (15.92, -348.09) force +[05/17/2026 00:09:03] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:09:03] launching puck at (4.33, -2.50) with (-301.87, 174.05) force +[05/17/2026 00:09:08] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:09:08] launching puck at (0.24, 4.99) with (-16.42, -348.07) force +[05/17/2026 00:09:17] force = 70 * 0.8720748 = 61.04523 +[05/17/2026 00:09:17] launching puck at (-2.30, 2.94) with (140.47, -179.40) force +[05/17/2026 00:09:20] Client 16 sent emoji emote 4 +[05/17/2026 00:09:23] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:09:23] launching puck at (-0.13, 5.00) with (8.76, -348.34) force +[05/17/2026 00:09:24] Blue goal scored, blue score is now 1 +[05/17/2026 00:09:26] Client 15 sent emoji emote 5 +[05/17/2026 00:09:29] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:09:29] launching puck at (0.05, -5.00) with (-3.34, 348.44) force +[05/17/2026 00:09:37] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:09:37] launching puck at (-3.23, -3.81) with (225.34, 265.78) force +[05/17/2026 00:09:41] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:09:41] launching puck at (-1.31, -4.82) with (91.59, 336.20) force +[05/17/2026 00:09:46] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:09:46] launching puck at (-4.52, -2.13) with (315.15, 148.65) force +[05/17/2026 00:09:55] force = 70 * 0.6849676 = 47.94773 +[05/17/2026 00:09:55] launching puck at (-1.62, -1.84) with (77.57, 88.26) force +[05/17/2026 00:09:59] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:09:59] launching puck at (-2.70, -4.21) with (187.94, 293.43) force +[05/17/2026 00:10:04] Client 15 sent emoji emote 2 +[05/17/2026 00:10:06] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:10:06] launching puck at (0.11, -5.00) with (-7.83, 348.37) force +[05/17/2026 00:10:11] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:10:11] launching puck at (-3.36, -3.71) with (233.90, 258.29) force +[05/17/2026 00:10:11] Client 16 sent text emote well played +[05/17/2026 00:10:15] force = 70 * 0.7335894 = 51.35125 +[05/17/2026 00:10:15] launching puck at (2.72, 0.19) with (-139.59, -9.70) force +[05/17/2026 00:10:20] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:10:20] launching puck at (-3.59, 3.48) with (249.92, -242.81) force +[05/17/2026 00:10:30] force = 70 * 0.8780451 = 61.46316 +[05/17/2026 00:10:30] launching puck at (-3.16, -2.09) with (194.14, 128.26) force +[05/17/2026 00:10:34] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:10:34] launching puck at (2.57, -4.29) with (-179.09, 298.91) force +[05/17/2026 00:10:34] Red goal scored, red score is now 1 +[05/17/2026 00:10:36] Client 15 sent emoji emote 1 +[05/17/2026 00:10:39] Client 15 sent text emote Oops +[05/17/2026 00:10:46] Client 16 sent emoji emote 0 +[05/17/2026 00:10:47] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:10:47] launching puck at (-4.96, 0.59) with (345.98, -41.46) force +[05/17/2026 00:10:55] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:10:55] launching puck at (3.92, -3.11) with (-272.97, 216.58) force +[05/17/2026 00:11:00] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:11:00] launching puck at (5.00, -0.06) with (-348.43, 4.04) force +[05/17/2026 00:11:04] Client 15 sent emoji emote 1 +[05/17/2026 00:11:05] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:11:05] launching puck at (1.26, -4.84) with (-88.04, 337.15) force +[05/17/2026 00:11:05] Red goal scored, red score is now 2 +[05/17/2026 00:11:09] Client 15 sent text emote Nice shot! +[05/17/2026 00:11:15] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:11:15] launching puck at (-0.72, 4.95) with (50.30, -344.80) force +[05/17/2026 00:11:28] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:11:28] launching puck at (2.86, -4.10) with (-198.99, 286.05) force +[05/17/2026 00:11:33] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:11:33] launching puck at (4.99, -0.28) with (-347.89, 19.80) force +[05/17/2026 00:11:41] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:11:41] launching puck at (3.37, -3.70) with (-234.58, 257.67) force +[05/17/2026 00:11:42] Red goal scored, red score is now 3 +[05/17/2026 00:11:43] Dedicated match PATCH success: 200 {"ok":true,"id":37} +[05/17/2026 00:11:45] Dedicated match winner PATCH success: 200 {"ok":true,"id":37,"winner_id":7,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/17/2026 00:11:45] Client 15 sent text emote Nice shot! +[05/17/2026 00:11:50] Rematch requested +[05/17/2026 00:12:01] Rematch was confirmed, closing in 5 secs. new room : +[05/17/2026 00:12:01] {"ok":true,"entry_fee":17,"rc_prize":28,"for_red":{"Players":[{"Name":"King LuLu","LastSeen":1778976721759,"l10_wins":2,"l10_losses":1,"UserId":7,"rc":0.0},{"Name":"warlock3","LastSeen":1778976721759,"l10_wins":0,"l10_losses":1,"UserId":6,"rc":0.0}],"GameName":"soccar","Port":26561,"InitTime":1778976721759,"instance_started":true,"match_id":38,"entry_fee":17,"rc_prize":28,"your_team":"red"},"for_blue":{"Players":[{"Name":"King LuLu","LastSeen":1778976721759,"l10_wins":2,"l10_losses":1,"UserId":7,"rc":0.0},{"Name":"warlock3","LastSeen":1778976721759,"l10_wins":0,"l10_losses":1,"UserId":6,"rc":0.0}],"GameName":"soccar","Port":26561,"InitTime":1778976721759,"instance_started":true,"match_id":38,"entry_fee":17,"rc_prize":28,"your_team":"blue"},"your_team":""} +[05/17/2026 00:12:02] Mirror server: client disconnected (connId=720404193) +[05/17/2026 00:12:02] Mirror server: client disconnected (connId=2091287994) +[05/17/2026 00:12:02] Active player connections: 0 +[05/17/2026 00:12:07] Server will be closed due to no players in, 60 +[05/17/2026 00:12:17] Server will be closed due to no players in, 50 +[05/17/2026 00:12:27] Server will be closed due to no players in, 40 +[05/17/2026 00:12:37] Server will be closed due to no players in, 30 +[05/17/2026 00:12:47] Server will be closed due to no players in, 20 +[05/17/2026 00:12:57] Server will be closed due to no players in, 10 +[05/17/2026 00:13:07] All players left, exiting +[05/17/2026 00:13:07] Dedicated match PATCH success: 200 {"ok":true,"id":37} diff --git a/games/soccar/soccar_Data/Logs/38.txt b/games/soccar/soccar_Data/Logs/38.txt new file mode 100644 index 0000000..7b50cc7 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/38.txt @@ -0,0 +1,19 @@ +[05/17/2026 00:12:07] Starting server at port 26561 +[05/17/2026 00:12:07] Mirror server exception logging enabled +[05/17/2026 00:12:07] Failed to fetch red and blue names, isServer? +[05/17/2026 00:12:07] Starting auto close watchdog +[05/17/2026 00:12:07] Active player connections: 0 +[05/17/2026 00:12:09] Active player connections: 1 +[05/17/2026 00:12:09] Client 15 set team to Blue +[05/17/2026 00:12:09] Dedicated match PATCH success: 200 {"ok":true,"id":38} +[05/17/2026 00:13:51] Mirror server transport error (connId=720392869, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting. +[05/17/2026 00:13:51] Mirror server: client disconnected (connId=720392869) +[05/17/2026 00:13:51] Active player connections: 0 +[05/17/2026 00:13:56] Server will be closed due to no players in, 60 +[05/17/2026 00:14:06] Server will be closed due to no players in, 50 +[05/17/2026 00:14:16] Server will be closed due to no players in, 40 +[05/17/2026 00:14:26] Server will be closed due to no players in, 30 +[05/17/2026 00:14:36] Server will be closed due to no players in, 20 +[05/17/2026 00:14:46] Server will be closed due to no players in, 10 +[05/17/2026 00:14:56] All players left, exiting +[05/17/2026 00:14:56] Dedicated match PATCH success: 200 {"ok":true,"id":38} diff --git a/games/soccar/soccar_Data/Logs/39.txt b/games/soccar/soccar_Data/Logs/39.txt new file mode 100644 index 0000000..bb04a09 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/39.txt @@ -0,0 +1,185 @@ +[05/17/2026 00:16:59] Starting server at port 26896 +[05/17/2026 00:16:59] Mirror server exception logging enabled +[05/17/2026 00:16:59] Failed to fetch red and blue names, isServer? +[05/17/2026 00:16:59] Starting auto close watchdog +[05/17/2026 00:16:59] Active player connections: 0 +[05/17/2026 00:17:02] Active player connections: 2 +[05/17/2026 00:17:02] Game started On Server +[05/17/2026 00:17:03] Client 16 set team to Red +[05/17/2026 00:17:03] Client 15 set team to Blue +[05/17/2026 00:17:04] Dedicated match PATCH success: 200 {"ok":true,"id":39} +[05/17/2026 00:17:04] Dedicated match PATCH success: 200 {"ok":true,"id":39} +[05/17/2026 00:17:07] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:17:07] launching puck at (0.15, -5.00) with (-10.38, 348.30) force +[05/17/2026 00:17:10] Client 15 sent text emote GG +[05/17/2026 00:17:12] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:17:12] launching puck at (-1.96, 4.60) with (136.68, -320.53) force +[05/17/2026 00:17:21] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:17:21] launching puck at (2.33, -4.42) with (-162.58, 308.20) force +[05/17/2026 00:17:24] Client 16 sent emoji emote 4 +[05/17/2026 00:17:26] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:17:26] launching puck at (-1.62, 4.73) with (112.95, -329.64) force +[05/17/2026 00:17:30] Client 15 sent emoji emote 3 +[05/17/2026 00:17:37] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:17:37] launching puck at (-1.33, -4.82) with (92.49, 335.96) force +[05/17/2026 00:17:42] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:17:42] launching puck at (-3.16, 3.88) with (219.94, -270.27) force +[05/17/2026 00:17:49] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:17:49] launching puck at (-4.16, -2.77) with (290.13, 192.99) force +[05/17/2026 00:17:53] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:17:53] launching puck at (-4.98, 0.48) with (346.88, -33.11) force +[05/17/2026 00:18:02] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:18:02] launching puck at (-2.50, -4.33) with (174.42, 301.66) force +[05/17/2026 00:18:06] Client 16 sent emoji emote 4 +[05/17/2026 00:18:07] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:18:07] launching puck at (-4.45, 2.28) with (310.23, -158.67) force +[05/17/2026 00:18:18] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:18:18] launching puck at (-0.21, 5.00) with (14.88, -348.14) force +[05/17/2026 00:18:28] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:18:28] launching puck at (-1.28, 4.83) with (89.23, -336.83) force +[05/17/2026 00:18:34] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:18:34] launching puck at (-2.24, -4.47) with (156.30, 311.43) force +[05/17/2026 00:18:39] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:18:39] launching puck at (-3.59, 3.48) with (250.01, -242.73) force +[05/17/2026 00:18:48] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:18:48] launching puck at (1.23, -4.85) with (-85.40, 337.83) force +[05/17/2026 00:19:09] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:19:09] launching puck at (-0.23, -4.99) with (15.92, 348.09) force +[05/17/2026 00:19:09] Red goal scored, red score is now 1 +[05/17/2026 00:19:12] Client 15 sent emoji emote 1 +[05/17/2026 00:19:18] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:19:18] launching puck at (-1.00, 4.90) with (69.51, -341.45) force +[05/17/2026 00:19:26] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:19:26] launching puck at (2.24, -4.47) with (-155.77, 311.70) force +[05/17/2026 00:19:41] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:19:41] launching puck at (3.35, 3.72) with (-233.14, -258.97) force +[05/17/2026 00:19:47] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:19:47] launching puck at (-3.57, -3.50) with (248.57, 244.19) force +[05/17/2026 00:19:53] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:19:53] launching puck at (-1.78, 4.67) with (124.28, -325.53) force +[05/17/2026 00:19:56] Client 15 sent emoji emote 4 +[05/17/2026 00:20:09] force = 70 * 0.7413425 = 51.89398 +[05/17/2026 00:20:09] launching puck at (2.03, 1.89) with (-105.16, -98.13) force +[05/17/2026 00:20:12] Client 15 sent emoji emote 0 +[05/17/2026 00:20:14] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:20:14] launching puck at (2.71, 4.20) with (-188.73, -292.91) force +[05/17/2026 00:20:16] Client 16 sent text emote well played +[05/17/2026 00:20:19] Client 15 sent emoji emote 1 +[05/17/2026 00:20:20] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:20:20] launching puck at (2.22, -4.48) with (-154.43, 312.36) force +[05/17/2026 00:20:23] Client 15 sent emoji emote 0 +[05/17/2026 00:20:24] Client 16 sent emoji emote 1 +[05/17/2026 00:20:26] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:20:26] launching puck at (3.08, 3.94) with (-214.42, -274.67) force +[05/17/2026 00:20:35] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:20:35] launching puck at (0.40, -4.98) with (-27.76, 347.35) force +[05/17/2026 00:20:39] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:20:39] launching puck at (4.22, 2.68) with (-294.09, -186.90) force +[05/17/2026 00:20:51] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:20:51] launching puck at (-1.27, -4.84) with (88.76, 336.96) force +[05/17/2026 00:20:57] Client 15 sent text emote Nice shot! +[05/17/2026 00:20:58] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:20:58] launching puck at (-1.12, -4.87) with (78.12, 339.58) force +[05/17/2026 00:20:59] Client 16 sent text emote Thanks! +[05/17/2026 00:21:06] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:21:06] launching puck at (-3.31, -3.75) with (230.37, 261.43) force +[05/17/2026 00:21:10] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:21:10] launching puck at (3.47, 3.60) with (-241.64, -251.06) force +[05/17/2026 00:21:15] force = 70 * 0.8512434 = 59.58704 +[05/17/2026 00:21:15] launching puck at (-1.61, -3.17) with (95.67, 188.91) force +[05/17/2026 00:21:16] Red goal scored, red score is now 2 +[05/17/2026 00:21:19] Client 15 sent text emote Nice shot! +[05/17/2026 00:21:19] Client 16 sent emoji emote 5 +[05/17/2026 00:21:23] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:21:23] launching puck at (-0.65, 4.96) with (45.29, -345.50) force +[05/17/2026 00:21:32] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:21:32] launching puck at (-0.92, -4.91) with (63.99, 342.53) force +[05/17/2026 00:21:37] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:21:37] launching puck at (-2.81, 4.14) with (195.51, -288.43) force +[05/17/2026 00:21:42] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:21:42] launching puck at (-1.91, -4.62) with (132.91, 322.11) force +[05/17/2026 00:21:48] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:21:48] launching puck at (-0.93, 4.91) with (64.99, -342.34) force +[05/17/2026 00:21:53] Client 15 sent text emote What a save! +[05/17/2026 00:21:54] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:21:54] launching puck at (0.23, -4.99) with (-16.02, 348.08) force +[05/17/2026 00:21:59] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:21:59] launching puck at (4.71, 1.67) with (-328.45, -116.36) force +[05/17/2026 00:22:04] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:22:04] launching puck at (-1.59, 4.74) with (111.03, -330.29) force +[05/17/2026 00:22:05] Client 15 sent emoji emote 4 +[05/17/2026 00:22:09] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:22:09] launching puck at (-2.75, 4.17) with (191.87, -290.87) force +[05/17/2026 00:22:13] Client 15 sent emoji emote 4 +[05/17/2026 00:22:17] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:22:17] launching puck at (3.42, 3.65) with (-238.17, -254.35) force +[05/17/2026 00:22:20] Client 16 sent text emote Oops +[05/17/2026 00:22:21] Client 15 sent emoji emote 3 +[05/17/2026 00:22:23] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:22:23] launching puck at (0.20, 5.00) with (-14.02, -348.17) force +[05/17/2026 00:22:23] Blue goal scored, blue score is now 1 +[05/17/2026 00:22:30] Client 16 sent text emote Nice shot! +[05/17/2026 00:22:32] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:22:32] launching puck at (-0.02, -5.00) with (1.38, 348.45) force +[05/17/2026 00:22:36] Client 15 sent text emote Thanks! +[05/17/2026 00:22:38] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:22:38] launching puck at (-3.51, 3.57) with (244.29, -248.48) force +[05/17/2026 00:22:47] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:22:47] launching puck at (-2.36, -4.41) with (164.12, 307.38) force +[05/17/2026 00:22:51] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:22:51] launching puck at (-3.80, 3.25) with (264.77, -226.53) force +[05/17/2026 00:22:57] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:22:57] launching puck at (-1.64, -4.72) with (114.02, 329.27) force +[05/17/2026 00:23:01] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:23:01] launching puck at (-4.82, -1.35) with (335.60, 93.76) force +[05/17/2026 00:23:08] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:23:08] launching puck at (-0.88, -4.92) with (61.01, 343.07) force +[05/17/2026 00:23:14] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:23:14] launching puck at (-4.93, -0.85) with (343.38, 59.24) force +[05/17/2026 00:23:17] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:23:17] launching puck at (-1.03, -4.89) with (71.72, 340.99) force +[05/17/2026 00:23:21] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:23:21] launching puck at (-0.64, -4.96) with (44.75, 345.57) force +[05/17/2026 00:23:41] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:23:41] launching puck at (-2.35, -4.41) with (163.81, 307.55) force +[05/17/2026 00:23:52] Client 15 sent emoji emote 5 +[05/17/2026 00:23:53] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:23:53] launching puck at (-1.82, -4.66) with (126.49, 324.68) force +[05/17/2026 00:23:58] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:23:58] launching puck at (4.76, 1.54) with (-331.47, -107.47) force +[05/17/2026 00:24:02] force = 70 * 0.983184 = 68.82288 +[05/17/2026 00:24:02] launching puck at (4.38, -2.12) with (-301.14, 146.01) force +[05/17/2026 00:24:06] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:24:06] launching puck at (4.88, 1.08) with (-340.23, -75.26) force +[05/17/2026 00:24:07] Client 16 sent text emote What a save! +[05/17/2026 00:24:17] Client 15 sent emoji emote 3 +[05/17/2026 00:24:24] force = 70 * 0.8883166 = 62.18216 +[05/17/2026 00:24:24] launching puck at (-3.27, 2.08) with (203.52, -129.54) force +[05/17/2026 00:24:31] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:24:31] launching puck at (2.73, 4.19) with (-190.57, -291.73) force +[05/17/2026 00:24:44] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:24:44] launching puck at (2.95, -4.03) with (-205.83, 281.16) force +[05/17/2026 00:24:47] Client 16 sent text emote Oops +[05/17/2026 00:24:50] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:24:50] launching puck at (-4.31, 2.53) with (300.62, -176.20) force +[05/17/2026 00:24:54] Client 15 sent emoji emote 1 +[05/17/2026 00:24:56] force = 70 * 0.852049 = 59.64343 +[05/17/2026 00:24:56] launching puck at (0.92, -3.44) with (-54.86, 205.14) force +[05/17/2026 00:24:56] Red goal scored, red score is now 3 +[05/17/2026 00:24:56] Client 15 sent text emote GG +[05/17/2026 00:24:57] Dedicated match PATCH success: 200 {"ok":true,"id":39} +[05/17/2026 00:24:59] Dedicated match winner PATCH success: 200 {"ok":true,"id":39,"winner_id":7,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/17/2026 00:25:07] Rematch requested +[05/17/2026 00:25:10] Rematch was confirmed, closing in 5 secs. new room : +[05/17/2026 00:25:10] {"ok":true,"entry_fee":47,"rc_prize":78,"for_red":{"Players":[{"Name":"King LuLu","LastSeen":1778977510838,"l10_wins":3,"l10_losses":1,"UserId":7,"rc":0.0},{"Name":"warlock","LastSeen":1778977510838,"l10_wins":4,"l10_losses":2,"UserId":2,"rc":0.0}],"GameName":"soccar","Port":26660,"InitTime":1778977510838,"instance_started":true,"match_id":40,"entry_fee":47,"rc_prize":78,"your_team":"red"},"for_blue":{"Players":[{"Name":"King LuLu","LastSeen":1778977510838,"l10_wins":3,"l10_losses":1,"UserId":7,"rc":0.0},{"Name":"warlock","LastSeen":1778977510838,"l10_wins":4,"l10_losses":2,"UserId":2,"rc":0.0}],"GameName":"soccar","Port":26660,"InitTime":1778977510838,"instance_started":true,"match_id":40,"entry_fee":47,"rc_prize":78,"your_team":"blue"},"your_team":""} +[05/17/2026 00:25:11] Mirror server: client disconnected (connId=1441810715) +[05/17/2026 00:25:11] Mirror server: client disconnected (connId=2091269351) +[05/17/2026 00:25:11] Active player connections: 0 +[05/17/2026 00:25:16] Server will be closed due to no players in, 60 +[05/17/2026 00:25:26] Server will be closed due to no players in, 50 +[05/17/2026 00:25:36] Server will be closed due to no players in, 40 +[05/17/2026 00:25:46] Server will be closed due to no players in, 30 +[05/17/2026 00:25:56] Server will be closed due to no players in, 20 +[05/17/2026 00:26:06] Server will be closed due to no players in, 10 +[05/17/2026 00:26:16] All players left, exiting +[05/17/2026 00:26:16] Dedicated match PATCH success: 200 {"ok":true,"id":39} diff --git a/games/soccar/soccar_Data/Logs/4.txt b/games/soccar/soccar_Data/Logs/4.txt new file mode 100644 index 0000000..9e78b8e --- /dev/null +++ b/games/soccar/soccar_Data/Logs/4.txt @@ -0,0 +1,16 @@ +[05/14/2026 12:20:19] Starting server at port 26596 +[05/14/2026 12:20:19] Failed to fetch red and blue names, isServer? +[05/14/2026 12:20:19] Starting auto close watchdog +[05/14/2026 12:20:19] Active player connections: 0 +[05/14/2026 12:20:23] Active player connections: 1 +[05/14/2026 12:20:23] Client 15 set team to Blue +[05/14/2026 12:20:24] Dedicated match PATCH success: 200 {"ok":true,"id":4} +[05/14/2026 12:20:56] Active player connections: 0 +[05/14/2026 12:21:01] Server will be closed due to no players in, 60 +[05/14/2026 12:21:11] Server will be closed due to no players in, 50 +[05/14/2026 12:21:21] Server will be closed due to no players in, 40 +[05/14/2026 12:21:31] Server will be closed due to no players in, 30 +[05/14/2026 12:21:41] Server will be closed due to no players in, 20 +[05/14/2026 12:21:51] Server will be closed due to no players in, 10 +[05/14/2026 12:22:01] All players left, exiting +[05/14/2026 12:22:02] Dedicated match PATCH success: 200 {"ok":true,"id":4} diff --git a/games/soccar/soccar_Data/Logs/40.txt b/games/soccar/soccar_Data/Logs/40.txt new file mode 100644 index 0000000..7fc01b9 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/40.txt @@ -0,0 +1,134 @@ +[05/17/2026 00:25:13] Starting server at port 26660 +[05/17/2026 00:25:13] Mirror server exception logging enabled +[05/17/2026 00:25:13] Failed to fetch red and blue names, isServer? +[05/17/2026 00:25:13] Starting auto close watchdog +[05/17/2026 00:25:13] Active player connections: 0 +[05/17/2026 00:25:15] Active player connections: 2 +[05/17/2026 00:25:15] Game started On Server +[05/17/2026 00:25:15] Client 15 set team to Red +[05/17/2026 00:25:15] Client 16 set team to Blue +[05/17/2026 00:25:15] Dedicated match PATCH success: 200 {"ok":true,"id":40} +[05/17/2026 00:25:15] Dedicated match PATCH success: 200 {"ok":true,"id":40} +[05/17/2026 00:25:17] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:25:17] launching puck at (0.07, -5.00) with (-4.93, 348.42) force +[05/17/2026 00:25:23] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:25:23] launching puck at (2.68, 4.22) with (-186.60, -294.28) force +[05/17/2026 00:25:28] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:25:28] launching puck at (1.27, -4.84) with (-88.77, 336.96) force +[05/17/2026 00:25:33] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:25:33] launching puck at (4.91, 0.97) with (-341.88, -67.35) force +[05/17/2026 00:25:38] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:25:38] launching puck at (0.90, -4.92) with (-62.59, 342.79) force +[05/17/2026 00:25:41] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:25:41] launching puck at (0.75, -4.94) with (-52.55, 344.47) force +[05/17/2026 00:25:43] Client 15 sent emoji emote 4 +[05/17/2026 00:25:45] force = 70 * 0.372016 = 26.04112 +[05/17/2026 00:25:45] launching puck at (-0.27, -1.12) with (7.15, 29.30) force +[05/17/2026 00:25:46] Red goal scored, red score is now 1 +[05/17/2026 00:25:46] Client 16 sent text emote Oops +[05/17/2026 00:25:47] Client 16 sent text emote Nice shot! +[05/17/2026 00:25:50] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:25:50] launching puck at (-0.23, 4.99) with (15.90, -348.09) force +[05/17/2026 00:25:56] Client 15 sent text emote Thanks! +[05/17/2026 00:25:59] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:25:59] launching puck at (4.41, -2.35) with (-307.46, 163.97) force +[05/17/2026 00:26:04] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:26:04] launching puck at (-2.69, 4.21) with (187.48, -293.72) force +[05/17/2026 00:26:05] Blue goal scored, blue score is now 1 +[05/17/2026 00:26:07] Client 16 sent emoji emote 5 +[05/17/2026 00:26:08] force = 70 * 0.9937363 = 69.56154 +[05/17/2026 00:26:08] launching puck at (4.79, -1.37) with (-333.11, 95.00) force +[05/17/2026 00:26:12] Client 15 sent text emote WOW +[05/17/2026 00:26:13] Client 15 sent text emote Oops +[05/17/2026 00:26:15] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:26:15] launching puck at (1.97, 4.60) with (-137.04, -320.37) force +[05/17/2026 00:26:19] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:26:19] launching puck at (1.48, -4.78) with (-103.00, 332.88) force +[05/17/2026 00:26:24] Client 15 sent emoji emote 2 +[05/17/2026 00:26:25] Client 16 sent text emote WOW +[05/17/2026 00:26:27] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:26:27] launching puck at (2.28, -4.45) with (-159.19, 309.96) force +[05/17/2026 00:26:36] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:26:36] launching puck at (2.35, -4.41) with (-164.10, 307.39) force +[05/17/2026 00:26:40] Client 16 sent text emote WOW +[05/17/2026 00:26:43] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:26:43] launching puck at (0.95, -4.91) with (-66.37, 342.07) force +[05/17/2026 00:26:43] Client 15 sent text emote WOW +[05/17/2026 00:26:47] Client 16 sent text emote Nice shot! +[05/17/2026 00:26:48] force = 70 * 0.726084 = 50.82588 +[05/17/2026 00:26:48] launching puck at (-0.49, -2.64) with (24.70, 133.98) force +[05/17/2026 00:26:49] Red goal scored, red score is now 2 +[05/17/2026 00:26:53] Client 15 sent text emote Thanks! +[05/17/2026 00:26:54] Client 15 sent emoji emote 5 +[05/17/2026 00:26:55] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:26:55] launching puck at (-1.80, 4.66) with (125.69, -324.99) force +[05/17/2026 00:26:59] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:26:59] launching puck at (2.68, -4.22) with (-186.94, 294.06) force +[05/17/2026 00:27:05] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:27:05] launching puck at (-0.50, 4.97) with (35.14, -346.68) force +[05/17/2026 00:27:06] Blue goal scored, blue score is now 2 +[05/17/2026 00:27:09] Client 16 sent emoji emote 2 +[05/17/2026 00:27:15] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:27:15] launching puck at (0.21, -5.00) with (-14.39, 348.16) force +[05/17/2026 00:27:20] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:27:20] launching puck at (-0.77, 4.94) with (53.98, -344.25) force +[05/17/2026 00:27:26] Client 16 sent text emote Oops +[05/17/2026 00:27:27] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:27:27] launching puck at (3.22, -3.83) with (-224.09, 266.84) force +[05/17/2026 00:27:33] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:27:33] launching puck at (-0.09, 5.00) with (6.27, -348.40) force +[05/17/2026 00:27:38] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:27:38] launching puck at (-2.04, -4.56) with (142.25, 318.10) force +[05/17/2026 00:27:39] Client 16 sent text emote Oops +[05/17/2026 00:27:43] Client 15 sent emoji emote 4 +[05/17/2026 00:27:43] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:27:43] launching puck at (-4.97, -0.50) with (346.70, 34.91) force +[05/17/2026 00:27:51] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:27:51] launching puck at (-1.00, -4.90) with (69.44, 341.46) force +[05/17/2026 00:27:56] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:27:56] launching puck at (-0.20, -5.00) with (14.19, 348.16) force +[05/17/2026 00:28:04] force = 70 * 0.712303 = 49.86121 +[05/17/2026 00:28:04] launching puck at (2.55, -0.52) with (-127.07, 25.91) force +[05/17/2026 00:28:11] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:28:11] launching puck at (2.80, -4.14) with (-194.90, 288.85) force +[05/17/2026 00:28:19] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:28:19] launching puck at (1.58, -4.74) with (-109.97, 330.64) force +[05/17/2026 00:28:23] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:28:23] launching puck at (0.56, -4.97) with (-38.72, 346.30) force +[05/17/2026 00:28:28] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:28:28] launching puck at (3.12, -3.91) with (-217.28, 272.41) force +[05/17/2026 00:28:31] Client 15 sent text emote well played +[05/17/2026 00:28:34] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:28:34] launching puck at (4.94, 0.78) with (-344.23, -54.07) force +[05/17/2026 00:28:40] Client 16 sent text emote Oops +[05/17/2026 00:28:41] force = 70 * 0.663118 = 46.41826 +[05/17/2026 00:28:41] launching puck at (-2.34, 0.09) with (108.39, -4.31) force +[05/17/2026 00:28:46] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:28:46] launching puck at (-4.12, -2.84) with (286.83, 197.86) force +[05/17/2026 00:28:53] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:28:53] launching puck at (-4.85, -1.23) with (337.73, 85.79) force +[05/17/2026 00:28:58] Client 16 sent text emote WOW +[05/17/2026 00:29:00] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:29:00] launching puck at (0.83, -4.93) with (-57.56, 343.67) force +[05/17/2026 00:29:04] Client 15 sent text emote What a save! +[05/17/2026 00:29:06] force = 70 * 0.7671109 = 53.69776 +[05/17/2026 00:29:06] launching puck at (0.49, -2.89) with (-26.39, 155.33) force +[05/17/2026 00:29:06] Red goal scored, red score is now 3 +[05/17/2026 00:29:07] Client 16 sent text emote Nice shot! +[05/17/2026 00:29:07] Dedicated match PATCH success: 200 {"ok":true,"id":40} +[05/17/2026 00:29:09] Dedicated match winner PATCH success: 200 {"ok":true,"id":40,"winner_id":7,"economy":{"entry_fee_rc":47,"rc_prize":78,"participant_cc":100}} +[05/17/2026 00:29:09] Client 16 sent text emote GG +[05/17/2026 00:29:14] Rematch requested +[05/17/2026 00:29:21] Rematch was confirmed, closing in 5 secs. new room : +[05/17/2026 00:29:21] {"ok":true,"entry_fee":26,"rc_prize":42,"for_red":{"Players":[{"Name":"King LuLu","LastSeen":1778977761904,"l10_wins":4,"l10_losses":1,"UserId":7,"rc":0.0},{"Name":"warlock","LastSeen":1778977761904,"l10_wins":3,"l10_losses":3,"UserId":2,"rc":0.0}],"GameName":"soccar","Port":26153,"InitTime":1778977761904,"instance_started":true,"match_id":41,"entry_fee":26,"rc_prize":42,"your_team":"red"},"for_blue":{"Players":[{"Name":"King LuLu","LastSeen":1778977761904,"l10_wins":4,"l10_losses":1,"UserId":7,"rc":0.0},{"Name":"warlock","LastSeen":1778977761904,"l10_wins":3,"l10_losses":3,"UserId":2,"rc":0.0}],"GameName":"soccar","Port":26153,"InitTime":1778977761904,"instance_started":true,"match_id":41,"entry_fee":26,"rc_prize":42,"your_team":"blue"},"your_team":""} +[05/17/2026 00:29:22] Mirror server: client disconnected (connId=1441823168) +[05/17/2026 00:29:22] Mirror server: client disconnected (connId=2091293710) +[05/17/2026 00:29:22] Active player connections: 0 +[05/17/2026 00:29:27] Server will be closed due to no players in, 60 +[05/17/2026 00:29:37] Server will be closed due to no players in, 50 +[05/17/2026 00:29:47] Server will be closed due to no players in, 40 +[05/17/2026 00:29:57] Server will be closed due to no players in, 30 +[05/17/2026 00:30:07] Server will be closed due to no players in, 20 +[05/17/2026 00:30:17] Server will be closed due to no players in, 10 +[05/17/2026 00:30:27] All players left, exiting +[05/17/2026 00:30:28] Dedicated match PATCH success: 200 {"ok":true,"id":40} diff --git a/games/soccar/soccar_Data/Logs/41.txt b/games/soccar/soccar_Data/Logs/41.txt new file mode 100644 index 0000000..5a484c1 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/41.txt @@ -0,0 +1,154 @@ +[05/17/2026 00:29:24] Starting server at port 26153 +[05/17/2026 00:29:24] Mirror server exception logging enabled +[05/17/2026 00:29:24] Failed to fetch red and blue names, isServer? +[05/17/2026 00:29:24] Starting auto close watchdog +[05/17/2026 00:29:24] Active player connections: 0 +[05/17/2026 00:29:25] Active player connections: 1 +[05/17/2026 00:29:26] Client 15 set team to Red +[05/17/2026 00:29:26] Active player connections: 2 +[05/17/2026 00:29:26] Game started On Server +[05/17/2026 00:29:26] Dedicated match PATCH success: 200 {"ok":true,"id":41} +[05/17/2026 00:29:26] Client 16 set team to Blue +[05/17/2026 00:29:26] Dedicated match PATCH success: 200 {"ok":true,"id":41} +[05/17/2026 00:29:29] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:29:29] launching puck at (-0.02, -5.00) with (1.13, 348.45) force +[05/17/2026 00:29:35] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:29:35] launching puck at (-3.69, 3.37) with (257.48, -234.79) force +[05/17/2026 00:29:43] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:29:43] launching puck at (-2.35, -4.42) with (163.51, 307.71) force +[05/17/2026 00:29:47] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:29:47] launching puck at (-2.31, 4.44) with (160.68, -309.19) force +[05/17/2026 00:30:00] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:30:00] launching puck at (-0.92, -4.91) with (64.19, 342.49) force +[05/17/2026 00:30:05] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:30:05] launching puck at (0.15, 5.00) with (-10.78, -348.29) force +[05/17/2026 00:30:12] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:30:12] launching puck at (0.98, -4.90) with (-68.22, 341.71) force +[05/17/2026 00:30:18] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:30:18] launching puck at (0.03, 5.00) with (-1.92, -348.45) force +[05/17/2026 00:30:18] Blue goal scored, blue score is now 1 +[05/17/2026 00:30:21] Client 16 sent emoji emote 2 +[05/17/2026 00:30:26] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:30:26] launching puck at (-0.02, -5.00) with (1.16, 348.45) force +[05/17/2026 00:30:29] Client 15 sent text emote Nice shot! +[05/17/2026 00:30:33] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:30:33] launching puck at (-0.44, 4.98) with (30.74, -347.09) force +[05/17/2026 00:30:38] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:30:38] launching puck at (-4.47, -2.25) with (311.25, 156.65) force +[05/17/2026 00:30:42] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:30:42] launching puck at (3.77, -3.28) with (-262.73, 228.89) force +[05/17/2026 00:30:46] Client 16 sent text emote Oops +[05/17/2026 00:30:53] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:30:53] launching puck at (4.98, -0.49) with (-346.79, 34.01) force +[05/17/2026 00:30:58] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:30:58] launching puck at (4.95, 0.70) with (-345.03, -48.70) force +[05/17/2026 00:31:03] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:31:03] launching puck at (-4.97, -0.56) with (346.29, 38.76) force +[05/17/2026 00:31:08] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:31:08] launching puck at (-0.80, 4.94) with (55.70, -343.97) force +[05/17/2026 00:31:12] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:31:12] launching puck at (-2.93, 4.05) with (204.53, -282.11) force +[05/17/2026 00:31:12] Client 16 sent text emote Oops +[05/17/2026 00:31:15] Client 15 sent emoji emote 4 +[05/17/2026 00:31:16] Client 16 sent emoji emote 5 +[05/17/2026 00:31:19] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:31:19] launching puck at (2.07, 4.55) with (-144.50, -317.08) force +[05/17/2026 00:31:22] Client 16 sent emoji emote 4 +[05/17/2026 00:31:25] Client 15 sent text emote WOW +[05/17/2026 00:31:29] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:31:29] launching puck at (-2.20, 4.49) with (153.59, -312.78) force +[05/17/2026 00:31:34] Client 15 sent text emote What a save! +[05/17/2026 00:31:34] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:31:34] launching puck at (-0.36, 4.99) with (25.26, -347.54) force +[05/17/2026 00:31:39] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:31:39] launching puck at (2.22, -4.48) with (-154.50, 312.33) force +[05/17/2026 00:31:40] Client 16 sent emoji emote 1 +[05/17/2026 00:31:43] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:31:43] launching puck at (-0.38, 4.99) with (26.44, -347.45) force +[05/17/2026 00:31:50] Client 16 sent emoji emote 1 +[05/17/2026 00:32:01] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:32:01] launching puck at (-2.64, 4.25) with (183.79, -296.04) force +[05/17/2026 00:32:05] Client 15 sent emoji emote 5 +[05/17/2026 00:32:06] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:32:06] launching puck at (-4.81, 1.35) with (335.44, -94.35) force +[05/17/2026 00:32:11] Client 16 sent text emote Oops +[05/17/2026 00:32:12] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:32:12] launching puck at (-4.86, -1.17) with (338.70, 81.88) force +[05/17/2026 00:32:16] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:32:16] launching puck at (-2.45, 4.36) with (170.42, -303.93) force +[05/17/2026 00:32:21] Client 16 sent emoji emote 3 +[05/17/2026 00:32:25] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:32:25] launching puck at (-2.79, 4.15) with (194.16, -289.34) force +[05/17/2026 00:32:30] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:32:30] launching puck at (-4.15, 2.78) with (289.48, -193.96) force +[05/17/2026 00:32:35] Client 16 sent text emote What a save! +[05/17/2026 00:32:36] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:32:36] launching puck at (0.34, -4.99) with (-23.81, 347.64) force +[05/17/2026 00:32:41] Client 16 sent text emote WOW +[05/17/2026 00:32:43] Client 15 sent text emote WOW +[05/17/2026 00:32:46] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:32:46] launching puck at (2.79, -4.15) with (-194.09, 289.39) force +[05/17/2026 00:32:49] Client 16 sent text emote Nice shot! +[05/17/2026 00:32:50] force = 70 * 0.6276746 = 43.93722 +[05/17/2026 00:32:50] launching puck at (1.85, -1.13) with (-81.15, 49.49) force +[05/17/2026 00:32:54] Client 16 sent emoji emote 0 +[05/17/2026 00:32:54] Client 15 sent text emote Oops +[05/17/2026 00:32:56] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:32:56] launching puck at (-2.96, -4.03) with (206.63, 280.58) force +[05/17/2026 00:33:01] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:33:01] launching puck at (2.47, -4.35) with (-171.84, 303.13) force +[05/17/2026 00:33:04] Client 16 sent emoji emote 0 +[05/17/2026 00:33:06] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:33:06] launching puck at (-3.63, 3.43) with (253.22, -239.37) force +[05/17/2026 00:33:11] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:33:11] launching puck at (-4.83, -1.29) with (336.65, 89.91) force +[05/17/2026 00:33:17] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:33:17] launching puck at (0.92, -4.91) with (-64.45, 342.44) force +[05/17/2026 00:33:21] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:33:21] launching puck at (-0.77, -4.94) with (53.32, 344.35) force +[05/17/2026 00:33:21] Red goal scored, red score is now 1 +[05/17/2026 00:33:21] Client 16 sent text emote Oops +[05/17/2026 00:33:23] Client 16 sent text emote Nice shot! +[05/17/2026 00:33:26] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:33:26] launching puck at (-4.94, 0.78) with (344.19, -54.33) force +[05/17/2026 00:33:34] Client 15 sent text emote Thanks! +[05/17/2026 00:33:36] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:33:36] launching puck at (1.84, -4.65) with (-128.27, 323.98) force +[05/17/2026 00:33:40] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:33:40] launching puck at (1.91, 4.62) with (-132.96, -322.09) force +[05/17/2026 00:33:48] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:33:48] launching puck at (2.09, -4.54) with (-145.68, 316.54) force +[05/17/2026 00:33:53] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:33:53] launching puck at (2.71, 4.20) with (-189.00, -292.74) force +[05/17/2026 00:33:57] Client 16 sent text emote Oops +[05/17/2026 00:34:04] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:34:04] launching puck at (-3.55, 3.52) with (247.69, -245.09) force +[05/17/2026 00:34:09] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:34:09] launching puck at (-2.15, 4.51) with (149.73, -314.64) force +[05/17/2026 00:34:09] Blue goal scored, blue score is now 2 +[05/17/2026 00:34:12] Client 16 sent emoji emote 5 +[05/17/2026 00:34:14] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:34:14] launching puck at (0.17, -5.00) with (-11.82, 348.25) force +[05/17/2026 00:34:19] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:34:19] launching puck at (-1.44, 4.79) with (100.54, -333.63) force +[05/17/2026 00:34:23] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:34:23] launching puck at (-4.45, -2.28) with (310.15, 158.83) force +[05/17/2026 00:34:28] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 00:34:28] launching puck at (-1.42, 4.79) with (98.97, -334.10) force +[05/17/2026 00:34:28] Blue goal scored, blue score is now 3 +[05/17/2026 00:34:29] Dedicated match PATCH success: 200 {"ok":true,"id":41} +[05/17/2026 00:34:30] Client 16 sent emoji emote 5 +[05/17/2026 00:34:31] Client 15 sent text emote GG +[05/17/2026 00:34:31] Dedicated match winner PATCH success: 200 {"ok":true,"id":41,"winner_id":2,"economy":{"entry_fee_rc":26,"rc_prize":42,"participant_cc":100}} +[05/17/2026 00:34:35] Mirror server: client disconnected (connId=2091254113) +[05/17/2026 00:34:35] Active player connections: 1 +[05/17/2026 00:34:36] Mirror server: client disconnected (connId=1441810418) +[05/17/2026 00:34:36] Active player connections: 0 +[05/17/2026 00:34:41] Server will be closed due to no players in, 60 +[05/17/2026 00:34:51] Server will be closed due to no players in, 50 +[05/17/2026 00:35:01] Server will be closed due to no players in, 40 +[05/17/2026 00:35:11] Server will be closed due to no players in, 30 +[05/17/2026 00:35:21] Server will be closed due to no players in, 20 +[05/17/2026 00:35:31] Server will be closed due to no players in, 10 +[05/17/2026 00:35:41] All players left, exiting +[05/17/2026 00:35:41] Dedicated match PATCH success: 200 {"ok":true,"id":41} diff --git a/games/soccar/soccar_Data/Logs/42.txt b/games/soccar/soccar_Data/Logs/42.txt new file mode 100644 index 0000000..76a2dd0 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/42.txt @@ -0,0 +1,48 @@ +[05/17/2026 09:24:20] Starting server at port 26846 +[05/17/2026 09:24:20] Mirror server exception logging enabled +[05/17/2026 09:24:20] Failed to fetch red and blue names, isServer? +[05/17/2026 09:24:20] Starting auto close watchdog +[05/17/2026 09:24:20] Active player connections: 0 +[05/17/2026 09:24:22] Active player connections: 1 +[05/17/2026 09:24:23] Active player connections: 2 +[05/17/2026 09:24:23] Game started On Server +[05/17/2026 09:24:23] Client 15 set team to Blue +[05/17/2026 09:24:23] Client 16 set team to Red +[05/17/2026 09:24:24] Dedicated match PATCH success: 200 {"ok":true,"id":42} +[05/17/2026 09:24:24] Dedicated match PATCH success: 200 {"ok":true,"id":42} +[05/17/2026 09:24:31] force = 70 * 0.5112269 = 35.78588 +[05/17/2026 09:24:31] launching puck at (1.47, -0.65) with (-52.56, 23.11) force +[05/17/2026 09:24:36] force = 70 * 0.8372349 = 58.60644 +[05/17/2026 09:24:36] launching puck at (-0.02, 3.44) with (1.02, -201.58) force +[05/17/2026 09:24:37] Blue goal scored, blue score is now 1 +[05/17/2026 09:24:42] force = 70 * 0.4840907 = 33.88635 +[05/17/2026 09:24:42] launching puck at (1.48, -0.15) with (-50.21, 5.25) force +[05/17/2026 09:24:46] force = 70 * 0.6887982 = 48.21587 +[05/17/2026 09:24:46] launching puck at (-0.10, 2.47) with (4.82, -119.05) force +[05/17/2026 09:24:54] force = 70 * 0.8494166 = 59.45916 +[05/17/2026 09:24:54] launching puck at (0.41, 3.51) with (-24.63, -208.95) force +[05/17/2026 09:24:57] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 09:24:57] launching puck at (1.16, 4.86) with (-81.01, -338.91) force +[05/17/2026 09:24:58] Blue goal scored, blue score is now 2 +[05/17/2026 09:25:03] force = 70 * 0.7100629 = 49.7044 +[05/17/2026 09:25:03] launching puck at (2.58, -0.20) with (-128.27, 9.81) force +[05/17/2026 09:25:07] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 09:25:07] launching puck at (-0.02, 5.00) with (1.21, -348.45) force +[05/17/2026 09:25:07] Blue goal scored, blue score is now 3 +[05/17/2026 09:25:08] Dedicated match PATCH success: 200 {"ok":true,"id":42} +[05/17/2026 09:25:11] Dedicated match winner PATCH success: 200 {"ok":true,"id":42,"winner_id":2,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/17/2026 09:25:17] Rematch requested +[05/17/2026 09:25:21] Rematch was confirmed, closing in 5 secs. new room : +[05/17/2026 09:25:21] {"ok":true,"entry_fee":9,"rc_prize":14,"for_red":{"Players":[{"Name":"warlock3","LastSeen":1779009921892,"l10_wins":0,"l10_losses":2,"UserId":6,"rc":0.0},{"Name":"warlock","LastSeen":1779009921892,"l10_wins":5,"l10_losses":3,"UserId":2,"rc":0.0}],"GameName":"soccar","Port":26515,"InitTime":1779009921892,"instance_started":true,"match_id":43,"entry_fee":9,"rc_prize":14,"your_team":"red"},"for_blue":{"Players":[{"Name":"warlock3","LastSeen":1779009921892,"l10_wins":0,"l10_losses":2,"UserId":6,"rc":0.0},{"Name":"warlock","LastSeen":1779009921892,"l10_wins":5,"l10_losses":3,"UserId":2,"rc":0.0}],"GameName":"soccar","Port":26515,"InitTime":1779009921892,"instance_started":true,"match_id":43,"entry_fee":9,"rc_prize":14,"your_team":"blue"},"your_team":""} +[05/17/2026 09:25:22] Mirror server: client disconnected (connId=720374457) +[05/17/2026 09:25:22] Active player connections: 1 +[05/17/2026 09:25:22] Mirror server: client disconnected (connId=1441812151) +[05/17/2026 09:25:22] Active player connections: 0 +[05/17/2026 09:25:27] Server will be closed due to no players in, 60 +[05/17/2026 09:25:37] Server will be closed due to no players in, 50 +[05/17/2026 09:25:47] Server will be closed due to no players in, 40 +[05/17/2026 09:25:57] Server will be closed due to no players in, 30 +[05/17/2026 09:26:07] Server will be closed due to no players in, 20 +[05/17/2026 09:26:17] Server will be closed due to no players in, 10 +[05/17/2026 09:26:27] All players left, exiting +[05/17/2026 09:26:28] Dedicated match PATCH success: 200 {"ok":true,"id":42} diff --git a/games/soccar/soccar_Data/Logs/43.txt b/games/soccar/soccar_Data/Logs/43.txt new file mode 100644 index 0000000..4763941 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/43.txt @@ -0,0 +1,13 @@ +[05/17/2026 09:25:24] Starting server at port 26515 +[05/17/2026 09:25:24] Mirror server exception logging enabled +[05/17/2026 09:25:24] Failed to fetch red and blue names, isServer? +[05/17/2026 09:25:24] Starting auto close watchdog +[05/17/2026 09:25:24] Active player connections: 0 +[05/17/2026 09:25:29] Server will be closed due to no players in, 60 +[05/17/2026 09:25:39] Server will be closed due to no players in, 50 +[05/17/2026 09:25:49] Server will be closed due to no players in, 40 +[05/17/2026 09:25:59] Server will be closed due to no players in, 30 +[05/17/2026 09:26:09] Server will be closed due to no players in, 20 +[05/17/2026 09:26:19] Server will be closed due to no players in, 10 +[05/17/2026 09:26:29] No players joined, exiting +[05/17/2026 09:26:29] Dedicated match PATCH success: 200 {"ok":true,"id":43} diff --git a/games/soccar/soccar_Data/Logs/44.txt b/games/soccar/soccar_Data/Logs/44.txt new file mode 100644 index 0000000..81c9c18 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/44.txt @@ -0,0 +1,48 @@ +[05/17/2026 12:57:34] Starting server at port 26767 +[05/17/2026 12:57:34] Mirror server exception logging enabled +[05/17/2026 12:57:34] Failed to fetch red and blue names, isServer? +[05/17/2026 12:57:34] Starting auto close watchdog +[05/17/2026 12:57:34] Active player connections: 0 +[05/17/2026 12:57:38] Active player connections: 1 +[05/17/2026 12:57:39] Client 15 set team to Red +[05/17/2026 12:57:39] Active player connections: 2 +[05/17/2026 12:57:39] Game started On Server +[05/17/2026 12:57:39] Client 16 set team to Blue +[05/17/2026 12:57:40] Dedicated match PATCH success: 200 {"ok":true,"id":44} +[05/17/2026 12:57:40] Dedicated match PATCH success: 200 {"ok":true,"id":44} +[05/17/2026 12:57:42] force = 70 * 0.5510761 = 38.57533 +[05/17/2026 12:57:42] launching puck at (1.60, -0.83) with (-61.55, 32.09) force +[05/17/2026 12:57:46] force = 70 * 0.7695817 = 53.87072 +[05/17/2026 12:57:46] launching puck at (-0.02, 2.95) with (0.91, -158.93) force +[05/17/2026 12:57:47] Blue goal scored, blue score is now 1 +[05/17/2026 12:57:51] force = 70 * 0.6176283 = 43.23398 +[05/17/2026 12:57:51] launching puck at (2.08, -0.41) with (-89.73, 17.88) force +[05/17/2026 12:57:57] force = 70 * 0.8415197 = 58.90638 +[05/17/2026 12:57:57] launching puck at (0.10, 3.47) with (-5.67, -204.56) force +[05/17/2026 12:57:57] Blue goal scored, blue score is now 2 +[05/17/2026 12:58:02] force = 70 * 0.9053302 = 63.37311 +[05/17/2026 12:58:02] launching puck at (4.03, 0.36) with (-255.11, -22.71) force +[05/17/2026 12:58:10] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 12:58:10] launching puck at (1.64, 4.72) with (-114.61, -329.06) force +[05/17/2026 12:58:15] force = 70 * 0.7657644 = 53.60351 +[05/17/2026 12:58:15] launching puck at (2.70, -1.12) with (-144.77, 60.25) force +[05/17/2026 12:58:20] force = 70 * 0.9918933 = 69.43253 +[05/17/2026 12:58:20] launching puck at (-0.05, 4.96) with (3.35, -344.31) force +[05/17/2026 12:58:20] Blue goal scored, blue score is now 3 +[05/17/2026 12:58:21] Dedicated match PATCH success: 200 {"ok":true,"id":44} +[05/17/2026 12:58:23] Dedicated match winner PATCH success: 200 {"ok":true,"id":44,"winner_id":2,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/17/2026 12:58:29] Rematch requested +[05/17/2026 12:58:41] Rematch was confirmed, closing in 5 secs. new room : +[05/17/2026 12:58:41] {"ok":true,"entry_fee":21,"rc_prize":34,"for_red":{"Players":[{"Name":"warlock3","LastSeen":1779022721270,"l10_wins":0,"l10_losses":3,"UserId":6,"rc":0.0},{"Name":"warlock","LastSeen":1779022721270,"l10_wins":5,"l10_losses":3,"UserId":2,"rc":0.0}],"GameName":"soccar","Port":26536,"InitTime":1779022721270,"instance_started":true,"match_id":45,"entry_fee":21,"rc_prize":34,"your_team":"red"},"for_blue":{"Players":[{"Name":"warlock3","LastSeen":1779022721270,"l10_wins":0,"l10_losses":3,"UserId":6,"rc":0.0},{"Name":"warlock","LastSeen":1779022721270,"l10_wins":5,"l10_losses":3,"UserId":2,"rc":0.0}],"GameName":"soccar","Port":26536,"InitTime":1779022721270,"instance_started":true,"match_id":45,"entry_fee":21,"rc_prize":34,"your_team":"blue"},"your_team":""} +[05/17/2026 12:58:41] Mirror server: client disconnected (connId=720402358) +[05/17/2026 12:58:41] Active player connections: 1 +[05/17/2026 12:58:41] Mirror server: client disconnected (connId=1441823303) +[05/17/2026 12:58:41] Active player connections: 0 +[05/17/2026 12:58:46] Server will be closed due to no players in, 60 +[05/17/2026 12:58:56] Server will be closed due to no players in, 50 +[05/17/2026 12:59:06] Server will be closed due to no players in, 40 +[05/17/2026 12:59:16] Server will be closed due to no players in, 30 +[05/17/2026 12:59:26] Server will be closed due to no players in, 20 +[05/17/2026 12:59:36] Server will be closed due to no players in, 10 +[05/17/2026 12:59:46] All players left, exiting +[05/17/2026 12:59:46] Dedicated match PATCH success: 200 {"ok":true,"id":44} diff --git a/games/soccar/soccar_Data/Logs/45.txt b/games/soccar/soccar_Data/Logs/45.txt new file mode 100644 index 0000000..a3bd6ff --- /dev/null +++ b/games/soccar/soccar_Data/Logs/45.txt @@ -0,0 +1,13 @@ +[05/17/2026 12:58:42] Starting server at port 26536 +[05/17/2026 12:58:42] Mirror server exception logging enabled +[05/17/2026 12:58:42] Failed to fetch red and blue names, isServer? +[05/17/2026 12:58:42] Starting auto close watchdog +[05/17/2026 12:58:43] Active player connections: 0 +[05/17/2026 12:58:48] Server will be closed due to no players in, 60 +[05/17/2026 12:58:58] Server will be closed due to no players in, 50 +[05/17/2026 12:59:08] Server will be closed due to no players in, 40 +[05/17/2026 12:59:18] Server will be closed due to no players in, 30 +[05/17/2026 12:59:27] Server will be closed due to no players in, 20 +[05/17/2026 12:59:38] Server will be closed due to no players in, 10 +[05/17/2026 12:59:48] No players joined, exiting +[05/17/2026 12:59:48] Dedicated match PATCH success: 200 {"ok":true,"id":45} diff --git a/games/soccar/soccar_Data/Logs/46.txt b/games/soccar/soccar_Data/Logs/46.txt new file mode 100644 index 0000000..c6200c9 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/46.txt @@ -0,0 +1,44 @@ +[05/17/2026 13:23:27] Starting server at port 26352 +[05/17/2026 13:23:27] Mirror server exception logging enabled +[05/17/2026 13:23:27] Failed to fetch red and blue names, isServer? +[05/17/2026 13:23:27] Starting auto close watchdog +[05/17/2026 13:23:27] Active player connections: 0 +[05/17/2026 13:23:30] Active player connections: 1 +[05/17/2026 13:23:30] Client 15 set team to Blue +[05/17/2026 13:23:31] Dedicated match PATCH success: 200 {"ok":true,"id":46} +[05/17/2026 13:23:31] Active player connections: 2 +[05/17/2026 13:23:31] Game started On Server +[05/17/2026 13:23:31] Client 16 set team to Red +[05/17/2026 13:23:31] Dedicated match PATCH success: 200 {"ok":true,"id":46} +[05/17/2026 13:23:32] force = 70 * 0.4125032 = 28.87523 +[05/17/2026 13:23:32] launching puck at (1.18, -0.42) with (-34.19, 12.24) force +[05/17/2026 13:23:39] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 13:23:39] launching puck at (0.07, 5.00) with (-5.04, -348.42) force +[05/17/2026 13:23:39] Blue goal scored, blue score is now 1 +[05/17/2026 13:23:43] force = 70 * 0.729265 = 51.04855 +[05/17/2026 13:23:43] launching puck at (2.53, -0.95) with (-129.04, 48.30) force +[05/17/2026 13:23:48] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 13:23:48] launching puck at (0.02, 5.00) with (-1.74, -348.45) force +[05/17/2026 13:23:49] Blue goal scored, blue score is now 2 +[05/17/2026 13:23:54] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 13:23:54] launching puck at (2.76, -4.17) with (-192.32, 290.58) force +[05/17/2026 13:23:59] force = 70 * 0.9955804 = 69.69063 +[05/17/2026 13:23:59] launching puck at (0.23, 4.99) with (-15.93, -348.09) force +[05/17/2026 13:23:59] Blue goal scored, blue score is now 3 +[05/17/2026 13:24:00] Dedicated match PATCH success: 200 {"ok":true,"id":46} +[05/17/2026 13:24:02] Dedicated match winner PATCH success: 200 {"ok":true,"id":46,"winner_id":6,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/17/2026 13:24:07] Rematch requested +[05/17/2026 13:24:11] Rematch was confirmed, closing in 5 secs. new room : +[05/17/2026 13:24:11] {"ok":true,"entry_fee":24,"rc_prize":38,"for_red":{"Players":[{"Name":"warlock","LastSeen":1779024251351,"l10_wins":4,"l10_losses":3,"UserId":2,"rc":0.0},{"Name":"warlock3","LastSeen":1779024251351,"l10_wins":1,"l10_losses":3,"UserId":6,"rc":0.0}],"GameName":"soccar","Port":26270,"InitTime":1779024251351,"instance_started":true,"match_id":47,"entry_fee":24,"rc_prize":38,"your_team":"red"},"for_blue":{"Players":[{"Name":"warlock","LastSeen":1779024251351,"l10_wins":4,"l10_losses":3,"UserId":2,"rc":0.0},{"Name":"warlock3","LastSeen":1779024251351,"l10_wins":1,"l10_losses":3,"UserId":6,"rc":0.0}],"GameName":"soccar","Port":26270,"InitTime":1779024251351,"instance_started":true,"match_id":47,"entry_fee":24,"rc_prize":38,"your_team":"blue"},"your_team":""} +[05/17/2026 13:24:11] Mirror server: client disconnected (connId=720373622) +[05/17/2026 13:24:11] Active player connections: 1 +[05/17/2026 13:24:11] Mirror server: client disconnected (connId=1441823289) +[05/17/2026 13:24:11] Active player connections: 0 +[05/17/2026 13:24:16] Server will be closed due to no players in, 60 +[05/17/2026 13:24:26] Server will be closed due to no players in, 50 +[05/17/2026 13:24:36] Server will be closed due to no players in, 40 +[05/17/2026 13:24:46] Server will be closed due to no players in, 30 +[05/17/2026 13:24:56] Server will be closed due to no players in, 20 +[05/17/2026 13:25:06] Server will be closed due to no players in, 10 +[05/17/2026 13:25:16] All players left, exiting +[05/17/2026 13:25:17] Dedicated match PATCH success: 200 {"ok":true,"id":46} diff --git a/games/soccar/soccar_Data/Logs/47.txt b/games/soccar/soccar_Data/Logs/47.txt new file mode 100644 index 0000000..07567c5 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/47.txt @@ -0,0 +1,18 @@ +[05/17/2026 13:24:13] Starting server at port 26270 +[05/17/2026 13:24:13] Mirror server exception logging enabled +[05/17/2026 13:24:13] Failed to fetch red and blue names, isServer? +[05/17/2026 13:24:13] Starting auto close watchdog +[05/17/2026 13:24:13] Active player connections: 0 +[05/17/2026 13:24:17] Active player connections: 1 +[05/17/2026 13:24:17] Client 15 set team to Red +[05/17/2026 13:24:18] Dedicated match PATCH success: 200 {"ok":true,"id":47} +[05/17/2026 13:24:33] Mirror server: client disconnected (connId=1441814046) +[05/17/2026 13:24:33] Active player connections: 0 +[05/17/2026 13:24:38] Server will be closed due to no players in, 60 +[05/17/2026 13:24:48] Server will be closed due to no players in, 50 +[05/17/2026 13:24:58] Server will be closed due to no players in, 40 +[05/17/2026 13:25:08] Server will be closed due to no players in, 30 +[05/17/2026 13:25:18] Server will be closed due to no players in, 20 +[05/17/2026 13:25:28] Server will be closed due to no players in, 10 +[05/17/2026 13:25:38] All players left, exiting +[05/17/2026 13:25:38] Dedicated match PATCH success: 200 {"ok":true,"id":47} diff --git a/games/soccar/soccar_Data/Logs/48.txt b/games/soccar/soccar_Data/Logs/48.txt new file mode 100644 index 0000000..3128759 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/48.txt @@ -0,0 +1,44 @@ +[05/17/2026 13:24:44] Starting server at port 26519 +[05/17/2026 13:24:44] Mirror server exception logging enabled +[05/17/2026 13:24:44] Failed to fetch red and blue names, isServer? +[05/17/2026 13:24:44] Starting auto close watchdog +[05/17/2026 13:24:44] Active player connections: 0 +[05/17/2026 13:24:46] Active player connections: 1 +[05/17/2026 13:24:47] Client 15 set team to Blue +[05/17/2026 13:24:47] Dedicated match PATCH success: 200 {"ok":true,"id":48} +[05/17/2026 13:24:47] Active player connections: 2 +[05/17/2026 13:24:47] Game started On Server +[05/17/2026 13:24:48] Client 16 set team to Red +[05/17/2026 13:24:48] Dedicated match PATCH success: 200 {"ok":true,"id":48} +[05/17/2026 13:25:07] force = 70 * 0.708293 = 49.58051 +[05/17/2026 13:25:07] launching puck at (-2.33, 1.11) with (115.33, -55.14) force +[05/17/2026 13:25:11] force = 70 * 0.8816006 = 61.71204 +[05/17/2026 13:25:11] launching puck at (0.08, -3.82) with (-4.84, 235.57) force +[05/17/2026 13:25:12] Red goal scored, red score is now 1 +[05/17/2026 13:25:17] force = 70 * 0.7721195 = 54.04837 +[05/17/2026 13:25:17] launching puck at (-2.48, 1.62) with (134.21, -87.76) force +[05/17/2026 13:25:21] force = 70 * 0.9721134 = 68.04794 +[05/17/2026 13:25:21] launching puck at (-0.01, -4.74) with (0.39, 322.59) force +[05/17/2026 13:25:21] Red goal scored, red score is now 2 +[05/17/2026 13:25:26] force = 70 * 0.6915848 = 48.41094 +[05/17/2026 13:25:26] launching puck at (-2.47, 0.28) with (119.57, -13.71) force +[05/17/2026 13:25:30] force = 70 * 0.9167436 = 64.17205 +[05/17/2026 13:25:30] launching puck at (0.08, -4.15) with (-5.09, 266.54) force +[05/17/2026 13:25:30] Red goal scored, red score is now 3 +[05/17/2026 13:25:31] Dedicated match PATCH success: 200 {"ok":true,"id":48} +[05/17/2026 13:25:33] Dedicated match winner PATCH success: 200 {"ok":true,"id":48,"winner_id":2,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/17/2026 13:25:36] Rematch requested +[05/17/2026 13:25:41] Rematch was confirmed, closing in 5 secs. new room : +[05/17/2026 13:25:41] {"ok":true,"entry_fee":29,"rc_prize":48,"for_red":{"Players":[{"Name":"warlock","LastSeen":1779024341470,"l10_wins":4,"l10_losses":2,"UserId":2,"rc":0.0},{"Name":"warlock3","LastSeen":1779024341470,"l10_wins":1,"l10_losses":4,"UserId":6,"rc":0.0}],"GameName":"soccar","Port":26219,"InitTime":1779024341470,"instance_started":true,"match_id":49,"entry_fee":29,"rc_prize":48,"your_team":"red"},"for_blue":{"Players":[{"Name":"warlock","LastSeen":1779024341470,"l10_wins":4,"l10_losses":2,"UserId":2,"rc":0.0},{"Name":"warlock3","LastSeen":1779024341470,"l10_wins":1,"l10_losses":4,"UserId":6,"rc":0.0}],"GameName":"soccar","Port":26219,"InitTime":1779024341470,"instance_started":true,"match_id":49,"entry_fee":29,"rc_prize":48,"your_team":"blue"},"your_team":""} +[05/17/2026 13:25:41] Mirror server: client disconnected (connId=720395668) +[05/17/2026 13:25:41] Active player connections: 1 +[05/17/2026 13:25:41] Mirror server: client disconnected (connId=1441809291) +[05/17/2026 13:25:41] Active player connections: 0 +[05/17/2026 13:25:46] Server will be closed due to no players in, 60 +[05/17/2026 13:25:56] Server will be closed due to no players in, 50 +[05/17/2026 13:26:06] Server will be closed due to no players in, 40 +[05/17/2026 13:26:16] Server will be closed due to no players in, 30 +[05/17/2026 13:26:26] Server will be closed due to no players in, 20 +[05/17/2026 13:26:36] Server will be closed due to no players in, 10 +[05/17/2026 13:26:46] All players left, exiting +[05/17/2026 13:26:47] Dedicated match PATCH success: 200 {"ok":true,"id":48} diff --git a/games/soccar/soccar_Data/Logs/49.txt b/games/soccar/soccar_Data/Logs/49.txt new file mode 100644 index 0000000..8206eb1 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/49.txt @@ -0,0 +1,18 @@ +[05/17/2026 13:25:43] Starting server at port 26219 +[05/17/2026 13:25:43] Mirror server exception logging enabled +[05/17/2026 13:25:43] Failed to fetch red and blue names, isServer? +[05/17/2026 13:25:43] Starting auto close watchdog +[05/17/2026 13:25:43] Active player connections: 0 +[05/17/2026 13:25:46] Active player connections: 1 +[05/17/2026 13:25:47] Client 15 set team to Red +[05/17/2026 13:25:48] Dedicated match PATCH success: 200 {"ok":true,"id":49} +[05/17/2026 13:26:11] Mirror server: client disconnected (connId=1441817213) +[05/17/2026 13:26:11] Active player connections: 0 +[05/17/2026 13:26:16] Server will be closed due to no players in, 60 +[05/17/2026 13:26:26] Server will be closed due to no players in, 50 +[05/17/2026 13:26:36] Server will be closed due to no players in, 40 +[05/17/2026 13:26:46] Server will be closed due to no players in, 30 +[05/17/2026 13:26:56] Server will be closed due to no players in, 20 +[05/17/2026 13:27:06] Server will be closed due to no players in, 10 +[05/17/2026 13:27:16] All players left, exiting +[05/17/2026 13:27:16] Dedicated match PATCH success: 200 {"ok":true,"id":49} diff --git a/games/soccar/soccar_Data/Logs/5.txt b/games/soccar/soccar_Data/Logs/5.txt new file mode 100644 index 0000000..a5ba681 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/5.txt @@ -0,0 +1,51 @@ +[05/14/2026 12:21:22] Starting server at port 26411 +[05/14/2026 12:21:22] Failed to fetch red and blue names, isServer? +[05/14/2026 12:21:22] Starting auto close watchdog +[05/14/2026 12:21:22] Active player connections: 0 +[05/14/2026 12:21:27] Active player connections: 1 +[05/14/2026 12:21:27] Client 15 set team to Red +[05/14/2026 12:21:27] Dedicated match PATCH success: 200 {"ok":true,"id":5} +[05/14/2026 12:21:28] Active player connections: 2 +[05/14/2026 12:21:28] Game started On Server +[05/14/2026 12:21:28] Client 16 set team to Blue +[05/14/2026 12:21:28] Dedicated match PATCH success: 200 {"ok":true,"id":5} +[05/14/2026 12:21:33] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:21:33] launching puck at (0.03, -5.00) with (-1.94, 348.45) force +[05/14/2026 12:21:39] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:21:39] launching puck at (0.64, 4.96) with (-44.53, -345.60) force +[05/14/2026 12:21:45] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:21:45] launching puck at (0.25, -4.99) with (-17.21, 348.03) force +[05/14/2026 12:21:51] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:21:51] launching puck at (2.38, 4.40) with (-165.53, -306.62) force +[05/14/2026 12:21:58] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:21:58] launching puck at (4.95, -0.71) with (-344.91, 49.57) force +[05/14/2026 12:22:03] force = 70 * 0.9781494 = 68.47046 +[05/14/2026 12:22:03] launching puck at (0.80, 4.74) with (-54.87, -324.54) force +[05/14/2026 12:22:03] Blue goal scored, blue score is now 1 +[05/14/2026 12:22:08] Client 16 sent emoji emote 5 +[05/14/2026 12:22:08] Client 15 sent emoji emote 0 +[05/14/2026 12:22:09] force = 70 * 0.8610241 = 60.27169 +[05/14/2026 12:22:09] launching puck at (2.72, -2.41) with (-164.17, 145.19) force +[05/14/2026 12:22:15] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:22:15] launching puck at (0.08, 5.00) with (-5.71, -348.41) force +[05/14/2026 12:22:15] Blue goal scored, blue score is now 2 +[05/14/2026 12:22:20] Client 16 sent emoji emote 5 +[05/14/2026 12:22:22] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:22:22] launching puck at (0.19, -5.00) with (-13.37, 348.20) force +[05/14/2026 12:22:29] force = 70 * 0.9874017 = 69.11812 +[05/14/2026 12:22:29] launching puck at (-3.69, 3.24) with (255.16, -223.70) force +[05/14/2026 12:22:29] Active player connections: 1 +[05/14/2026 12:22:36] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:22:36] launching puck at (-4.49, -2.20) with (312.78, 153.58) force +[05/14/2026 12:23:00] force = 70 * 0.9955804 = 69.69063 +[05/14/2026 12:23:00] launching puck at (3.35, -3.71) with (-233.53, 258.62) force +[05/14/2026 12:23:01] Red goal scored, red score is now 1 +[05/14/2026 12:23:12] Active player connections: 0 +[05/14/2026 12:23:17] Server will be closed due to no players in, 60 +[05/14/2026 12:23:27] Server will be closed due to no players in, 50 +[05/14/2026 12:23:37] Server will be closed due to no players in, 40 +[05/14/2026 12:23:47] Server will be closed due to no players in, 30 +[05/14/2026 12:23:57] Server will be closed due to no players in, 20 +[05/14/2026 12:24:07] Server will be closed due to no players in, 10 +[05/14/2026 12:24:17] All players left, exiting +[05/14/2026 12:24:18] Dedicated match PATCH success: 200 {"ok":true,"id":5} diff --git a/games/soccar/soccar_Data/Logs/50.txt b/games/soccar/soccar_Data/Logs/50.txt new file mode 100644 index 0000000..14c6f64 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/50.txt @@ -0,0 +1,44 @@ +[05/17/2026 13:27:39] Starting server at port 26526 +[05/17/2026 13:27:39] Mirror server exception logging enabled +[05/17/2026 13:27:39] Failed to fetch red and blue names, isServer? +[05/17/2026 13:27:39] Starting auto close watchdog +[05/17/2026 13:27:39] Active player connections: 0 +[05/17/2026 13:27:42] Active player connections: 1 +[05/17/2026 13:27:43] Client 15 set team to Blue +[05/17/2026 13:27:43] Active player connections: 2 +[05/17/2026 13:27:43] Game started On Server +[05/17/2026 13:27:43] Dedicated match PATCH success: 200 {"ok":true,"id":50} +[05/17/2026 13:27:43] Client 16 set team to Red +[05/17/2026 13:27:43] Dedicated match PATCH success: 200 {"ok":true,"id":50} +[05/17/2026 13:27:50] force = 70 * 0.5049129 = 35.3439 +[05/17/2026 13:27:50] launching puck at (1.55, -0.28) with (-54.81, 10.02) force +[05/17/2026 13:27:58] force = 70 * 0.973227 = 68.12589 +[05/17/2026 13:27:58] launching puck at (0.04, 4.75) with (-2.67, -323.78) force +[05/17/2026 13:27:58] Blue goal scored, blue score is now 1 +[05/17/2026 13:28:05] force = 70 * 0.5999452 = 41.99617 +[05/17/2026 13:28:05] launching puck at (1.38, -1.49) with (-58.14, 62.67) force +[05/17/2026 13:28:09] force = 70 * 0.9733893 = 68.13725 +[05/17/2026 13:28:09] launching puck at (0.01, 4.75) with (-0.69, -323.97) force +[05/17/2026 13:28:09] Blue goal scored, blue score is now 2 +[05/17/2026 13:28:13] force = 70 * 0.6678947 = 46.75262 +[05/17/2026 13:28:13] launching puck at (2.04, -1.20) with (-95.18, 55.93) force +[05/17/2026 13:28:17] force = 70 * 0.845453 = 59.18171 +[05/17/2026 13:28:17] launching puck at (0.04, 3.51) with (-2.31, -207.47) force +[05/17/2026 13:28:18] Blue goal scored, blue score is now 3 +[05/17/2026 13:28:18] Dedicated match PATCH success: 200 {"ok":true,"id":50} +[05/17/2026 13:28:20] Dedicated match winner PATCH success: 200 {"ok":true,"id":50,"winner_id":2,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/17/2026 13:28:25] Rematch requested +[05/17/2026 13:28:29] Rematch was confirmed, closing in 5 secs. new room : +[05/17/2026 13:28:29] {"ok":true,"entry_fee":24,"rc_prize":38,"for_red":{"Players":[{"Name":"warlock3","LastSeen":1779024509777,"l10_wins":1,"l10_losses":4,"UserId":6,"rc":0.0},{"Name":"warlock","LastSeen":1779024509777,"l10_wins":4,"l10_losses":1,"UserId":2,"rc":0.0}],"GameName":"soccar","Port":26685,"InitTime":1779024509777,"instance_started":true,"match_id":51,"entry_fee":24,"rc_prize":38,"your_team":"red"},"for_blue":{"Players":[{"Name":"warlock3","LastSeen":1779024509777,"l10_wins":1,"l10_losses":4,"UserId":6,"rc":0.0},{"Name":"warlock","LastSeen":1779024509777,"l10_wins":4,"l10_losses":1,"UserId":2,"rc":0.0}],"GameName":"soccar","Port":26685,"InitTime":1779024509777,"instance_started":true,"match_id":51,"entry_fee":24,"rc_prize":38,"your_team":"blue"},"your_team":""} +[05/17/2026 13:28:29] Mirror server: client disconnected (connId=720377672) +[05/17/2026 13:28:29] Active player connections: 1 +[05/17/2026 13:28:30] Mirror server: client disconnected (connId=1441814347) +[05/17/2026 13:28:30] Active player connections: 0 +[05/17/2026 13:28:34] Server will be closed due to no players in, 60 +[05/17/2026 13:28:44] Server will be closed due to no players in, 50 +[05/17/2026 13:28:54] Server will be closed due to no players in, 40 +[05/17/2026 13:29:04] Server will be closed due to no players in, 30 +[05/17/2026 13:29:14] Server will be closed due to no players in, 20 +[05/17/2026 13:29:24] Server will be closed due to no players in, 10 +[05/17/2026 13:29:34] All players left, exiting +[05/17/2026 13:29:35] Dedicated match PATCH success: 200 {"ok":true,"id":50} diff --git a/games/soccar/soccar_Data/Logs/51.txt b/games/soccar/soccar_Data/Logs/51.txt new file mode 100644 index 0000000..8ec99e9 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/51.txt @@ -0,0 +1,18 @@ +[05/17/2026 13:28:31] Starting server at port 26685 +[05/17/2026 13:28:31] Mirror server exception logging enabled +[05/17/2026 13:28:31] Failed to fetch red and blue names, isServer? +[05/17/2026 13:28:31] Starting auto close watchdog +[05/17/2026 13:28:31] Active player connections: 0 +[05/17/2026 13:28:35] Active player connections: 1 +[05/17/2026 13:28:35] Client 15 set team to Blue +[05/17/2026 13:28:35] Dedicated match PATCH success: 200 {"ok":true,"id":51} +[05/17/2026 13:28:51] Mirror server: client disconnected (connId=1441816431) +[05/17/2026 13:28:51] Active player connections: 0 +[05/17/2026 13:28:56] Server will be closed due to no players in, 60 +[05/17/2026 13:29:06] Server will be closed due to no players in, 50 +[05/17/2026 13:29:16] Server will be closed due to no players in, 40 +[05/17/2026 13:29:26] Server will be closed due to no players in, 30 +[05/17/2026 13:29:36] Server will be closed due to no players in, 20 +[05/17/2026 13:29:46] Server will be closed due to no players in, 10 +[05/17/2026 13:29:56] All players left, exiting +[05/17/2026 13:29:57] Dedicated match PATCH success: 200 {"ok":true,"id":51} diff --git a/games/soccar/soccar_Data/Logs/52.txt b/games/soccar/soccar_Data/Logs/52.txt new file mode 100644 index 0000000..7655dee --- /dev/null +++ b/games/soccar/soccar_Data/Logs/52.txt @@ -0,0 +1,44 @@ +[05/17/2026 13:36:55] Starting server at port 26923 +[05/17/2026 13:36:55] Mirror server exception logging enabled +[05/17/2026 13:36:55] Failed to fetch red and blue names, isServer? +[05/17/2026 13:36:55] Starting auto close watchdog +[05/17/2026 13:36:55] Active player connections: 0 +[05/17/2026 13:36:58] Active player connections: 1 +[05/17/2026 13:36:58] Client 15 set team to Blue +[05/17/2026 13:36:58] Active player connections: 2 +[05/17/2026 13:36:58] Game started On Server +[05/17/2026 13:36:58] Dedicated match PATCH success: 200 {"ok":true,"id":52} +[05/17/2026 13:36:58] Client 16 set team to Red +[05/17/2026 13:36:59] Dedicated match PATCH success: 200 {"ok":true,"id":52} +[05/17/2026 13:37:00] force = 70 * 0.5802675 = 40.61873 +[05/17/2026 13:37:00] launching puck at (1.53, -1.21) with (-62.01, 48.95) force +[05/17/2026 13:37:04] force = 70 * 0.9463241 = 66.24269 +[05/17/2026 13:37:04] launching puck at (0.04, 4.46) with (-2.60, -295.47) force +[05/17/2026 13:37:05] Blue goal scored, blue score is now 1 +[05/17/2026 13:37:10] force = 70 * 0.5448384 = 38.13869 +[05/17/2026 13:37:10] launching puck at (1.63, -0.69) with (-62.12, 26.19) force +[05/17/2026 13:37:14] force = 70 * 0.8657154 = 60.60008 +[05/17/2026 13:37:14] launching puck at (0.13, 3.67) with (-7.58, -222.68) force +[05/17/2026 13:37:15] Blue goal scored, blue score is now 2 +[05/17/2026 13:37:31] force = 70 * 0.7670107 = 53.69075 +[05/17/2026 13:37:31] launching puck at (2.45, -1.61) with (-131.66, 86.44) force +[05/17/2026 13:37:37] force = 70 * 0.8899086 = 62.2936 +[05/17/2026 13:37:37] launching puck at (0.07, 3.89) with (-4.24, -242.57) force +[05/17/2026 13:37:37] Blue goal scored, blue score is now 3 +[05/17/2026 13:37:38] Dedicated match PATCH success: 200 {"ok":true,"id":52} +[05/17/2026 13:37:40] Dedicated match winner PATCH success: 200 {"ok":true,"id":52,"winner_id":2,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/17/2026 13:37:50] Rematch requested +[05/17/2026 13:38:15] Rematch was confirmed, closing in 5 secs. new room : +[05/17/2026 13:38:15] {"ok":true,"entry_fee":14,"rc_prize":22,"for_red":{"Players":[{"Name":"warlock3","LastSeen":1779025095033,"l10_wins":1,"l10_losses":4,"UserId":6,"rc":0.0},{"Name":"warlock","LastSeen":1779025095033,"l10_wins":4,"l10_losses":1,"UserId":2,"rc":0.0}],"GameName":"soccar","Port":26571,"InitTime":1779025095033,"instance_started":true,"match_id":53,"entry_fee":14,"rc_prize":22,"your_team":"red"},"for_blue":{"Players":[{"Name":"warlock3","LastSeen":1779025095033,"l10_wins":1,"l10_losses":4,"UserId":6,"rc":0.0},{"Name":"warlock","LastSeen":1779025095033,"l10_wins":4,"l10_losses":1,"UserId":2,"rc":0.0}],"GameName":"soccar","Port":26571,"InitTime":1779025095033,"instance_started":true,"match_id":53,"entry_fee":14,"rc_prize":22,"your_team":"blue"},"your_team":""} +[05/17/2026 13:38:15] Mirror server: client disconnected (connId=720384519) +[05/17/2026 13:38:15] Active player connections: 1 +[05/17/2026 13:38:15] Mirror server: client disconnected (connId=1441821690) +[05/17/2026 13:38:15] Active player connections: 0 +[05/17/2026 13:38:20] Server will be closed due to no players in, 60 +[05/17/2026 13:38:30] Server will be closed due to no players in, 50 +[05/17/2026 13:38:40] Server will be closed due to no players in, 40 +[05/17/2026 13:38:50] Server will be closed due to no players in, 30 +[05/17/2026 13:39:00] Server will be closed due to no players in, 20 +[05/17/2026 13:39:10] Server will be closed due to no players in, 10 +[05/17/2026 13:39:20] All players left, exiting +[05/17/2026 13:39:20] Dedicated match PATCH success: 200 {"ok":true,"id":52} diff --git a/games/soccar/soccar_Data/Logs/53.txt b/games/soccar/soccar_Data/Logs/53.txt new file mode 100644 index 0000000..35370d2 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/53.txt @@ -0,0 +1,25 @@ +[05/17/2026 13:38:16] Starting server at port 26571 +[05/17/2026 13:38:16] Mirror server exception logging enabled +[05/17/2026 13:38:16] Failed to fetch red and blue names, isServer? +[05/17/2026 13:38:16] Starting auto close watchdog +[05/17/2026 13:38:16] Active player connections: 0 +[05/17/2026 13:38:20] Active player connections: 1 +[05/17/2026 13:38:20] Active player connections: 2 +[05/17/2026 13:38:20] Game started On Server +[05/17/2026 13:38:20] Client 15 set team to Red +[05/17/2026 13:38:20] Client 16 set team to Blue +[05/17/2026 13:38:20] Dedicated match PATCH success: 200 {"ok":true,"id":53} +[05/17/2026 13:38:21] Dedicated match PATCH success: 200 {"ok":true,"id":53} +[05/17/2026 13:38:26] Mirror server: client disconnected (connId=1441817558) +[05/17/2026 13:38:26] Active player connections: 1 +[05/17/2026 13:38:38] Mirror server transport error (connId=720384152, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting. +[05/17/2026 13:38:38] Mirror server: client disconnected (connId=720384152) +[05/17/2026 13:38:38] Active player connections: 0 +[05/17/2026 13:38:43] Server will be closed due to no players in, 60 +[05/17/2026 13:38:53] Server will be closed due to no players in, 50 +[05/17/2026 13:39:03] Server will be closed due to no players in, 40 +[05/17/2026 13:39:13] Server will be closed due to no players in, 30 +[05/17/2026 13:39:23] Server will be closed due to no players in, 20 +[05/17/2026 13:39:33] Server will be closed due to no players in, 10 +[05/17/2026 13:39:43] All players left, exiting +[05/17/2026 13:39:43] Dedicated match PATCH success: 200 {"ok":true,"id":53} diff --git a/games/soccar/soccar_Data/Logs/54.txt b/games/soccar/soccar_Data/Logs/54.txt new file mode 100644 index 0000000..568bedb --- /dev/null +++ b/games/soccar/soccar_Data/Logs/54.txt @@ -0,0 +1,129 @@ +[05/18/2026 07:24:05] Starting server at port 26279 +[05/18/2026 07:24:06] Mirror server exception logging enabled +[05/18/2026 07:24:06] Failed to fetch red and blue names, isServer? +[05/18/2026 07:24:06] Starting auto close watchdog +[05/18/2026 07:24:06] Active player connections: 0 +[05/18/2026 07:24:07] Active player connections: 1 +[05/18/2026 07:24:08] Client 15 set team to Blue +[05/18/2026 07:24:08] Active player connections: 2 +[05/18/2026 07:24:08] Game started On Server +[05/18/2026 07:24:08] Dedicated match PATCH success: 200 {"ok":true,"id":54} +[05/18/2026 07:24:08] Client 16 set team to Red +[05/18/2026 07:24:09] Dedicated match PATCH success: 200 {"ok":true,"id":54} +[05/18/2026 07:24:10] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:24:10] launching puck at (-0.05, -5.00) with (3.29, 348.44) force +[05/18/2026 07:24:17] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:24:17] launching puck at (-2.82, 4.13) with (196.28, -287.91) force +[05/18/2026 07:24:22] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:24:22] launching puck at (-2.49, -4.34) with (173.35, 302.27) force +[05/18/2026 07:24:28] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:24:28] launching puck at (-5.00, -0.18) with (348.24, 12.26) force +[05/18/2026 07:24:32] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:24:32] launching puck at (-0.99, -4.90) with (69.09, 341.54) force +[05/18/2026 07:24:35] Client 16 sent emoji emote 2 +[05/18/2026 07:24:37] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:24:37] launching puck at (-4.37, -2.44) with (304.28, 169.81) force +[05/18/2026 07:24:41] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:24:41] launching puck at (-0.79, -4.94) with (54.99, 344.09) force +[05/18/2026 07:24:46] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:24:46] launching puck at (-3.79, 3.26) with (264.38, -226.98) force +[05/18/2026 07:24:47] Blue goal scored, blue score is now 1 +[05/18/2026 07:24:51] Client 15 sent emoji emote 5 +[05/18/2026 07:24:51] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:24:51] launching puck at (0.10, -5.00) with (-6.71, 348.39) force +[05/18/2026 07:24:56] Client 16 sent emoji emote 4 +[05/18/2026 07:25:00] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:25:00] launching puck at (4.07, 2.90) with (-283.88, -202.07) force +[05/18/2026 07:25:04] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:25:04] launching puck at (2.59, -4.28) with (-180.47, 298.08) force +[05/18/2026 07:25:09] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:25:09] launching puck at (-4.58, -2.01) with (319.13, 139.90) force +[05/18/2026 07:25:14] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:25:14] launching puck at (0.43, -4.98) with (-30.11, 347.15) force +[05/18/2026 07:25:15] Red goal scored, red score is now 1 +[05/18/2026 07:25:18] Client 16 sent emoji emote 5 +[05/18/2026 07:25:21] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:25:21] launching puck at (-0.01, 5.00) with (0.51, -348.45) force +[05/18/2026 07:25:27] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:25:27] launching puck at (4.77, 1.49) with (-332.71, -103.55) force +[05/18/2026 07:25:34] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:25:34] launching puck at (3.95, 3.07) with (-275.29, -213.63) force +[05/18/2026 07:25:38] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:25:38] launching puck at (4.55, -2.08) with (-316.94, 144.81) force +[05/18/2026 07:25:43] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:25:43] launching puck at (1.70, 4.70) with (-118.26, -327.77) force +[05/18/2026 07:25:47] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:25:47] launching puck at (4.54, 2.09) with (-316.53, -145.71) force +[05/18/2026 07:25:53] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:25:53] launching puck at (4.32, 2.52) with (-300.79, -175.92) force +[05/18/2026 07:25:57] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:25:57] launching puck at (4.98, -0.41) with (-347.31, 28.23) force +[05/18/2026 07:26:02] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:26:02] launching puck at (3.69, 3.37) with (-257.19, -235.10) force +[05/18/2026 07:26:03] Blue goal scored, blue score is now 2 +[05/18/2026 07:26:09] Client 16 sent text emote Nice shot! +[05/18/2026 07:26:12] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:26:12] launching puck at (0.05, -5.00) with (-3.76, 348.43) force +[05/18/2026 07:26:22] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:26:22] launching puck at (-4.34, -2.48) with (302.60, 172.77) force +[05/18/2026 07:26:26] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:26:26] launching puck at (-1.48, -4.78) with (103.28, 332.80) force +[05/18/2026 07:26:33] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:26:33] launching puck at (-2.95, -4.03) with (205.88, 281.13) force +[05/18/2026 07:26:41] force = 70 * 0.6579323 = 46.05526 +[05/18/2026 07:26:41] launching puck at (0.64, -2.22) with (-29.45, 102.26) force +[05/18/2026 07:26:51] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:26:51] launching puck at (-4.39, 2.39) with (306.12, -166.46) force +[05/18/2026 07:27:00] Client 15 sent emoji emote 1 +[05/18/2026 07:27:03] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:27:03] launching puck at (-0.56, -4.97) with (38.97, 346.27) force +[05/18/2026 07:27:20] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:27:20] launching puck at (-1.00, -4.90) with (69.63, 341.43) force +[05/18/2026 07:27:24] force = 70 * 0.9290072 = 65.0305 +[05/18/2026 07:27:24] launching puck at (3.97, -1.61) with (-257.90, 104.48) force +[05/18/2026 07:27:33] Client 16 sent emoji emote 3 +[05/18/2026 07:27:35] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:27:35] launching puck at (-4.33, 2.49) with (301.97, -173.87) force +[05/18/2026 07:27:40] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:27:40] launching puck at (-2.39, -4.39) with (166.29, 306.22) force +[05/18/2026 07:27:40] Red goal scored, red score is now 2 +[05/18/2026 07:27:47] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:27:47] launching puck at (0.01, 5.00) with (-0.61, -348.45) force +[05/18/2026 07:27:54] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:27:54] launching puck at (-4.81, -1.38) with (334.94, 96.09) force +[05/18/2026 07:28:02] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:28:02] launching puck at (-2.85, 4.11) with (198.51, -286.38) force +[05/18/2026 07:28:06] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:28:06] launching puck at (-4.02, -2.98) with (279.88, 207.57) force +[05/18/2026 07:28:12] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:28:12] launching puck at (-2.70, 4.21) with (187.96, -293.41) force +[05/18/2026 07:28:17] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:28:17] launching puck at (-4.25, -2.63) with (296.33, 183.32) force +[05/18/2026 07:28:25] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:28:25] launching puck at (-3.44, 3.63) with (239.90, -252.72) force +[05/18/2026 07:28:31] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:28:31] launching puck at (4.88, -1.10) with (-339.91, 76.69) force +[05/18/2026 07:28:34] Client 16 sent text emote What a save! +[05/18/2026 07:28:42] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:28:42] launching puck at (-2.35, 4.41) with (164.06, -307.41) force +[05/18/2026 07:28:46] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:28:46] launching puck at (-2.47, -4.35) with (171.99, 303.05) force +[05/18/2026 07:29:01] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:29:01] launching puck at (-3.88, 3.15) with (270.50, -219.65) force +[05/18/2026 07:29:05] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:29:05] launching puck at (-2.58, -4.28) with (179.62, 298.59) force +[05/18/2026 07:29:06] Red goal scored, red score is now 3 +[05/18/2026 07:29:07] Dedicated match PATCH success: 200 {"ok":true,"id":54} +[05/18/2026 07:29:09] Dedicated match winner PATCH success: 200 {"ok":true,"id":54,"winner_id":7,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/18/2026 07:29:17] Mirror server: client disconnected (connId=-1479581075) +[05/18/2026 07:29:17] Active player connections: 1 +[05/18/2026 07:29:20] Mirror server: client disconnected (connId=-1479581073) +[05/18/2026 07:29:20] Active player connections: 0 +[05/18/2026 07:29:25] Server will be closed due to no players in, 60 +[05/18/2026 07:29:35] Server will be closed due to no players in, 50 +[05/18/2026 07:29:45] Server will be closed due to no players in, 40 +[05/18/2026 07:29:55] Server will be closed due to no players in, 30 +[05/18/2026 07:30:05] Server will be closed due to no players in, 20 +[05/18/2026 07:30:15] Server will be closed due to no players in, 10 +[05/18/2026 07:30:25] All players left, exiting +[05/18/2026 07:30:26] Dedicated match PATCH success: 200 {"ok":true,"id":54} diff --git a/games/soccar/soccar_Data/Logs/55.txt b/games/soccar/soccar_Data/Logs/55.txt new file mode 100644 index 0000000..e5636ca --- /dev/null +++ b/games/soccar/soccar_Data/Logs/55.txt @@ -0,0 +1,76 @@ +[05/18/2026 07:29:58] Starting server at port 26199 +[05/18/2026 07:29:58] Mirror server exception logging enabled +[05/18/2026 07:29:58] Failed to fetch red and blue names, isServer? +[05/18/2026 07:29:58] Starting auto close watchdog +[05/18/2026 07:29:58] Active player connections: 0 +[05/18/2026 07:30:01] Active player connections: 1 +[05/18/2026 07:30:02] Client 15 set team to Blue +[05/18/2026 07:30:02] Active player connections: 2 +[05/18/2026 07:30:02] Game started On Server +[05/18/2026 07:30:02] Client 16 set team to Red +[05/18/2026 07:30:02] Dedicated match PATCH success: 200 {"ok":true,"id":55} +[05/18/2026 07:30:02] Dedicated match PATCH success: 200 {"ok":true,"id":55} +[05/18/2026 07:30:04] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:30:04] launching puck at (-0.01, -5.00) with (0.70, 348.45) force +[05/18/2026 07:30:16] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:30:16] launching puck at (-4.88, 1.10) with (339.92, -76.62) force +[05/18/2026 07:30:21] force = 70 * 0.9203572 = 64.425 +[05/18/2026 07:30:21] launching puck at (-0.65, -4.14) with (41.77, 266.73) force +[05/18/2026 07:30:21] Red goal scored, red score is now 1 +[05/18/2026 07:30:27] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:30:27] launching puck at (0.19, 5.00) with (-12.99, -348.21) force +[05/18/2026 07:30:32] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:30:32] launching puck at (-4.53, -2.12) with (315.46, 148.00) force +[05/18/2026 07:30:38] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:30:38] launching puck at (0.94, 4.91) with (-65.84, -342.18) force +[05/18/2026 07:30:49] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:30:49] launching puck at (1.88, -4.63) with (-130.74, 323.00) force +[05/18/2026 07:30:56] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:30:56] launching puck at (4.23, 2.67) with (-294.72, -185.90) force +[05/18/2026 07:31:01] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:31:01] launching puck at (0.89, -4.92) with (-62.20, 342.86) force +[05/18/2026 07:31:09] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:31:09] launching puck at (3.81, 3.23) with (-265.86, -225.26) force +[05/18/2026 07:31:14] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:31:14] launching puck at (-0.90, -4.92) with (62.56, 342.79) force +[05/18/2026 07:31:15] Red goal scored, red score is now 2 +[05/18/2026 07:31:18] Client 15 sent emoji emote 3 +[05/18/2026 07:31:21] Client 16 sent emoji emote 0 +[05/18/2026 07:31:25] Client 15 sent emoji emote 4 +[05/18/2026 07:31:27] Client 15 sent emoji emote 4 +[05/18/2026 07:31:28] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:31:28] launching puck at (0.06, 5.00) with (-4.02, -348.43) force +[05/18/2026 07:31:35] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:31:35] launching puck at (2.06, -4.56) with (-143.37, 317.59) force +[05/18/2026 07:31:46] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:31:46] launching puck at (-3.85, 3.19) with (268.48, -222.12) force +[05/18/2026 07:31:51] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:31:51] launching puck at (3.08, -3.93) with (-214.99, 274.22) force +[05/18/2026 07:31:58] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:31:58] launching puck at (2.60, 4.27) with (-181.52, -297.44) force +[05/18/2026 07:32:03] force = 70 * 0.7343383 = 51.40368 +[05/18/2026 07:32:03] launching puck at (-1.85, 2.01) with (94.98, -103.26) force +[05/18/2026 07:32:22] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:32:22] launching puck at (4.23, -2.66) with (-294.97, 185.50) force +[05/18/2026 07:32:29] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:32:29] launching puck at (4.97, -0.55) with (-346.34, 38.34) force +[05/18/2026 07:32:34] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:32:34] launching puck at (0.40, -4.98) with (-27.83, 347.34) force +[05/18/2026 07:32:34] Red goal scored, red score is now 3 +[05/18/2026 07:32:35] Dedicated match PATCH success: 200 {"ok":true,"id":55} +[05/18/2026 07:32:36] Dedicated match winner PATCH success: 200 {"ok":true,"id":55,"winner_id":7,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/18/2026 07:32:37] Client 15 sent emoji emote 4 +[05/18/2026 07:32:42] Rematch requested +[05/18/2026 07:32:48] Rematch was confirmed, closing in 5 secs. new room : +[05/18/2026 07:32:48] {"ok":true,"entry_fee":198,"rc_prize":328,"for_red":{"Players":[{"Name":"King LuLu","LastSeen":1779089568450,"l10_wins":5,"l10_losses":1,"UserId":7,"rc":0.0},{"Name":"choel","LastSeen":1779089568450,"l10_wins":0,"l10_losses":2,"UserId":9,"rc":0.0}],"GameName":"soccar","Port":26403,"InitTime":1779089568450,"instance_started":true,"match_id":56,"entry_fee":198,"rc_prize":328,"your_team":"red"},"for_blue":{"Players":[{"Name":"King LuLu","LastSeen":1779089568450,"l10_wins":5,"l10_losses":1,"UserId":7,"rc":0.0},{"Name":"choel","LastSeen":1779089568450,"l10_wins":0,"l10_losses":2,"UserId":9,"rc":0.0}],"GameName":"soccar","Port":26403,"InitTime":1779089568450,"instance_started":true,"match_id":56,"entry_fee":198,"rc_prize":328,"your_team":"blue"},"your_team":""} +[05/18/2026 07:32:48] Mirror server: client disconnected (connId=-1479580889) +[05/18/2026 07:32:48] Mirror server: client disconnected (connId=-1479580896) +[05/18/2026 07:32:48] Active player connections: 0 +[05/18/2026 07:32:53] Server will be closed due to no players in, 60 +[05/18/2026 07:33:03] Server will be closed due to no players in, 50 +[05/18/2026 07:33:13] Server will be closed due to no players in, 40 +[05/18/2026 07:33:23] Server will be closed due to no players in, 30 +[05/18/2026 07:33:33] Server will be closed due to no players in, 20 +[05/18/2026 07:33:43] Server will be closed due to no players in, 10 +[05/18/2026 07:33:53] All players left, exiting +[05/18/2026 07:33:53] Dedicated match PATCH success: 200 {"ok":true,"id":55} diff --git a/games/soccar/soccar_Data/Logs/56.txt b/games/soccar/soccar_Data/Logs/56.txt new file mode 100644 index 0000000..2dd1377 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/56.txt @@ -0,0 +1,127 @@ +[05/18/2026 07:32:49] Starting server at port 26403 +[05/18/2026 07:32:49] Mirror server exception logging enabled +[05/18/2026 07:32:49] Failed to fetch red and blue names, isServer? +[05/18/2026 07:32:49] Starting auto close watchdog +[05/18/2026 07:32:49] Active player connections: 0 +[05/18/2026 07:32:52] Active player connections: 1 +[05/18/2026 07:32:52] Client 15 set team to Red +[05/18/2026 07:32:53] Dedicated match PATCH success: 200 {"ok":true,"id":56} +[05/18/2026 07:32:53] Active player connections: 2 +[05/18/2026 07:32:53] Game started On Server +[05/18/2026 07:32:53] Client 16 set team to Blue +[05/18/2026 07:32:53] Dedicated match PATCH success: 200 {"ok":true,"id":56} +[05/18/2026 07:32:54] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:32:54] launching puck at (0.20, -5.00) with (-13.63, 348.19) force +[05/18/2026 07:33:02] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:33:02] launching puck at (-3.16, 3.87) with (220.55, -269.77) force +[05/18/2026 07:33:07] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:33:07] launching puck at (-4.95, 0.69) with (345.16, -47.78) force +[05/18/2026 07:33:18] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:33:18] launching puck at (-1.43, 4.79) with (99.38, -333.98) force +[05/18/2026 07:33:23] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:33:23] launching puck at (-2.44, -4.37) with (169.94, 304.20) force +[05/18/2026 07:33:23] Client 16 sent emoji emote 0 +[05/18/2026 07:33:29] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:33:29] launching puck at (4.42, 2.34) with (-308.08, -162.81) force +[05/18/2026 07:33:33] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:33:33] launching puck at (1.22, -4.85) with (-85.00, 337.93) force +[05/18/2026 07:33:42] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:33:42] launching puck at (4.46, 2.27) with (-310.60, -157.95) force +[05/18/2026 07:33:50] force = 70 * 0.9138358 = 63.9685 +[05/18/2026 07:33:50] launching puck at (-2.82, -3.01) with (180.41, 192.58) force +[05/18/2026 07:34:01] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:34:01] launching puck at (-2.40, 4.39) with (167.12, -305.76) force +[05/18/2026 07:34:06] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:34:06] launching puck at (0.06, 5.00) with (-3.95, -348.43) force +[05/18/2026 07:34:14] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:34:14] launching puck at (-1.56, 4.75) with (108.76, -331.04) force +[05/18/2026 07:34:18] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:34:18] launching puck at (1.52, 4.76) with (-105.60, -332.07) force +[05/18/2026 07:34:24] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:34:24] launching puck at (3.59, -3.48) with (-249.92, 242.82) force +[05/18/2026 07:34:28] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:34:28] launching puck at (-0.74, 4.94) with (51.59, -344.61) force +[05/18/2026 07:34:32] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:34:32] launching puck at (0.29, -4.99) with (-20.56, 347.85) force +[05/18/2026 07:34:37] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:34:37] launching puck at (-4.66, 1.82) with (324.46, -127.05) force +[05/18/2026 07:34:46] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:34:46] launching puck at (-1.48, 4.78) with (103.27, -332.80) force +[05/18/2026 07:34:50] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:34:50] launching puck at (-1.64, 4.72) with (114.37, -329.15) force +[05/18/2026 07:34:55] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:34:55] launching puck at (-0.25, 4.99) with (17.15, -348.03) force +[05/18/2026 07:35:02] force = 70 * 0.9662467 = 67.63727 +[05/18/2026 07:35:02] launching puck at (4.68, -0.02) with (-316.28, 1.30) force +[05/18/2026 07:35:08] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:35:08] launching puck at (-2.03, 4.57) with (141.71, -318.34) force +[05/18/2026 07:35:18] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:35:18] launching puck at (4.96, -0.65) with (-345.45, 45.63) force +[05/18/2026 07:35:24] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:35:24] launching puck at (-0.97, -4.91) with (67.46, 341.86) force +[05/18/2026 07:35:29] force = 70 * 0.7772087 = 54.40461 +[05/18/2026 07:35:29] launching puck at (0.11, 3.00) with (-5.72, -163.16) force +[05/18/2026 07:35:37] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:35:37] launching puck at (4.81, -1.38) with (-334.94, 96.10) force +[05/18/2026 07:35:44] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:35:44] launching puck at (-1.13, -4.87) with (78.80, 339.43) force +[05/18/2026 07:35:45] Red goal scored, red score is now 1 +[05/18/2026 07:35:50] Client 15 sent emoji emote 5 +[05/18/2026 07:35:50] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:35:50] launching puck at (0.20, 5.00) with (-14.19, -348.16) force +[05/18/2026 07:35:55] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:35:55] launching puck at (-4.40, -2.38) with (306.47, 165.82) force +[05/18/2026 07:36:01] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:36:01] launching puck at (1.39, 4.80) with (-97.02, -334.67) force +[05/18/2026 07:36:06] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:36:06] launching puck at (2.17, 4.51) with (-151.01, -314.03) force +[05/18/2026 07:36:13] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:36:13] launching puck at (5.00, -0.14) with (-348.32, 9.72) force +[05/18/2026 07:36:28] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:36:28] launching puck at (-0.20, -5.00) with (13.62, 348.19) force +[05/18/2026 07:36:29] Red goal scored, red score is now 2 +[05/18/2026 07:36:32] Client 15 sent emoji emote 5 +[05/18/2026 07:36:35] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:36:35] launching puck at (-0.32, 4.99) with (22.61, -347.72) force +[05/18/2026 07:36:39] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:36:39] launching puck at (4.77, -1.51) with (-332.19, 105.20) force +[05/18/2026 07:36:45] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:36:45] launching puck at (-4.14, 2.81) with (288.21, -195.85) force +[05/18/2026 07:36:52] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:36:52] launching puck at (2.56, -4.30) with (-178.40, 299.32) force +[05/18/2026 07:37:00] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:37:00] launching puck at (2.58, 4.28) with (-180.13, -298.28) force +[05/18/2026 07:37:01] Client 15 sent emoji emote 5 +[05/18/2026 07:37:03] Client 15 sent emoji emote 5 +[05/18/2026 07:37:04] Client 15 sent emoji emote 5 +[05/18/2026 07:37:05] Client 15 sent emoji emote 5 +[05/18/2026 07:37:06] Client 15 sent emoji emote 5 +[05/18/2026 07:37:07] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:37:07] launching puck at (0.37, -4.99) with (-25.61, 347.51) force +[05/18/2026 07:37:09] Client 15 sent emoji emote 5 +[05/18/2026 07:37:15] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:37:15] launching puck at (4.66, 1.81) with (-324.77, -126.28) force +[05/18/2026 07:37:19] Client 16 sent emoji emote 3 +[05/18/2026 07:37:23] Client 16 sent emoji emote 4 +[05/18/2026 07:37:24] Client 16 sent emoji emote 4 +[05/18/2026 07:37:26] Client 16 sent emoji emote 4 +[05/18/2026 07:37:26] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:37:26] launching puck at (-0.38, -4.99) with (26.69, 347.43) force +[05/18/2026 07:37:27] Red goal scored, red score is now 3 +[05/18/2026 07:37:27] Dedicated match PATCH success: 200 {"ok":true,"id":56} +[05/18/2026 07:37:28] Client 16 sent emoji emote 4 +[05/18/2026 07:37:29] Dedicated match winner PATCH success: 200 {"ok":true,"id":56,"winner_id":7,"economy":{"entry_fee_rc":198,"rc_prize":328,"participant_cc":100}} +[05/18/2026 07:37:29] Client 16 sent emoji emote 3 +[05/18/2026 07:37:29] Client 15 sent emoji emote 5 +[05/18/2026 07:37:53] Mirror server: client disconnected (connId=-1479580778) +[05/18/2026 07:37:53] Active player connections: 1 +[05/18/2026 07:37:57] Mirror server: client disconnected (connId=-1479580779) +[05/18/2026 07:37:57] Active player connections: 0 +[05/18/2026 07:38:02] Server will be closed due to no players in, 60 +[05/18/2026 07:38:12] Server will be closed due to no players in, 50 +[05/18/2026 07:38:22] Server will be closed due to no players in, 40 +[05/18/2026 07:38:32] Server will be closed due to no players in, 30 +[05/18/2026 07:38:42] Server will be closed due to no players in, 20 +[05/18/2026 07:38:52] Server will be closed due to no players in, 10 +[05/18/2026 07:39:02] All players left, exiting +[05/18/2026 07:39:03] Dedicated match PATCH success: 200 {"ok":true,"id":56} diff --git a/games/soccar/soccar_Data/Logs/57.txt b/games/soccar/soccar_Data/Logs/57.txt new file mode 100644 index 0000000..5a822f9 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/57.txt @@ -0,0 +1,120 @@ +[05/18/2026 07:59:03] Starting server at port 26672 +[05/18/2026 07:59:03] Mirror server exception logging enabled +[05/18/2026 07:59:03] Failed to fetch red and blue names, isServer? +[05/18/2026 07:59:03] Starting auto close watchdog +[05/18/2026 07:59:03] Active player connections: 0 +[05/18/2026 07:59:06] Active player connections: 1 +[05/18/2026 07:59:06] Client 15 set team to Blue +[05/18/2026 07:59:07] Dedicated match PATCH success: 200 {"ok":true,"id":57} +[05/18/2026 07:59:07] Active player connections: 2 +[05/18/2026 07:59:07] Game started On Server +[05/18/2026 07:59:07] Client 16 set team to Red +[05/18/2026 07:59:08] Dedicated match PATCH success: 200 {"ok":true,"id":57} +[05/18/2026 07:59:10] Client 15 sent emoji emote 5 +[05/18/2026 07:59:11] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:59:11] launching puck at (0.10, -5.00) with (-7.16, 348.38) force +[05/18/2026 07:59:16] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:59:16] launching puck at (-4.85, -1.23) with (337.77, 85.64) force +[05/18/2026 07:59:21] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:59:21] launching puck at (-2.68, -4.22) with (186.44, 294.38) force +[05/18/2026 07:59:30] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:59:30] launching puck at (4.47, 2.25) with (-311.35, -156.46) force +[05/18/2026 07:59:35] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:59:35] launching puck at (1.48, -4.78) with (-103.22, 332.82) force +[05/18/2026 07:59:41] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:59:41] launching puck at (-3.81, 3.24) with (265.39, -225.80) force +[05/18/2026 07:59:45] Client 15 sent text emote Oops +[05/18/2026 07:59:50] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:59:50] launching puck at (-4.94, -0.78) with (344.16, 54.53) force +[05/18/2026 07:59:53] Client 16 sent emoji emote 4 +[05/18/2026 07:59:54] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 07:59:54] launching puck at (0.41, -4.98) with (-28.53, 347.28) force +[05/18/2026 08:00:02] Client 15 sent text emote Nice shot! +[05/18/2026 08:00:04] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:00:04] launching puck at (0.23, -4.99) with (-16.07, 348.08) force +[05/18/2026 08:00:09] Client 15 sent text emote WOW +[05/18/2026 08:00:14] force = 70 * 0.8716614 = 61.0163 +[05/18/2026 08:00:14] launching puck at (-3.72, -0.20) with (227.19, 12.19) force +[05/18/2026 08:00:20] force = 70 * 0.7761689 = 54.33183 +[05/18/2026 08:00:20] launching puck at (1.39, -2.65) with (-75.76, 143.94) force +[05/18/2026 08:00:20] Red goal scored, red score is now 1 +[05/18/2026 08:00:22] Client 15 sent text emote Nice shot! +[05/18/2026 08:00:23] Client 16 sent emoji emote 5 +[05/18/2026 08:00:27] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:00:27] launching puck at (-1.28, 4.83) with (89.16, -336.85) force +[05/18/2026 08:00:28] Client 16 sent text emote Thanks! +[05/18/2026 08:00:32] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:00:32] launching puck at (2.35, -4.41) with (-163.84, 307.53) force +[05/18/2026 08:00:37] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:00:37] launching puck at (-3.39, 3.68) with (236.05, -256.32) force +[05/18/2026 08:00:42] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:00:42] launching puck at (3.18, -3.86) with (-221.34, 269.12) force +[05/18/2026 08:00:47] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:00:47] launching puck at (2.28, 4.45) with (-158.93, -310.10) force +[05/18/2026 08:00:52] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:00:52] launching puck at (3.37, -3.69) with (-235.20, 257.10) force +[05/18/2026 08:01:01] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:01:01] launching puck at (2.89, 4.08) with (-201.52, -284.27) force +[05/18/2026 08:01:02] Blue goal scored, blue score is now 1 +[05/18/2026 08:01:04] Client 15 sent emoji emote 5 +[05/18/2026 08:01:05] Client 16 sent text emote Nice shot! +[05/18/2026 08:01:07] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:01:07] launching puck at (0.02, -5.00) with (-1.11, 348.45) force +[05/18/2026 08:01:08] Client 15 sent text emote Thanks! +[05/18/2026 08:01:13] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:01:13] launching puck at (3.37, 3.69) with (-234.93, -257.34) force +[05/18/2026 08:01:18] Client 15 sent emoji emote 1 +[05/18/2026 08:01:24] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:01:24] launching puck at (0.74, -4.95) with (-51.54, 344.62) force +[05/18/2026 08:01:29] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:01:29] launching puck at (0.49, 4.98) with (-34.00, -346.79) force +[05/18/2026 08:01:37] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:01:37] launching puck at (-0.60, -4.96) with (41.79, 345.94) force +[05/18/2026 08:01:42] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:01:42] launching puck at (-3.55, 3.52) with (247.73, -245.05) force +[05/18/2026 08:01:47] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:01:47] launching puck at (-1.96, -4.60) with (136.37, 320.66) force +[05/18/2026 08:01:48] Red goal scored, red score is now 2 +[05/18/2026 08:01:53] Client 15 sent text emote Oops +[05/18/2026 08:01:56] Client 15 sent text emote Nice shot! +[05/18/2026 08:01:58] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:01:58] launching puck at (-1.13, 4.87) with (78.98, -339.38) force +[05/18/2026 08:02:01] Client 16 sent text emote Thanks! +[05/18/2026 08:02:03] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:02:03] launching puck at (1.79, -4.67) with (-125.08, 325.23) force +[05/18/2026 08:02:07] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:02:07] launching puck at (3.97, 3.05) with (-276.37, -212.23) force +[05/18/2026 08:02:07] Client 16 sent emoji emote 1 +[05/18/2026 08:02:11] Client 15 sent emoji emote 1 +[05/18/2026 08:02:12] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:02:12] launching puck at (0.76, -4.94) with (-52.89, 344.42) force +[05/18/2026 08:02:14] Client 15 sent emoji emote 0 +[05/18/2026 08:02:15] Client 16 sent emoji emote 4 +[05/18/2026 08:02:16] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:02:16] launching puck at (1.09, 4.88) with (-75.96, -340.07) force +[05/18/2026 08:02:27] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:02:27] launching puck at (0.55, -4.97) with (-38.36, 346.34) force +[05/18/2026 08:02:32] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:02:32] launching puck at (-5.00, -0.18) with (348.23, 12.45) force +[05/18/2026 08:02:39] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:02:39] launching puck at (-3.78, -3.27) with (263.50, 228.01) force +[05/18/2026 08:02:39] Red goal scored, red score is now 3 +[05/18/2026 08:02:41] Dedicated match PATCH success: 200 {"ok":true,"id":57} +[05/18/2026 08:02:42] Client 16 sent text emote GG +[05/18/2026 08:02:43] Client 15 sent text emote Nice shot! +[05/18/2026 08:02:44] Dedicated match winner PATCH success: 200 {"ok":true,"id":57,"winner_id":7,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/18/2026 08:02:46] Rematch requested +[05/18/2026 08:03:00] Rematch was confirmed, closing in 5 secs. new room : +[05/18/2026 08:03:00] {"ok":true,"entry_fee":5,"rc_prize":8,"for_red":{"Players":[{"Name":"King LuLu","LastSeen":1779091380875,"l10_wins":7,"l10_losses":1,"UserId":7,"rc":0.0},{"Name":"warlock3","LastSeen":1779091380875,"l10_wins":1,"l10_losses":4,"UserId":6,"rc":0.0}],"GameName":"soccar","Port":26987,"InitTime":1779091380875,"instance_started":true,"match_id":58,"entry_fee":5,"rc_prize":8,"your_team":"red"},"for_blue":{"Players":[{"Name":"King LuLu","LastSeen":1779091380875,"l10_wins":7,"l10_losses":1,"UserId":7,"rc":0.0},{"Name":"warlock3","LastSeen":1779091380875,"l10_wins":1,"l10_losses":4,"UserId":6,"rc":0.0}],"GameName":"soccar","Port":26987,"InitTime":1779091380875,"instance_started":true,"match_id":58,"entry_fee":5,"rc_prize":8,"your_team":"blue"},"your_team":""} +[05/18/2026 08:03:01] Mirror server: client disconnected (connId=720394182) +[05/18/2026 08:03:01] Active player connections: 1 +[05/18/2026 08:03:01] Mirror server: client disconnected (connId=-1479579094) +[05/18/2026 08:03:01] Active player connections: 0 +[05/18/2026 08:03:06] Server will be closed due to no players in, 60 +[05/18/2026 08:03:16] Server will be closed due to no players in, 50 +[05/18/2026 08:03:26] Server will be closed due to no players in, 40 +[05/18/2026 08:03:36] Server will be closed due to no players in, 30 +[05/18/2026 08:03:46] Server will be closed due to no players in, 20 +[05/18/2026 08:03:56] Server will be closed due to no players in, 10 +[05/18/2026 08:04:06] All players left, exiting +[05/18/2026 08:04:06] Dedicated match PATCH success: 200 {"ok":true,"id":57} diff --git a/games/soccar/soccar_Data/Logs/58.txt b/games/soccar/soccar_Data/Logs/58.txt new file mode 100644 index 0000000..c2a9816 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/58.txt @@ -0,0 +1,95 @@ +[05/18/2026 08:03:02] Starting server at port 26987 +[05/18/2026 08:03:02] Mirror server exception logging enabled +[05/18/2026 08:03:02] Failed to fetch red and blue names, isServer? +[05/18/2026 08:03:02] Starting auto close watchdog +[05/18/2026 08:03:02] Active player connections: 0 +[05/18/2026 08:03:04] Active player connections: 1 +[05/18/2026 08:03:05] Client 15 set team to Red +[05/18/2026 08:03:05] Active player connections: 2 +[05/18/2026 08:03:05] Game started On Server +[05/18/2026 08:03:06] Client 16 set team to Blue +[05/18/2026 08:03:06] Dedicated match PATCH success: 200 {"ok":true,"id":58} +[05/18/2026 08:03:06] Dedicated match PATCH success: 200 {"ok":true,"id":58} +[05/18/2026 08:03:08] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:03:08] launching puck at (-0.15, -5.00) with (10.62, 348.29) force +[05/18/2026 08:03:12] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:03:12] launching puck at (-2.04, 4.57) with (141.88, -318.26) force +[05/18/2026 08:03:18] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:03:18] launching puck at (-3.32, -3.74) with (231.38, 260.54) force +[05/18/2026 08:03:21] Client 15 sent emoji emote 4 +[05/18/2026 08:03:23] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:03:23] launching puck at (-4.15, -2.79) with (289.10, 194.53) force +[05/18/2026 08:03:30] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:03:30] launching puck at (-0.12, -5.00) with (8.16, 348.36) force +[05/18/2026 08:03:34] Client 15 sent emoji emote 4 +[05/18/2026 08:03:35] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:03:35] launching puck at (-4.58, -2.01) with (319.05, 140.10) force +[05/18/2026 08:03:39] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:03:39] launching puck at (4.22, -2.69) with (-293.87, 187.25) force +[05/18/2026 08:03:44] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:03:44] launching puck at (4.98, -0.47) with (-346.93, 32.57) force +[05/18/2026 08:03:51] force = 70 * 0.6636688 = 46.45682 +[05/18/2026 08:03:51] launching puck at (1.81, 1.49) with (-83.93, -69.06) force +[05/18/2026 08:03:56] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:03:56] launching puck at (1.34, -4.82) with (-93.11, 335.78) force +[05/18/2026 08:04:00] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:04:00] launching puck at (0.49, 4.98) with (-34.00, -346.79) force +[05/18/2026 08:04:05] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:04:05] launching puck at (4.48, -2.22) with (-312.24, 154.69) force +[05/18/2026 08:04:09] Client 16 sent emoji emote 1 +[05/18/2026 08:04:09] force = 70 * 0.6565946 = 45.96162 +[05/18/2026 08:04:09] launching puck at (-0.13, -2.30) with (5.91, 105.73) force +[05/18/2026 08:04:09] Red goal scored, red score is now 1 +[05/18/2026 08:04:11] Client 16 sent emoji emote 1 +[05/18/2026 08:04:14] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:04:14] launching puck at (-1.03, 4.89) with (71.48, -341.04) force +[05/18/2026 08:04:19] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:04:19] launching puck at (2.51, -4.32) with (-175.24, 301.18) force +[05/18/2026 08:04:22] Client 16 sent text emote WOW +[05/18/2026 08:04:25] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:04:25] launching puck at (2.26, -4.46) with (-157.74, 310.70) force +[05/18/2026 08:04:28] Client 15 sent text emote What a save! +[05/18/2026 08:04:30] force = 70 * 0.8694198 = 60.85939 +[05/18/2026 08:04:30] launching puck at (-1.37, -3.45) with (83.47, 209.73) force +[05/18/2026 08:04:31] Red goal scored, red score is now 2 +[05/18/2026 08:04:32] Client 16 sent text emote Nice shot! +[05/18/2026 08:04:35] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:04:35] launching puck at (-0.35, 4.99) with (24.39, -347.60) force +[05/18/2026 08:04:36] Client 15 sent text emote Thanks! +[05/18/2026 08:04:42] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:04:42] launching puck at (4.97, -0.58) with (-346.11, 40.36) force +[05/18/2026 08:04:47] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:04:47] launching puck at (4.27, 2.61) with (-297.24, -181.85) force +[05/18/2026 08:04:47] Blue goal scored, blue score is now 1 +[05/18/2026 08:04:49] Client 16 sent emoji emote 5 +[05/18/2026 08:04:51] Client 15 sent text emote Nice shot! +[05/18/2026 08:04:53] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:04:53] launching puck at (-0.03, -5.00) with (2.05, 348.45) force +[05/18/2026 08:04:56] Client 16 sent text emote Thanks! +[05/18/2026 08:04:59] force = 70 * 0.978675 = 68.50725 +[05/18/2026 08:04:59] launching puck at (2.49, -4.12) with (-170.90, 281.97) force +[05/18/2026 08:05:03] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:05:03] launching puck at (2.08, -4.55) with (-145.20, 316.76) force +[05/18/2026 08:05:09] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:05:09] launching puck at (-0.42, -4.98) with (29.15, 347.23) force +[05/18/2026 08:05:20] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:05:20] launching puck at (0.76, -4.94) with (-53.26, 344.36) force +[05/18/2026 08:05:20] Red goal scored, red score is now 3 +[05/18/2026 08:05:21] Dedicated match PATCH success: 200 {"ok":true,"id":58} +[05/18/2026 08:05:22] Client 16 sent text emote Nice shot! +[05/18/2026 08:05:23] Dedicated match winner PATCH success: 200 {"ok":true,"id":58,"winner_id":7,"economy":{"entry_fee_rc":5,"rc_prize":8,"participant_cc":100}} +[05/18/2026 08:05:29] Rematch requested +[05/18/2026 08:05:35] Rematch was confirmed, closing in 5 secs. new room : +[05/18/2026 08:05:35] {"ok":true,"entry_fee":5,"rc_prize":8,"for_red":{"Players":[{"Name":"King LuLu","LastSeen":1779091535571,"l10_wins":7,"l10_losses":1,"UserId":7,"rc":0.0},{"Name":"warlock3","LastSeen":1779091535571,"l10_wins":0,"l10_losses":5,"UserId":6,"rc":0.0}],"GameName":"soccar","Port":26307,"InitTime":1779091535571,"instance_started":true,"match_id":59,"entry_fee":5,"rc_prize":8,"your_team":"red"},"for_blue":{"Players":[{"Name":"King LuLu","LastSeen":1779091535571,"l10_wins":7,"l10_losses":1,"UserId":7,"rc":0.0},{"Name":"warlock3","LastSeen":1779091535571,"l10_wins":0,"l10_losses":5,"UserId":6,"rc":0.0}],"GameName":"soccar","Port":26307,"InitTime":1779091535571,"instance_started":true,"match_id":59,"entry_fee":5,"rc_prize":8,"your_team":"blue"},"your_team":""} +[05/18/2026 08:05:35] Mirror server: client disconnected (connId=720385098) +[05/18/2026 08:05:35] Active player connections: 1 +[05/18/2026 08:05:35] Mirror server: client disconnected (connId=-1479578849) +[05/18/2026 08:05:35] Active player connections: 0 +[05/18/2026 08:05:40] Server will be closed due to no players in, 60 +[05/18/2026 08:05:50] Server will be closed due to no players in, 50 +[05/18/2026 08:06:00] Server will be closed due to no players in, 40 +[05/18/2026 08:06:10] Server will be closed due to no players in, 30 +[05/18/2026 08:06:20] Server will be closed due to no players in, 20 +[05/18/2026 08:06:30] Server will be closed due to no players in, 10 +[05/18/2026 08:06:40] All players left, exiting +[05/18/2026 08:06:41] Dedicated match PATCH success: 200 {"ok":true,"id":58} diff --git a/games/soccar/soccar_Data/Logs/59.txt b/games/soccar/soccar_Data/Logs/59.txt new file mode 100644 index 0000000..a88a4a0 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/59.txt @@ -0,0 +1,192 @@ +[05/18/2026 08:05:37] Starting server at port 26307 +[05/18/2026 08:05:37] Mirror server exception logging enabled +[05/18/2026 08:05:37] Failed to fetch red and blue names, isServer? +[05/18/2026 08:05:37] Starting auto close watchdog +[05/18/2026 08:05:37] Active player connections: 0 +[05/18/2026 08:05:39] Active player connections: 1 +[05/18/2026 08:05:39] Client 15 set team to Red +[05/18/2026 08:05:40] Dedicated match PATCH success: 200 {"ok":true,"id":59} +[05/18/2026 08:05:40] Active player connections: 2 +[05/18/2026 08:05:40] Game started On Server +[05/18/2026 08:05:40] Client 16 set team to Blue +[05/18/2026 08:05:40] Dedicated match PATCH success: 200 {"ok":true,"id":59} +[05/18/2026 08:05:42] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:05:42] launching puck at (0.07, -5.00) with (-4.78, 348.42) force +[05/18/2026 08:05:49] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:05:49] launching puck at (3.24, 3.81) with (-225.85, -265.35) force +[05/18/2026 08:05:53] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:05:53] launching puck at (4.95, 0.67) with (-345.28, -46.90) force +[05/18/2026 08:06:00] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:06:00] launching puck at (-1.30, 4.83) with (90.35, -336.54) force +[05/18/2026 08:06:05] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:06:05] launching puck at (2.44, -4.37) with (-169.94, 304.20) force +[05/18/2026 08:06:10] Client 15 sent text emote Oops +[05/18/2026 08:06:15] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:06:15] launching puck at (2.35, 4.41) with (-164.08, -307.41) force +[05/18/2026 08:06:18] Client 16 sent emoji emote 4 +[05/18/2026 08:06:22] Client 15 sent emoji emote 2 +[05/18/2026 08:06:24] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:06:24] launching puck at (2.91, 4.06) with (-202.94, -283.26) force +[05/18/2026 08:06:30] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:06:30] launching puck at (2.88, 4.09) with (-200.74, -284.82) force +[05/18/2026 08:06:34] Client 16 sent emoji emote 4 +[05/18/2026 08:06:35] Client 16 sent emoji emote 1 +[05/18/2026 08:06:38] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:06:38] launching puck at (-0.62, 4.96) with (43.14, -345.77) force +[05/18/2026 08:06:39] Blue goal scored, blue score is now 1 +[05/18/2026 08:06:41] Client 16 sent emoji emote 0 +[05/18/2026 08:06:43] Client 15 sent emoji emote 2 +[05/18/2026 08:06:43] Client 16 sent text emote Nice shot! +[05/18/2026 08:06:44] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:06:44] launching puck at (-0.01, -5.00) with (0.89, 348.45) force +[05/18/2026 08:06:50] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:06:50] launching puck at (-3.16, 3.87) with (220.56, -269.76) force +[05/18/2026 08:06:57] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:06:57] launching puck at (-2.49, -4.34) with (173.53, 302.17) force +[05/18/2026 08:07:01] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:07:01] launching puck at (3.26, 3.79) with (-227.43, -264.00) force +[05/18/2026 08:07:10] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:07:10] launching puck at (-4.59, -1.99) with (319.72, 138.56) force +[05/18/2026 08:07:14] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:07:14] launching puck at (4.84, 1.24) with (-337.54, -86.51) force +[05/18/2026 08:07:25] force = 70 * 0.8419869 = 58.93908 +[05/18/2026 08:07:25] launching puck at (-1.93, -2.89) with (113.80, 170.48) force +[05/18/2026 08:07:29] Client 15 sent emoji emote 4 +[05/18/2026 08:07:30] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:07:30] launching puck at (-2.18, 4.50) with (151.84, -313.63) force +[05/18/2026 08:07:33] Client 16 sent emoji emote 1 +[05/18/2026 08:07:37] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:07:37] launching puck at (-4.40, -2.37) with (306.81, 165.19) force +[05/18/2026 08:07:42] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:07:42] launching puck at (2.84, 4.11) with (-198.02, -286.72) force +[05/18/2026 08:07:47] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:07:47] launching puck at (0.98, 4.90) with (-68.63, -341.63) force +[05/18/2026 08:07:51] force = 70 * 0.9482498 = 66.37748 +[05/18/2026 08:07:51] launching puck at (-2.57, 3.67) with (170.34, -243.85) force +[05/18/2026 08:07:56] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:07:56] launching puck at (-1.00, 4.90) with (69.68, -341.42) force +[05/18/2026 08:08:01] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:08:01] launching puck at (-0.46, 4.98) with (32.04, -346.98) force +[05/18/2026 08:08:02] Client 15 sent text emote well played +[05/18/2026 08:08:04] Client 16 sent emoji emote 4 +[05/18/2026 08:08:16] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:08:16] launching puck at (-4.13, -2.82) with (287.78, 196.47) force +[05/18/2026 08:08:21] Client 15 sent text emote WOW +[05/18/2026 08:08:21] force = 70 * 0.9038953 = 63.27267 +[05/18/2026 08:08:21] launching puck at (1.95, 3.52) with (-123.64, -222.83) force +[05/18/2026 08:08:24] Client 16 sent emoji emote 1 +[05/18/2026 08:08:25] Client 16 sent emoji emote 1 +[05/18/2026 08:08:28] force = 70 * 0.9381326 = 65.66929 +[05/18/2026 08:08:28] launching puck at (4.37, -0.21) with (-286.91, 13.52) force +[05/18/2026 08:08:32] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:08:32] launching puck at (0.72, -4.95) with (-49.83, 344.87) force +[05/18/2026 08:08:39] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:08:39] launching puck at (0.17, -5.00) with (-11.99, 348.25) force +[05/18/2026 08:08:46] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:08:46] launching puck at (-0.67, 4.95) with (46.95, -345.28) force +[05/18/2026 08:08:53] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:08:53] launching puck at (-3.17, -3.87) with (220.77, 269.59) force +[05/18/2026 08:09:00] force = 70 * 0.742986 = 52.00902 +[05/18/2026 08:09:00] launching puck at (-1.31, -2.46) with (67.92, 127.74) force +[05/18/2026 08:09:04] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:09:04] launching puck at (-1.70, -4.70) with (118.71, 327.61) force +[05/18/2026 08:09:08] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:09:08] launching puck at (0.53, 4.97) with (-36.81, -346.50) force +[05/18/2026 08:09:15] force = 70 * 0.8769657 = 61.3876 +[05/18/2026 08:09:15] launching puck at (3.66, -0.93) with (-224.63, 57.24) force +[05/18/2026 08:09:24] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:09:24] launching puck at (-4.74, -1.58) with (330.51, 110.37) force +[05/18/2026 08:09:28] Client 16 sent emoji emote 1 +[05/18/2026 08:09:29] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:09:29] launching puck at (-0.50, -4.98) with (34.51, 346.74) force +[05/18/2026 08:09:29] Red goal scored, red score is now 1 +[05/18/2026 08:09:31] Client 16 sent text emote Nice shot! +[05/18/2026 08:09:34] Client 15 sent emoji emote 0 +[05/18/2026 08:09:34] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:09:34] launching puck at (-0.49, 4.98) with (34.38, -346.75) force +[05/18/2026 08:09:35] Client 15 sent text emote Thanks! +[05/18/2026 08:09:46] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:09:46] launching puck at (-4.13, -2.82) with (287.85, 196.38) force +[05/18/2026 08:09:51] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:09:51] launching puck at (4.80, 1.40) with (-334.42, -97.90) force +[05/18/2026 08:10:02] force = 70 * 0.9756563 = 68.29594 +[05/18/2026 08:10:02] launching puck at (0.27, 4.77) with (-18.19, -325.92) force +[05/18/2026 08:10:08] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:10:08] launching puck at (1.64, 4.72) with (-114.51, -329.10) force +[05/18/2026 08:10:12] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:10:12] launching puck at (3.94, -3.08) with (-274.64, 214.46) force +[05/18/2026 08:10:16] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:10:16] launching puck at (0.98, 4.90) with (-68.24, -341.71) force +[05/18/2026 08:10:21] force = 70 * 0.8517494 = 59.62246 +[05/18/2026 08:10:21] launching puck at (1.31, -3.31) with (-77.98, 197.28) force +[05/18/2026 08:10:25] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:10:25] launching puck at (2.04, 4.57) with (-142.01, -318.20) force +[05/18/2026 08:10:26] Blue goal scored, blue score is now 2 +[05/18/2026 08:10:28] Client 16 sent emoji emote 5 +[05/18/2026 08:10:33] Client 15 sent text emote Nice shot! +[05/18/2026 08:10:34] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:10:34] launching puck at (0.03, -5.00) with (-2.14, 348.45) force +[05/18/2026 08:10:41] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:10:41] launching puck at (-0.48, 4.98) with (33.51, -346.84) force +[05/18/2026 08:10:51] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:10:51] launching puck at (2.47, -4.35) with (-171.88, 303.11) force +[05/18/2026 08:10:55] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:10:55] launching puck at (1.53, 4.76) with (-106.46, -331.79) force +[05/18/2026 08:11:01] force = 70 * 0.7593706 = 53.15594 +[05/18/2026 08:11:01] launching puck at (-1.57, 2.42) with (83.23, -128.75) force +[05/18/2026 08:11:05] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:11:05] launching puck at (0.05, 5.00) with (-3.41, -348.44) force +[05/18/2026 08:11:10] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:11:10] launching puck at (1.83, -4.65) with (-127.79, 324.17) force +[05/18/2026 08:11:15] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:11:15] launching puck at (4.96, 0.63) with (-345.63, -44.25) force +[05/18/2026 08:11:20] force = 70 * 0.987568 = 69.12976 +[05/18/2026 08:11:20] launching puck at (4.77, -1.16) with (-330.00, 79.85) force +[05/18/2026 08:11:26] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:11:26] launching puck at (-1.82, 4.66) with (126.55, -324.66) force +[05/18/2026 08:11:30] Client 16 sent text emote What a save! +[05/18/2026 08:11:30] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:11:30] launching puck at (-1.35, -4.81) with (94.24, 335.47) force +[05/18/2026 08:11:34] Client 15 sent text emote Thanks! +[05/18/2026 08:11:35] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:11:35] launching puck at (-2.19, 4.50) with (152.54, -313.29) force +[05/18/2026 08:11:39] force = 70 * 0.8041817 = 56.29272 +[05/18/2026 08:11:39] launching puck at (-2.08, 2.42) with (117.08, -136.06) force +[05/18/2026 08:11:43] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:11:43] launching puck at (-0.05, 5.00) with (3.24, -348.44) force +[05/18/2026 08:11:48] force = 70 * 0.7036005 = 49.25204 +[05/18/2026 08:11:48] launching puck at (-2.51, 0.48) with (123.46, -23.56) force +[05/18/2026 08:11:52] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:11:52] launching puck at (-0.46, 4.98) with (31.77, -347.00) force +[05/18/2026 08:11:58] force = 70 * 0.71472 = 50.0304 +[05/18/2026 08:11:58] launching puck at (-2.54, 0.62) with (127.10, -30.92) force +[05/18/2026 08:12:01] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:12:01] launching puck at (-0.10, 5.00) with (7.28, -348.38) force +[05/18/2026 08:12:06] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:12:06] launching puck at (2.99, -4.01) with (-208.08, 279.50) force +[05/18/2026 08:12:11] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:12:11] launching puck at (-1.23, 4.85) with (85.37, -337.83) force +[05/18/2026 08:12:13] Client 16 sent emoji emote 1 +[05/18/2026 08:12:17] force = 70 * 0.7014154 = 49.09908 +[05/18/2026 08:12:17] launching puck at (-2.43, 0.73) with (119.41, -35.96) force +[05/18/2026 08:12:21] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 08:12:21] launching puck at (3.12, 3.91) with (-217.62, -272.14) force +[05/18/2026 08:12:21] Blue goal scored, blue score is now 3 +[05/18/2026 08:12:23] Dedicated match PATCH success: 200 {"ok":true,"id":59} +[05/18/2026 08:12:24] Client 16 sent emoji emote 5 +[05/18/2026 08:12:24] Dedicated match winner PATCH success: 200 {"ok":true,"id":59,"winner_id":6,"economy":{"entry_fee_rc":5,"rc_prize":8,"participant_cc":100}} +[05/18/2026 08:12:25] Client 15 sent emoji emote 4 +[05/18/2026 08:12:30] Mirror server: client disconnected (connId=720404387) +[05/18/2026 08:12:30] Active player connections: 1 +[05/18/2026 08:12:33] Rematch requested +[05/18/2026 08:15:21] Mirror server transport error (connId=-1479581647, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting. +[05/18/2026 08:15:21] Mirror server: client disconnected (connId=-1479581647) +[05/18/2026 08:15:21] Active player connections: 0 +[05/18/2026 08:15:26] Server will be closed due to no players in, 60 +[05/18/2026 08:15:36] Server will be closed due to no players in, 50 +[05/18/2026 08:15:46] Server will be closed due to no players in, 40 +[05/18/2026 08:15:56] Server will be closed due to no players in, 30 +[05/18/2026 08:16:06] Server will be closed due to no players in, 20 +[05/18/2026 08:16:16] Server will be closed due to no players in, 10 +[05/18/2026 08:16:26] All players left, exiting +[05/18/2026 08:16:26] Dedicated match PATCH success: 200 {"ok":true,"id":59} diff --git a/games/soccar/soccar_Data/Logs/6.txt b/games/soccar/soccar_Data/Logs/6.txt new file mode 100644 index 0000000..6910a41 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/6.txt @@ -0,0 +1,16 @@ +[05/16/2026 05:23:50] Starting server at port 26774 +[05/16/2026 05:23:50] Failed to fetch red and blue names, isServer? +[05/16/2026 05:23:50] Starting auto close watchdog +[05/16/2026 05:23:50] Active player connections: 0 +[05/16/2026 05:23:54] Active player connections: 1 +[05/16/2026 05:23:55] Client 15 set team to Blue +[05/16/2026 05:23:55] Dedicated match PATCH success: 200 {"ok":true,"id":6} +[05/16/2026 05:24:16] Active player connections: 0 +[05/16/2026 05:24:21] Server will be closed due to no players in, 60 +[05/16/2026 05:24:31] Server will be closed due to no players in, 50 +[05/16/2026 05:24:41] Server will be closed due to no players in, 40 +[05/16/2026 05:24:51] Server will be closed due to no players in, 30 +[05/16/2026 05:25:01] Server will be closed due to no players in, 20 +[05/16/2026 05:25:11] Server will be closed due to no players in, 10 +[05/16/2026 05:25:21] All players left, exiting +[05/16/2026 05:25:21] Dedicated match PATCH success: 200 {"ok":true,"id":6} diff --git a/games/soccar/soccar_Data/Logs/60.txt b/games/soccar/soccar_Data/Logs/60.txt new file mode 100644 index 0000000..e0ec8f4 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/60.txt @@ -0,0 +1,60 @@ +[05/18/2026 19:41:53] Starting server at port 26486 +[05/18/2026 19:41:53] Mirror server exception logging enabled +[05/18/2026 19:41:53] Failed to fetch red and blue names, isServer? +[05/18/2026 19:41:53] Starting auto close watchdog +[05/18/2026 19:41:53] Active player connections: 0 +[05/18/2026 19:41:56] Active player connections: 1 +[05/18/2026 19:41:56] Client 15 set team to Blue +[05/18/2026 19:41:57] Dedicated match PATCH success: 200 {"ok":true,"id":60} +[05/18/2026 19:41:58] Active player connections: 2 +[05/18/2026 19:41:58] Game started On Server +[05/18/2026 19:41:58] Client 16 set team to Red +[05/18/2026 19:41:59] Dedicated match PATCH success: 200 {"ok":true,"id":60} +[05/18/2026 19:42:00] force = 70 * 0.5257457 = 36.8022 +[05/18/2026 19:42:00] launching puck at (1.35, -0.99) with (-49.72, 36.30) force +[05/18/2026 19:42:05] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 19:42:05] launching puck at (0.08, 5.00) with (-5.49, -348.41) force +[05/18/2026 19:42:05] Blue goal scored, blue score is now 1 +[05/18/2026 19:42:10] force = 70 * 0.4145481 = 29.01837 +[05/18/2026 19:42:10] launching puck at (1.07, -0.67) with (-30.99, 19.57) force +[05/18/2026 19:42:13] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 19:42:13] launching puck at (-0.70, 4.95) with (48.47, -345.07) force +[05/18/2026 19:42:18] force = 70 * 0.5989695 = 41.92786 +[05/18/2026 19:42:18] launching puck at (1.32, -1.54) with (-55.41, 64.67) force +[05/18/2026 19:42:22] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 19:42:22] launching puck at (-1.80, 4.67) with (125.19, -325.19) force +[05/18/2026 19:42:27] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 19:42:27] launching puck at (-3.71, -3.35) with (258.38, 233.80) force +[05/18/2026 19:42:32] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 19:42:32] launching puck at (2.35, 4.41) with (-163.72, -307.60) force +[05/18/2026 19:42:38] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 19:42:38] launching puck at (-4.46, 2.26) with (310.79, -157.57) force +[05/18/2026 19:42:41] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 19:42:41] launching puck at (1.93, 4.61) with (-134.28, -321.54) force +[05/18/2026 19:42:45] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 19:42:45] launching puck at (4.35, -2.46) with (-303.46, 171.27) force +[05/18/2026 19:42:49] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 19:42:49] launching puck at (0.96, 4.91) with (-66.58, -342.03) force +[05/18/2026 19:42:53] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 19:42:53] launching puck at (-0.41, 4.98) with (28.42, -347.29) force +[05/18/2026 19:42:53] Blue goal scored, blue score is now 2 +[05/18/2026 19:43:00] force = 70 * 0.6441746 = 45.09222 +[05/18/2026 19:43:00] launching puck at (2.23, -0.19) with (-100.74, 8.74) force +[05/18/2026 19:43:04] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 19:43:04] launching puck at (0.34, 4.99) with (-23.37, -347.67) force +[05/18/2026 19:43:05] Blue goal scored, blue score is now 3 +[05/18/2026 19:43:06] Dedicated match PATCH success: 200 {"ok":true,"id":60} +[05/18/2026 19:43:08] Dedicated match winner PATCH success: 200 {"ok":true,"id":60,"winner_id":6,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/18/2026 19:43:35] Mirror server: client disconnected (connId=1441820622) +[05/18/2026 19:43:35] Active player connections: 1 +[05/18/2026 19:43:45] Mirror server transport error (connId=720389563, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting. +[05/18/2026 19:43:45] Mirror server: client disconnected (connId=720389563) +[05/18/2026 19:43:45] Active player connections: 0 +[05/18/2026 19:43:50] Server will be closed due to no players in, 60 +[05/18/2026 19:44:00] Server will be closed due to no players in, 50 +[05/18/2026 19:44:10] Server will be closed due to no players in, 40 +[05/18/2026 19:44:20] Server will be closed due to no players in, 30 +[05/18/2026 19:44:30] Server will be closed due to no players in, 20 +[05/18/2026 19:44:40] Server will be closed due to no players in, 10 +[05/18/2026 19:44:50] All players left, exiting +[05/18/2026 19:44:50] Dedicated match PATCH success: 200 {"ok":true,"id":60} diff --git a/games/soccar/soccar_Data/Logs/61.txt b/games/soccar/soccar_Data/Logs/61.txt new file mode 100644 index 0000000..91cdda7 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/61.txt @@ -0,0 +1,44 @@ +[05/18/2026 19:44:06] Starting server at port 26999 +[05/18/2026 19:44:06] Mirror server exception logging enabled +[05/18/2026 19:44:06] Failed to fetch red and blue names, isServer? +[05/18/2026 19:44:06] Starting auto close watchdog +[05/18/2026 19:44:06] Active player connections: 0 +[05/18/2026 19:44:08] Active player connections: 1 +[05/18/2026 19:44:08] Client 15 set team to Blue +[05/18/2026 19:44:08] Dedicated match PATCH success: 200 {"ok":true,"id":61} +[05/18/2026 19:44:09] Active player connections: 2 +[05/18/2026 19:44:09] Game started On Server +[05/18/2026 19:44:09] Client 16 set team to Red +[05/18/2026 19:44:10] Dedicated match PATCH success: 200 {"ok":true,"id":61} +[05/18/2026 19:44:26] force = 70 * 0.7255613 = 50.78929 +[05/18/2026 19:44:26] launching puck at (-2.62, 0.56) with (132.93, -28.63) force +[05/18/2026 19:44:31] force = 70 * 0.9801461 = 68.61022 +[05/18/2026 19:44:31] launching puck at (-0.06, -4.83) with (4.38, 331.30) force +[05/18/2026 19:44:31] Red goal scored, red score is now 1 +[05/18/2026 19:44:35] force = 70 * 0.5546775 = 38.82743 +[05/18/2026 19:44:35] launching puck at (-1.76, 0.45) with (68.42, -17.29) force +[05/18/2026 19:44:39] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 19:44:39] launching puck at (-0.02, -5.00) with (1.46, 348.45) force +[05/18/2026 19:44:39] Red goal scored, red score is now 2 +[05/18/2026 19:44:43] force = 70 * 0.6226034 = 43.58224 +[05/18/2026 19:44:43] launching puck at (-2.07, 0.54) with (90.19, -23.64) force +[05/18/2026 19:44:47] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 19:44:47] launching puck at (-0.19, -5.00) with (13.52, 348.19) force +[05/18/2026 19:44:47] Red goal scored, red score is now 3 +[05/18/2026 19:44:47] Dedicated match PATCH success: 200 {"ok":true,"id":61} +[05/18/2026 19:44:49] Dedicated match winner PATCH success: 200 {"ok":true,"id":61,"winner_id":2,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/18/2026 19:44:53] Rematch requested +[05/18/2026 19:44:57] Rematch was confirmed, closing in 5 secs. new room : +[05/18/2026 19:44:57] {"ok":true,"entry_fee":76,"rc_prize":126,"for_red":{"Players":[{"Name":"warlock","LastSeen":1779133497829,"l10_wins":4,"l10_losses":1,"UserId":2,"rc":0.0},{"Name":"warlock3","LastSeen":1779133497829,"l10_wins":2,"l10_losses":5,"UserId":6,"rc":0.0}],"GameName":"soccar","Port":26340,"InitTime":1779133497829,"instance_started":true,"match_id":62,"entry_fee":76,"rc_prize":126,"your_team":"red"},"for_blue":{"Players":[{"Name":"warlock","LastSeen":1779133497829,"l10_wins":4,"l10_losses":1,"UserId":2,"rc":0.0},{"Name":"warlock3","LastSeen":1779133497829,"l10_wins":2,"l10_losses":5,"UserId":6,"rc":0.0}],"GameName":"soccar","Port":26340,"InitTime":1779133497829,"instance_started":true,"match_id":62,"entry_fee":76,"rc_prize":126,"your_team":"blue"},"your_team":""} +[05/18/2026 19:44:57] Mirror server: client disconnected (connId=720402868) +[05/18/2026 19:44:57] Active player connections: 1 +[05/18/2026 19:44:58] Mirror server: client disconnected (connId=1441824473) +[05/18/2026 19:44:58] Active player connections: 0 +[05/18/2026 19:45:03] Server will be closed due to no players in, 60 +[05/18/2026 19:45:13] Server will be closed due to no players in, 50 +[05/18/2026 19:45:23] Server will be closed due to no players in, 40 +[05/18/2026 19:45:33] Server will be closed due to no players in, 30 +[05/18/2026 19:45:43] Server will be closed due to no players in, 20 +[05/18/2026 19:45:53] Server will be closed due to no players in, 10 +[05/18/2026 19:46:03] All players left, exiting +[05/18/2026 19:46:03] Dedicated match PATCH success: 200 {"ok":true,"id":61} diff --git a/games/soccar/soccar_Data/Logs/62.txt b/games/soccar/soccar_Data/Logs/62.txt new file mode 100644 index 0000000..e7f563d --- /dev/null +++ b/games/soccar/soccar_Data/Logs/62.txt @@ -0,0 +1,46 @@ +[05/18/2026 19:44:59] Starting server at port 26340 +[05/18/2026 19:44:59] Mirror server exception logging enabled +[05/18/2026 19:44:59] Failed to fetch red and blue names, isServer? +[05/18/2026 19:44:59] Starting auto close watchdog +[05/18/2026 19:44:59] Active player connections: 0 +[05/18/2026 19:45:02] Active player connections: 1 +[05/18/2026 19:45:03] Client 15 set team to Blue +[05/18/2026 19:45:03] Active player connections: 2 +[05/18/2026 19:45:03] Game started On Server +[05/18/2026 19:45:03] Client 16 set team to Red +[05/18/2026 19:45:03] Dedicated match PATCH success: 200 {"ok":true,"id":62} +[05/18/2026 19:45:03] Dedicated match PATCH success: 200 {"ok":true,"id":62} +[05/18/2026 19:45:04] force = 70 * 0.564606 = 39.52242 +[05/18/2026 19:45:04] launching puck at (1.61, -0.95) with (-63.61, 37.46) force +[05/18/2026 19:45:08] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 19:45:08] launching puck at (0.03, 5.00) with (-2.07, -348.45) force +[05/18/2026 19:45:08] Blue goal scored, blue score is now 1 +[05/18/2026 19:45:12] force = 70 * 0.6169339 = 43.18537 +[05/18/2026 19:45:12] launching puck at (1.99, -0.72) with (-85.73, 31.25) force +[05/18/2026 19:45:16] force = 70 * 0.9003875 = 63.02713 +[05/18/2026 19:45:16] launching puck at (0.04, 3.99) with (-2.41, -251.70) force +[05/18/2026 19:45:16] Blue goal scored, blue score is now 2 +[05/18/2026 19:45:39] force = 70 * 0.7005025 = 49.03517 +[05/18/2026 19:45:39] launching puck at (-2.53, 0.07) with (124.25, -3.36) force +[05/18/2026 19:45:45] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 19:45:45] launching puck at (0.14, -5.00) with (-9.70, 348.32) force +[05/18/2026 19:45:45] Red goal scored, red score is now 1 +[05/18/2026 19:46:08] force = 70 * 0.5722371 = 40.05659 +[05/18/2026 19:46:08] launching puck at (1.83, -0.52) with (-73.48, 20.70) force +[05/18/2026 19:46:13] force = 70 * 0.9955804 = 69.69063 +[05/18/2026 19:46:13] launching puck at (0.10, 5.00) with (-7.22, -348.38) force +[05/18/2026 19:46:14] Blue goal scored, blue score is now 3 +[05/18/2026 19:46:14] Dedicated match PATCH success: 200 {"ok":true,"id":62} +[05/18/2026 19:46:15] Dedicated match winner PATCH success: 200 {"ok":true,"id":62,"winner_id":6,"economy":{"entry_fee_rc":76,"rc_prize":126,"participant_cc":100}} +[05/18/2026 19:46:28] Mirror server: client disconnected (connId=720398755) +[05/18/2026 19:46:28] Active player connections: 1 +[05/18/2026 19:46:29] Mirror server: client disconnected (connId=1441816763) +[05/18/2026 19:46:29] Active player connections: 0 +[05/18/2026 19:46:34] Server will be closed due to no players in, 60 +[05/18/2026 19:46:44] Server will be closed due to no players in, 50 +[05/18/2026 19:46:54] Server will be closed due to no players in, 40 +[05/18/2026 19:47:04] Server will be closed due to no players in, 30 +[05/18/2026 19:47:14] Server will be closed due to no players in, 20 +[05/18/2026 19:47:24] Server will be closed due to no players in, 10 +[05/18/2026 19:47:34] All players left, exiting +[05/18/2026 19:47:34] Dedicated match PATCH success: 200 {"ok":true,"id":62} diff --git a/games/soccar/soccar_Data/Logs/63.txt b/games/soccar/soccar_Data/Logs/63.txt new file mode 100644 index 0000000..cf74e87 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/63.txt @@ -0,0 +1,79 @@ +[05/19/2026 07:15:53] Starting server at port 26577 +[05/19/2026 07:15:53] Mirror server exception logging enabled +[05/19/2026 07:15:53] Failed to fetch red and blue names, isServer? +[05/19/2026 07:15:53] Starting auto close watchdog +[05/19/2026 07:15:53] Active player connections: 0 +[05/19/2026 07:15:56] Active player connections: 1 +[05/19/2026 07:15:56] Client 15 set team to Blue +[05/19/2026 07:15:57] Active player connections: 2 +[05/19/2026 07:15:57] Game started On Server +[05/19/2026 07:15:57] Client 16 set team to Red +[05/19/2026 07:15:57] Dedicated match PATCH success: 200 {"ok":true,"id":63} +[05/19/2026 07:15:57] Dedicated match PATCH success: 200 {"ok":true,"id":63} +[05/19/2026 07:16:01] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:16:01] launching puck at (1.17, -4.86) with (-81.71, 338.74) force +[05/19/2026 07:16:06] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:16:06] launching puck at (-1.92, 4.62) with (133.92, -321.69) force +[05/19/2026 07:16:12] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:16:12] launching puck at (-4.93, -0.85) with (343.43, 58.97) force +[05/19/2026 07:16:22] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:16:22] launching puck at (-4.94, 0.77) with (344.34, -53.41) force +[05/19/2026 07:16:27] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:16:27] launching puck at (-0.98, 4.90) with (68.28, -341.70) force +[05/19/2026 07:16:28] Client 15 sent emoji emote 2 +[05/19/2026 07:16:31] Client 16 sent emoji emote 2 +[05/19/2026 07:16:34] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:16:34] launching puck at (-2.03, 4.57) with (141.40, -318.48) force +[05/19/2026 07:16:35] Blue goal scored, blue score is now 1 +[05/19/2026 07:16:38] Client 15 sent emoji emote 5 +[05/19/2026 07:16:39] Client 16 sent text emote WOW +[05/19/2026 07:16:41] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:16:41] launching puck at (0.93, -4.91) with (-64.59, 342.41) force +[05/19/2026 07:16:46] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:16:46] launching puck at (-2.41, 4.38) with (168.18, -305.18) force +[05/19/2026 07:16:50] Client 16 sent emoji emote 1 +[05/19/2026 07:16:52] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:16:52] launching puck at (-2.51, 4.33) with (174.71, -301.49) force +[05/19/2026 07:16:54] Client 15 sent text emote What a save! +[05/19/2026 07:16:57] Client 16 sent text emote Nice shot! +[05/19/2026 07:16:58] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:16:58] launching puck at (-1.87, 4.64) with (130.43, -323.12) force +[05/19/2026 07:16:58] Blue goal scored, blue score is now 2 +[05/19/2026 07:17:01] Client 16 sent emoji emote 1 +[05/19/2026 07:17:01] Client 15 sent emoji emote 5 +[05/19/2026 07:17:04] force = 70 * 0.7249615 = 50.74731 +[05/19/2026 07:17:04] launching puck at (0.65, -2.59) with (-32.92, 131.64) force +[05/19/2026 07:17:05] Client 15 sent text emote Thanks! +[05/19/2026 07:17:09] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:17:09] launching puck at (-3.98, 3.02) with (277.67, -210.52) force +[05/19/2026 07:17:13] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:17:13] launching puck at (-2.10, -4.54) with (146.04, 316.37) force +[05/19/2026 07:17:19] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:17:19] launching puck at (-3.49, 3.58) with (243.36, -249.39) force +[05/19/2026 07:17:24] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:17:24] launching puck at (-4.90, 1.00) with (341.40, -69.75) force +[05/19/2026 07:17:31] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:17:31] launching puck at (-0.81, 4.93) with (56.19, -343.89) force +[05/19/2026 07:17:36] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:17:36] launching puck at (-3.31, -3.75) with (230.70, 261.15) force +[05/19/2026 07:17:43] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:17:43] launching puck at (4.43, 2.32) with (-308.84, -161.37) force +[05/19/2026 07:17:44] Blue goal scored, blue score is now 3 +[05/19/2026 07:17:45] Dedicated match PATCH success: 200 {"ok":true,"id":63} +[05/19/2026 07:17:46] Client 16 sent emoji emote 1 +[05/19/2026 07:17:48] Dedicated match winner PATCH success: 200 {"ok":true,"id":63,"winner_id":7,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/19/2026 07:17:51] Rematch requested +[05/19/2026 07:18:02] Rematch was confirmed, closing in 5 secs. new room : +[05/19/2026 07:18:02] {"ok":true,"entry_fee":105,"rc_prize":174,"for_red":{"Players":[{"Name":"warlock3","LastSeen":1779175082495,"l10_wins":3,"l10_losses":5,"UserId":6,"rc":0.0},{"Name":"King LuLu","LastSeen":1779175082495,"l10_wins":7,"l10_losses":2,"UserId":7,"rc":0.0}],"GameName":"soccar","Port":26055,"InitTime":1779175082495,"instance_started":true,"match_id":64,"entry_fee":105,"rc_prize":174,"your_team":"red"},"for_blue":{"Players":[{"Name":"warlock3","LastSeen":1779175082495,"l10_wins":3,"l10_losses":5,"UserId":6,"rc":0.0},{"Name":"King LuLu","LastSeen":1779175082495,"l10_wins":7,"l10_losses":2,"UserId":7,"rc":0.0}],"GameName":"soccar","Port":26055,"InitTime":1779175082495,"instance_started":true,"match_id":64,"entry_fee":105,"rc_prize":174,"your_team":"blue"},"your_team":""} +[05/19/2026 07:18:02] Mirror server: client disconnected (connId=720401324) +[05/19/2026 07:18:02] Active player connections: 1 +[05/19/2026 07:18:02] Mirror server: client disconnected (connId=-1479578393) +[05/19/2026 07:18:02] Active player connections: 0 +[05/19/2026 07:18:07] Server will be closed due to no players in, 60 +[05/19/2026 07:18:17] Server will be closed due to no players in, 50 +[05/19/2026 07:18:27] Server will be closed due to no players in, 40 +[05/19/2026 07:18:37] Server will be closed due to no players in, 30 +[05/19/2026 07:18:47] Server will be closed due to no players in, 20 +[05/19/2026 07:18:57] Server will be closed due to no players in, 10 +[05/19/2026 07:19:07] All players left, exiting +[05/19/2026 07:19:08] Dedicated match PATCH success: 200 {"ok":true,"id":63} diff --git a/games/soccar/soccar_Data/Logs/64.txt b/games/soccar/soccar_Data/Logs/64.txt new file mode 100644 index 0000000..6b64c88 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/64.txt @@ -0,0 +1,117 @@ +[05/19/2026 07:18:04] Starting server at port 26055 +[05/19/2026 07:18:04] Mirror server exception logging enabled +[05/19/2026 07:18:04] Failed to fetch red and blue names, isServer? +[05/19/2026 07:18:04] Starting auto close watchdog +[05/19/2026 07:18:04] Active player connections: 0 +[05/19/2026 07:18:07] Active player connections: 1 +[05/19/2026 07:18:07] Active player connections: 2 +[05/19/2026 07:18:07] Game started On Server +[05/19/2026 07:18:07] Client 15 set team to Red +[05/19/2026 07:18:07] Client 16 set team to Blue +[05/19/2026 07:18:07] Dedicated match PATCH success: 200 {"ok":true,"id":64} +[05/19/2026 07:18:08] Dedicated match PATCH success: 200 {"ok":true,"id":64} +[05/19/2026 07:18:09] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:18:09] launching puck at (0.51, -4.97) with (-35.68, 346.62) force +[05/19/2026 07:18:17] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:18:17] launching puck at (-0.12, 5.00) with (8.14, -348.36) force +[05/19/2026 07:18:22] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:18:22] launching puck at (-3.87, -3.17) with (269.69, 220.65) force +[05/19/2026 07:18:27] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:18:27] launching puck at (-4.13, 2.82) with (287.52, -196.86) force +[05/19/2026 07:18:31] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:18:31] launching puck at (0.13, -5.00) with (-9.04, 348.34) force +[05/19/2026 07:18:38] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:18:38] launching puck at (1.03, -4.89) with (-71.95, 340.94) force +[05/19/2026 07:18:44] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:18:44] launching puck at (2.07, 4.55) with (-144.44, -317.11) force +[05/19/2026 07:18:49] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:18:49] launching puck at (1.23, 4.85) with (-86.06, -337.66) force +[05/19/2026 07:18:53] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:18:53] launching puck at (4.89, 1.02) with (-341.09, -71.27) force +[05/19/2026 07:19:03] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:19:03] launching puck at (1.21, -4.85) with (-84.67, 338.01) force +[05/19/2026 07:19:10] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:19:10] launching puck at (0.64, -4.96) with (-44.74, 345.57) force +[05/19/2026 07:19:15] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:19:15] launching puck at (2.27, 4.45) with (-158.43, -310.35) force +[05/19/2026 07:19:16] Blue goal scored, blue score is now 1 +[05/19/2026 07:19:18] Client 15 sent emoji emote 1 +[05/19/2026 07:19:19] Client 16 sent emoji emote 5 +[05/19/2026 07:19:21] Client 15 sent text emote WOW +[05/19/2026 07:19:23] force = 70 * 0.7454365 = 52.18055 +[05/19/2026 07:19:23] launching puck at (0.74, -2.70) with (-38.51, 140.76) force +[05/19/2026 07:19:28] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:19:28] launching puck at (-3.75, 3.31) with (261.26, -230.57) force +[05/19/2026 07:19:32] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:19:32] launching puck at (-1.81, -4.66) with (125.80, 324.95) force +[05/19/2026 07:19:37] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:19:37] launching puck at (-3.74, 3.32) with (260.80, -231.10) force +[05/19/2026 07:19:42] force = 70 * 0.9885368 = 69.19757 +[05/19/2026 07:19:42] launching puck at (-4.65, -1.60) with (322.01, 110.97) force +[05/19/2026 07:19:48] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:19:48] launching puck at (-1.85, 4.64) with (129.13, -323.64) force +[05/19/2026 07:19:51] Client 15 sent text emote Oops +[05/19/2026 07:19:59] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:19:59] launching puck at (1.00, 4.90) with (-69.59, -341.43) force +[05/19/2026 07:20:04] Client 16 sent text emote well played +[05/19/2026 07:20:06] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:20:06] launching puck at (4.78, -1.48) with (-332.90, 102.93) force +[05/19/2026 07:20:07] Client 15 sent text emote Thanks! +[05/19/2026 07:20:13] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:20:13] launching puck at (-3.26, -3.79) with (227.31, 264.10) force +[05/19/2026 07:20:18] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:20:18] launching puck at (-0.02, 5.00) with (1.49, -348.45) force +[05/19/2026 07:20:25] force = 70 * 0.7538485 = 52.76939 +[05/19/2026 07:20:25] launching puck at (0.00, 2.85) with (-0.25, -150.35) force +[05/19/2026 07:20:31] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:20:31] launching puck at (3.75, -3.31) with (-261.11, 230.75) force +[05/19/2026 07:20:35] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:20:35] launching puck at (2.91, -4.07) with (-202.48, 283.59) force +[05/19/2026 07:20:40] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:20:40] launching puck at (4.97, 0.53) with (-346.52, -36.67) force +[05/19/2026 07:20:44] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:20:44] launching puck at (2.99, -4.01) with (-208.42, 279.25) force +[05/19/2026 07:20:51] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:20:51] launching puck at (2.28, 4.45) with (-159.24, -309.94) force +[05/19/2026 07:20:55] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:20:55] launching puck at (-3.42, 3.64) with (238.64, -253.91) force +[05/19/2026 07:21:02] force = 70 * 0.7227069 = 50.58949 +[05/19/2026 07:21:02] launching puck at (2.58, 0.64) with (-130.68, -32.27) force +[05/19/2026 07:21:06] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:21:06] launching puck at (1.65, -4.72) with (-114.75, 329.02) force +[05/19/2026 07:21:10] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:21:10] launching puck at (1.92, 4.62) with (-133.93, -321.69) force +[05/19/2026 07:21:17] force = 70 * 0.9133197 = 63.93238 +[05/19/2026 07:21:17] launching puck at (-3.70, 1.81) with (236.61, -115.75) force +[05/19/2026 07:21:20] Client 15 sent emoji emote 1 +[05/19/2026 07:21:24] Client 15 sent text emote What a save! +[05/19/2026 07:21:27] Client 15 sent text emote Nice shot! +[05/19/2026 07:21:28] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:21:28] launching puck at (-3.68, 3.38) with (256.60, -235.74) force +[05/19/2026 07:21:28] Blue goal scored, blue score is now 2 +[05/19/2026 07:21:30] Client 16 sent emoji emote 5 +[05/19/2026 07:21:33] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:21:33] launching puck at (0.67, -4.95) with (-46.91, 345.28) force +[05/19/2026 07:21:33] Client 16 sent text emote Thanks! +[05/19/2026 07:21:41] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:21:41] launching puck at (-0.15, 5.00) with (10.22, -348.30) force +[05/19/2026 07:21:42] Blue goal scored, blue score is now 3 +[05/19/2026 07:21:42] Client 15 sent emoji emote 1 +[05/19/2026 07:21:43] Dedicated match PATCH success: 200 {"ok":true,"id":64} +[05/19/2026 07:21:44] Client 15 sent emoji emote 1 +[05/19/2026 07:21:45] Dedicated match winner PATCH success: 200 {"ok":true,"id":64,"winner_id":7,"economy":{"entry_fee_rc":105,"rc_prize":174,"participant_cc":100}} +[05/19/2026 07:21:49] Rematch requested +[05/19/2026 07:21:53] Rematch was confirmed, closing in 5 secs. new room : +[05/19/2026 07:21:53] {"ok":true,"entry_fee":5,"rc_prize":8,"for_red":{"Players":[{"Name":"warlock3","LastSeen":1779175313598,"l10_wins":3,"l10_losses":5,"UserId":6,"rc":0.0},{"Name":"King LuLu","LastSeen":1779175313598,"l10_wins":7,"l10_losses":2,"UserId":7,"rc":0.0}],"GameName":"soccar","Port":26759,"InitTime":1779175313598,"instance_started":true,"match_id":65,"entry_fee":5,"rc_prize":8,"your_team":"red"},"for_blue":{"Players":[{"Name":"warlock3","LastSeen":1779175313598,"l10_wins":3,"l10_losses":5,"UserId":6,"rc":0.0},{"Name":"King LuLu","LastSeen":1779175313598,"l10_wins":7,"l10_losses":2,"UserId":7,"rc":0.0}],"GameName":"soccar","Port":26759,"InitTime":1779175313598,"instance_started":true,"match_id":65,"entry_fee":5,"rc_prize":8,"your_team":"blue"},"your_team":""} +[05/19/2026 07:21:53] Mirror server: client disconnected (connId=720399559) +[05/19/2026 07:21:53] Active player connections: 1 +[05/19/2026 07:21:53] Mirror server: client disconnected (connId=-1479578212) +[05/19/2026 07:21:53] Active player connections: 0 +[05/19/2026 07:21:58] Server will be closed due to no players in, 60 +[05/19/2026 07:22:08] Server will be closed due to no players in, 50 +[05/19/2026 07:22:18] Server will be closed due to no players in, 40 +[05/19/2026 07:22:28] Server will be closed due to no players in, 30 +[05/19/2026 07:22:38] Server will be closed due to no players in, 20 +[05/19/2026 07:22:48] Server will be closed due to no players in, 10 +[05/19/2026 07:22:58] All players left, exiting +[05/19/2026 07:22:59] Dedicated match PATCH success: 200 {"ok":true,"id":64} diff --git a/games/soccar/soccar_Data/Logs/65.txt b/games/soccar/soccar_Data/Logs/65.txt new file mode 100644 index 0000000..33220ea --- /dev/null +++ b/games/soccar/soccar_Data/Logs/65.txt @@ -0,0 +1,104 @@ +[05/19/2026 07:21:55] Starting server at port 26759 +[05/19/2026 07:21:55] Mirror server exception logging enabled +[05/19/2026 07:21:55] Failed to fetch red and blue names, isServer? +[05/19/2026 07:21:55] Starting auto close watchdog +[05/19/2026 07:21:55] Active player connections: 0 +[05/19/2026 07:21:58] Active player connections: 1 +[05/19/2026 07:21:58] Active player connections: 2 +[05/19/2026 07:21:58] Game started On Server +[05/19/2026 07:21:58] Client 16 set team to Red +[05/19/2026 07:21:58] Client 15 set team to Blue +[05/19/2026 07:21:58] Dedicated match PATCH success: 200 {"ok":true,"id":65} +[05/19/2026 07:21:58] Dedicated match PATCH success: 200 {"ok":true,"id":65} +[05/19/2026 07:22:00] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:22:00] launching puck at (0.51, -4.97) with (-35.24, 346.67) force +[05/19/2026 07:22:08] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:22:08] launching puck at (-0.11, 5.00) with (7.77, -348.37) force +[05/19/2026 07:22:23] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:22:23] launching puck at (-0.02, -5.00) with (1.54, 348.45) force +[05/19/2026 07:22:30] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:22:30] launching puck at (-4.76, -1.53) with (331.84, 106.30) force +[05/19/2026 07:22:35] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:22:35] launching puck at (0.34, -4.99) with (-23.49, 347.66) force +[05/19/2026 07:22:35] Red goal scored, red score is now 1 +[05/19/2026 07:22:38] Client 16 sent emoji emote 3 +[05/19/2026 07:22:45] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:22:45] launching puck at (-0.06, 5.00) with (4.25, -348.43) force +[05/19/2026 07:23:02] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:23:02] launching puck at (-3.26, -3.79) with (227.25, 264.15) force +[05/19/2026 07:23:09] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:23:09] launching puck at (-3.85, 3.18) with (268.64, -221.93) force +[05/19/2026 07:23:15] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:23:15] launching puck at (3.69, 3.38) with (-256.94, -235.37) force +[05/19/2026 07:23:32] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:23:32] launching puck at (1.81, 4.66) with (-126.34, -324.74) force +[05/19/2026 07:23:33] Blue goal scored, blue score is now 1 +[05/19/2026 07:23:36] Client 15 sent emoji emote 5 +[05/19/2026 07:23:41] force = 70 * 0.6034476 = 42.24133 +[05/19/2026 07:23:41] launching puck at (0.13, -2.05) with (-5.56, 86.47) force +[05/19/2026 07:23:45] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:23:45] launching puck at (0.15, 5.00) with (-10.72, -348.29) force +[05/19/2026 07:23:50] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:23:50] launching puck at (0.49, 4.98) with (-34.31, -346.76) force +[05/19/2026 07:23:57] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:23:57] launching puck at (2.95, 4.04) with (-205.64, -281.30) force +[05/19/2026 07:24:01] force = 70 * 0.9955803 = 69.69062 +[05/19/2026 07:24:01] launching puck at (4.57, -2.02) with (-318.74, 140.81) force +[05/19/2026 07:24:06] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:24:06] launching puck at (-3.60, 3.47) with (250.98, -241.72) force +[05/19/2026 07:24:10] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:24:10] launching puck at (-1.86, -4.64) with (129.31, 323.57) force +[05/19/2026 07:24:16] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:24:16] launching puck at (-0.50, -4.97) with (34.89, 346.70) force +[05/19/2026 07:24:21] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:24:21] launching puck at (-1.46, -4.78) with (101.50, 333.34) force +[05/19/2026 07:24:29] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:24:29] launching puck at (-4.97, 0.52) with (346.53, -36.59) force +[05/19/2026 07:24:35] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:24:35] launching puck at (-4.65, -1.83) with (324.18, 127.77) force +[05/19/2026 07:24:35] Red goal scored, red score is now 2 +[05/19/2026 07:24:37] Client 16 sent emoji emote 3 +[05/19/2026 07:24:37] Client 15 sent text emote Nice shot! +[05/19/2026 07:24:40] Client 16 sent text emote Thanks! +[05/19/2026 07:24:43] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:24:43] launching puck at (-0.09, 5.00) with (6.24, -348.40) force +[05/19/2026 07:24:50] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:24:50] launching puck at (2.79, 4.15) with (-194.41, -289.18) force +[05/19/2026 07:24:56] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:24:56] launching puck at (-0.09, 5.00) with (6.62, -348.39) force +[05/19/2026 07:25:00] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:25:00] launching puck at (-4.20, -2.72) with (292.47, 189.42) force +[05/19/2026 07:25:04] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:25:04] launching puck at (-3.97, 3.04) with (276.57, -211.96) force +[05/19/2026 07:25:09] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:25:09] launching puck at (1.07, 4.88) with (-74.76, -340.34) force +[05/19/2026 07:25:11] Client 16 sent emoji emote 1 +[05/19/2026 07:25:15] force = 70 * 0.8293113 = 58.05179 +[05/19/2026 07:25:15] launching puck at (3.10, 1.34) with (-180.00, -77.70) force +[05/19/2026 07:25:15] Blue goal scored, blue score is now 2 +[05/19/2026 07:25:20] force = 70 * 0.7807645 = 54.65351 +[05/19/2026 07:25:20] launching puck at (0.89, -2.89) with (-48.68, 157.98) force +[05/19/2026 07:25:27] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:25:27] launching puck at (-4.13, 2.82) with (287.76, -196.50) force +[05/19/2026 07:25:31] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:25:31] launching puck at (3.22, -3.83) with (-224.20, 266.75) force +[05/19/2026 07:25:35] Client 16 sent emoji emote 2 +[05/19/2026 07:25:38] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:25:38] launching puck at (0.04, 5.00) with (-2.82, -348.44) force +[05/19/2026 07:25:39] Blue goal scored, blue score is now 3 +[05/19/2026 07:25:40] Dedicated match PATCH success: 200 {"ok":true,"id":65} +[05/19/2026 07:25:41] Client 16 sent emoji emote 1 +[05/19/2026 07:25:42] Dedicated match winner PATCH success: 200 {"ok":true,"id":65,"winner_id":7,"economy":{"entry_fee_rc":5,"rc_prize":8,"participant_cc":100}} +[05/19/2026 07:25:42] Client 15 sent text emote GG +[05/19/2026 07:25:56] Mirror server: client disconnected (connId=720399499) +[05/19/2026 07:25:56] Active player connections: 1 +[05/19/2026 07:26:10] Mirror server: client disconnected (connId=-1479578075) +[05/19/2026 07:26:10] Active player connections: 0 +[05/19/2026 07:26:15] Server will be closed due to no players in, 60 +[05/19/2026 07:26:25] Server will be closed due to no players in, 50 +[05/19/2026 07:26:35] Server will be closed due to no players in, 40 +[05/19/2026 07:26:45] Server will be closed due to no players in, 30 +[05/19/2026 07:26:55] Server will be closed due to no players in, 20 +[05/19/2026 07:27:05] Server will be closed due to no players in, 10 +[05/19/2026 07:27:15] All players left, exiting +[05/19/2026 07:27:15] Dedicated match PATCH success: 200 {"ok":true,"id":65} diff --git a/games/soccar/soccar_Data/Logs/66.txt b/games/soccar/soccar_Data/Logs/66.txt new file mode 100644 index 0000000..2220d20 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/66.txt @@ -0,0 +1,129 @@ +[05/19/2026 07:30:43] Starting server at port 26553 +[05/19/2026 07:30:43] Mirror server exception logging enabled +[05/19/2026 07:30:43] Failed to fetch red and blue names, isServer? +[05/19/2026 07:30:43] Starting auto close watchdog +[05/19/2026 07:30:43] Active player connections: 0 +[05/19/2026 07:30:46] Active player connections: 1 +[05/19/2026 07:30:46] Client 15 set team to Blue +[05/19/2026 07:30:46] Dedicated match PATCH success: 200 {"ok":true,"id":66} +[05/19/2026 07:30:49] Active player connections: 2 +[05/19/2026 07:30:49] Game started On Server +[05/19/2026 07:30:49] Client 16 set team to Red +[05/19/2026 07:30:49] Dedicated match PATCH success: 200 {"ok":true,"id":66} +[05/19/2026 07:30:53] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:30:53] launching puck at (0.16, -5.00) with (-11.36, 348.27) force +[05/19/2026 07:30:59] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:30:59] launching puck at (-4.28, 2.58) with (298.29, -180.13) force +[05/19/2026 07:31:03] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:31:03] launching puck at (0.67, -4.95) with (-46.73, 345.31) force +[05/19/2026 07:31:09] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:31:09] launching puck at (2.33, 4.42) with (-162.52, -308.23) force +[05/19/2026 07:31:16] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:31:16] launching puck at (0.72, -4.95) with (-50.48, 344.78) force +[05/19/2026 07:31:20] Client 16 sent emoji emote 2 +[05/19/2026 07:31:21] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:31:21] launching puck at (4.99, 0.34) with (-347.66, -23.56) force +[05/19/2026 07:31:26] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:31:26] launching puck at (1.25, -4.84) with (-86.86, 337.45) force +[05/19/2026 07:31:34] force = 70 * 0.7402754 = 51.81927 +[05/19/2026 07:31:34] launching puck at (-2.35, -1.45) with (121.98, 75.19) force +[05/19/2026 07:31:38] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:31:38] launching puck at (2.57, -4.29) with (-179.21, 298.84) force +[05/19/2026 07:31:38] Red goal scored, red score is now 1 +[05/19/2026 07:31:40] Client 16 sent emoji emote 3 +[05/19/2026 07:31:44] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:31:44] launching puck at (-0.02, 5.00) with (1.23, -348.45) force +[05/19/2026 07:31:48] Client 15 sent text emote Nice shot! +[05/19/2026 07:31:50] Client 15 sent text emote well played +[05/19/2026 07:31:50] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:31:50] launching puck at (-1.79, -4.67) with (124.76, 325.35) force +[05/19/2026 07:31:57] Client 16 sent text emote Thanks! +[05/19/2026 07:31:57] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:31:57] launching puck at (-3.59, 3.48) with (250.14, -242.59) force +[05/19/2026 07:32:02] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:32:02] launching puck at (3.91, -3.12) with (-272.46, 217.22) force +[05/19/2026 07:32:10] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:32:10] launching puck at (-0.92, -4.91) with (64.34, 342.46) force +[05/19/2026 07:32:19] force = 70 * 0.8516665 = 59.61665 +[05/19/2026 07:32:19] launching puck at (-3.55, -0.20) with (211.74, 11.85) force +[05/19/2026 07:32:23] Client 16 sent emoji emote 1 +[05/19/2026 07:32:25] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:32:25] launching puck at (-1.27, 4.84) with (88.57, -337.01) force +[05/19/2026 07:32:26] Blue goal scored, blue score is now 1 +[05/19/2026 07:32:28] Client 16 sent text emote Nice shot! +[05/19/2026 07:32:29] Client 15 sent emoji emote 5 +[05/19/2026 07:32:31] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:32:31] launching puck at (0.34, -4.99) with (-23.38, 347.67) force +[05/19/2026 07:32:32] Client 15 sent text emote Thanks! +[05/19/2026 07:32:36] force = 70 * 0.8950192 = 62.65134 +[05/19/2026 07:32:36] launching puck at (-3.49, 1.84) with (218.57, -115.06) force +[05/19/2026 07:32:40] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:32:40] launching puck at (4.98, -0.41) with (-347.30, 28.27) force +[05/19/2026 07:32:50] force = 70 * 0.9817734 = 68.72414 +[05/19/2026 07:32:50] launching puck at (4.49, 1.83) with (-308.60, -125.45) force +[05/19/2026 07:32:55] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:32:55] launching puck at (-4.91, 0.96) with (341.96, -66.95) force +[05/19/2026 07:33:00] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:33:00] launching puck at (-2.59, 4.27) with (180.79, -297.88) force +[05/19/2026 07:33:05] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:33:05] launching puck at (-2.33, -4.42) with (162.25, 308.37) force +[05/19/2026 07:33:11] force = 70 * 0.7323373 = 51.26361 +[05/19/2026 07:33:11] launching puck at (-2.71, -0.14) with (139.12, 7.15) force +[05/19/2026 07:33:15] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:33:15] launching puck at (-0.31, -4.99) with (21.93, 347.76) force +[05/19/2026 07:33:19] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:33:19] launching puck at (3.84, 3.20) with (-267.93, -222.79) force +[05/19/2026 07:33:24] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:33:24] launching puck at (-1.79, -4.67) with (124.73, 325.36) force +[05/19/2026 07:33:24] Client 15 sent emoji emote 1 +[05/19/2026 07:33:35] force = 70 * 0.609317 = 42.65219 +[05/19/2026 07:33:35] launching puck at (1.18, -1.71) with (-50.12, 73.10) force +[05/19/2026 07:33:40] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:33:40] launching puck at (0.11, -5.00) with (-7.71, 348.37) force +[05/19/2026 07:33:45] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:33:45] launching puck at (5.00, 0.20) with (-348.18, -13.83) force +[05/19/2026 07:33:49] force = 70 * 0.9673051 = 67.71136 +[05/19/2026 07:33:49] launching puck at (-3.88, -2.63) with (262.66, 178.22) force +[05/19/2026 07:33:49] Red goal scored, red score is now 2 +[05/19/2026 07:33:51] Client 15 sent emoji emote 1 +[05/19/2026 07:33:51] Client 16 sent emoji emote 3 +[05/19/2026 07:33:55] Client 15 sent text emote Nice shot! +[05/19/2026 07:33:57] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:33:57] launching puck at (-0.01, 5.00) with (0.61, -348.45) force +[05/19/2026 07:34:03] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:34:03] launching puck at (-1.16, -4.86) with (80.57, 339.01) force +[05/19/2026 07:34:09] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:34:09] launching puck at (-2.49, 4.34) with (173.61, -302.12) force +[05/19/2026 07:34:16] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:34:16] launching puck at (-3.49, 3.58) with (243.44, -249.31) force +[05/19/2026 07:34:20] force = 70 * 0.8581356 = 60.06949 +[05/19/2026 07:34:20] launching puck at (-2.52, 2.58) with (151.55, -155.24) force +[05/19/2026 07:34:25] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:34:25] launching puck at (2.36, -4.41) with (-164.61, 307.12) force +[05/19/2026 07:34:34] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:34:34] launching puck at (-0.02, 5.00) with (1.35, -348.45) force +[05/19/2026 07:34:36] Client 16 sent emoji emote 2 +[05/19/2026 07:34:39] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:34:39] launching puck at (4.53, -2.12) with (-315.73, 147.43) force +[05/19/2026 07:34:49] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:34:49] launching puck at (0.83, -4.93) with (-58.18, 343.56) force +[05/19/2026 07:34:50] Red goal scored, red score is now 3 +[05/19/2026 07:34:51] Dedicated match PATCH success: 200 {"ok":true,"id":66} +[05/19/2026 07:34:52] Client 16 sent emoji emote 0 +[05/19/2026 07:34:53] Dedicated match winner PATCH success: 200 {"ok":true,"id":66,"winner_id":6,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/19/2026 07:34:53] Client 15 sent emoji emote 1 +[05/19/2026 07:34:57] Rematch requested +[05/19/2026 07:35:00] Rematch was confirmed, closing in 5 secs. new room : +[05/19/2026 07:35:00] {"ok":true,"entry_fee":88,"rc_prize":146,"for_red":{"Players":[{"Name":"warlock3","LastSeen":1779176100861,"l10_wins":4,"l10_losses":5,"UserId":6,"rc":0.0},{"Name":"King LuLu","LastSeen":1779176100861,"l10_wins":7,"l10_losses":2,"UserId":7,"rc":0.0}],"GameName":"soccar","Port":26213,"InitTime":1779176100861,"instance_started":true,"match_id":67,"entry_fee":88,"rc_prize":146,"your_team":"red"},"for_blue":{"Players":[{"Name":"warlock3","LastSeen":1779176100861,"l10_wins":4,"l10_losses":5,"UserId":6,"rc":0.0},{"Name":"King LuLu","LastSeen":1779176100861,"l10_wins":7,"l10_losses":2,"UserId":7,"rc":0.0}],"GameName":"soccar","Port":26213,"InitTime":1779176100861,"instance_started":true,"match_id":67,"entry_fee":88,"rc_prize":146,"your_team":"blue"},"your_team":""} +[05/19/2026 07:35:01] Mirror server: client disconnected (connId=720375368) +[05/19/2026 07:35:01] Active player connections: 1 +[05/19/2026 07:35:01] Mirror server: client disconnected (connId=-1479579639) +[05/19/2026 07:35:01] Active player connections: 0 +[05/19/2026 07:35:06] Server will be closed due to no players in, 60 +[05/19/2026 07:35:16] Server will be closed due to no players in, 50 +[05/19/2026 07:35:26] Server will be closed due to no players in, 40 +[05/19/2026 07:35:36] Server will be closed due to no players in, 30 +[05/19/2026 07:35:46] Server will be closed due to no players in, 20 +[05/19/2026 07:35:56] Server will be closed due to no players in, 10 +[05/19/2026 07:36:06] All players left, exiting +[05/19/2026 07:36:06] Dedicated match PATCH success: 200 {"ok":true,"id":66} diff --git a/games/soccar/soccar_Data/Logs/67.txt b/games/soccar/soccar_Data/Logs/67.txt new file mode 100644 index 0000000..6bb4abe --- /dev/null +++ b/games/soccar/soccar_Data/Logs/67.txt @@ -0,0 +1,63 @@ +[05/19/2026 07:35:02] Starting server at port 26213 +[05/19/2026 07:35:02] Mirror server exception logging enabled +[05/19/2026 07:35:02] Failed to fetch red and blue names, isServer? +[05/19/2026 07:35:02] Starting auto close watchdog +[05/19/2026 07:35:02] Active player connections: 0 +[05/19/2026 07:35:05] Active player connections: 2 +[05/19/2026 07:35:05] Game started On Server +[05/19/2026 07:35:05] Client 16 set team to Red +[05/19/2026 07:35:06] Client 15 set team to Blue +[05/19/2026 07:35:06] Dedicated match PATCH success: 200 {"ok":true,"id":67} +[05/19/2026 07:35:06] Dedicated match PATCH success: 200 {"ok":true,"id":67} +[05/19/2026 07:35:12] force = 70 * 0.771449 = 54.00143 +[05/19/2026 07:35:12] launching puck at (0.49, -2.92) with (-26.30, 157.81) force +[05/19/2026 07:35:17] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:35:17] launching puck at (-4.94, 0.76) with (344.45, -52.64) force +[05/19/2026 07:35:23] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:35:23] launching puck at (1.74, -4.69) with (-121.22, 326.69) force +[05/19/2026 07:35:30] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:35:30] launching puck at (-0.13, 5.00) with (9.22, -348.33) force +[05/19/2026 07:35:31] Blue goal scored, blue score is now 1 +[05/19/2026 07:35:32] Client 16 sent text emote WOW +[05/19/2026 07:35:33] Client 15 sent emoji emote 5 +[05/19/2026 07:35:34] Client 16 sent text emote WOW +[05/19/2026 07:35:36] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:35:36] launching puck at (4.37, -2.43) with (-304.73, 169.00) force +[05/19/2026 07:35:41] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:35:41] launching puck at (0.08, 5.00) with (-5.29, -348.41) force +[05/19/2026 07:35:50] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:35:50] launching puck at (0.81, -4.93) with (-56.18, 343.89) force +[05/19/2026 07:35:56] Client 16 sent emoji emote 1 +[05/19/2026 07:35:58] Client 15 sent text emote well played +[05/19/2026 07:36:04] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:36:04] launching puck at (1.16, 4.86) with (-80.89, -338.93) force +[05/19/2026 07:36:09] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:36:09] launching puck at (0.31, 4.99) with (-21.90, -347.76) force +[05/19/2026 07:36:12] Client 16 sent emoji emote 4 +[05/19/2026 07:36:13] Client 16 sent emoji emote 4 +[05/19/2026 07:36:14] force = 70 * 0.9312717 = 65.18902 +[05/19/2026 07:36:14] launching puck at (-2.05, 3.78) with (133.65, -246.57) force +[05/19/2026 07:36:14] Blue goal scored, blue score is now 2 +[05/19/2026 07:36:16] Client 16 sent text emote Nice shot! +[05/19/2026 07:36:21] Client 15 sent emoji emote 5 +[05/19/2026 07:36:22] Client 15 sent text emote Thanks! +[05/19/2026 07:36:24] force = 70 * 0.7154313 = 50.08019 +[05/19/2026 07:36:24] launching puck at (-0.07, -2.62) with (3.34, 131.10) force +[05/19/2026 07:36:30] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:36:30] launching puck at (-0.09, 5.00) with (5.93, -348.40) force +[05/19/2026 07:36:31] Blue goal scored, blue score is now 3 +[05/19/2026 07:36:31] Dedicated match PATCH success: 200 {"ok":true,"id":67} +[05/19/2026 07:36:33] Dedicated match winner PATCH success: 200 {"ok":true,"id":67,"winner_id":7,"economy":{"entry_fee_rc":88,"rc_prize":146,"participant_cc":100}} +[05/19/2026 07:36:34] Client 16 sent text emote Oops +[05/19/2026 07:36:48] Mirror server: client disconnected (connId=720376093) +[05/19/2026 07:36:48] Active player connections: 1 +[05/19/2026 07:37:02] Mirror server: client disconnected (connId=-1479579439) +[05/19/2026 07:37:02] Active player connections: 0 +[05/19/2026 07:37:07] Server will be closed due to no players in, 60 +[05/19/2026 07:37:17] Server will be closed due to no players in, 50 +[05/19/2026 07:37:27] Server will be closed due to no players in, 40 +[05/19/2026 07:37:37] Server will be closed due to no players in, 30 +[05/19/2026 07:37:47] Server will be closed due to no players in, 20 +[05/19/2026 07:37:57] Server will be closed due to no players in, 10 +[05/19/2026 07:38:07] All players left, exiting +[05/19/2026 07:38:07] Dedicated match PATCH success: 200 {"ok":true,"id":67} diff --git a/games/soccar/soccar_Data/Logs/68.txt b/games/soccar/soccar_Data/Logs/68.txt new file mode 100644 index 0000000..e3559ef --- /dev/null +++ b/games/soccar/soccar_Data/Logs/68.txt @@ -0,0 +1,90 @@ +[05/19/2026 07:40:52] Starting server at port 26609 +[05/19/2026 07:40:52] Mirror server exception logging enabled +[05/19/2026 07:40:52] Failed to fetch red and blue names, isServer? +[05/19/2026 07:40:52] Starting auto close watchdog +[05/19/2026 07:40:52] Active player connections: 0 +[05/19/2026 07:40:54] Active player connections: 1 +[05/19/2026 07:40:54] Client 15 set team to Blue +[05/19/2026 07:40:55] Dedicated match PATCH success: 200 {"ok":true,"id":68} +[05/19/2026 07:40:55] Active player connections: 2 +[05/19/2026 07:40:55] Game started On Server +[05/19/2026 07:40:56] Client 16 set team to Red +[05/19/2026 07:40:56] Dedicated match PATCH success: 200 {"ok":true,"id":68} +[05/19/2026 07:40:59] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:40:59] launching puck at (0.13, -5.00) with (-8.81, 348.34) force +[05/19/2026 07:41:04] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:41:04] launching puck at (-4.96, -0.66) with (345.38, 46.15) force +[05/19/2026 07:41:08] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:41:08] launching puck at (4.16, -2.78) with (-289.64, 193.73) force +[05/19/2026 07:41:18] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:41:18] launching puck at (3.23, 3.82) with (-224.90, -266.15) force +[05/19/2026 07:41:22] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:41:22] launching puck at (1.03, -4.89) with (-71.97, 340.94) force +[05/19/2026 07:41:29] force = 70 * 0.563797 = 39.46579 +[05/19/2026 07:41:29] launching puck at (1.37, -1.27) with (-53.88, 50.07) force +[05/19/2026 07:41:33] force = 70 * 0.8345972 = 58.42181 +[05/19/2026 07:41:33] launching puck at (-1.69, -2.97) with (98.91, 173.51) force +[05/19/2026 07:41:37] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:41:37] launching puck at (4.89, -1.04) with (-340.80, 72.62) force +[05/19/2026 07:41:41] Client 15 sent text emote Oops +[05/19/2026 07:41:46] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:41:46] launching puck at (-2.74, -4.18) with (191.20, 291.31) force +[05/19/2026 07:41:46] Red goal scored, red score is now 1 +[05/19/2026 07:41:48] Client 15 sent text emote Nice shot! +[05/19/2026 07:41:49] Client 16 sent emoji emote 5 +[05/19/2026 07:41:51] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:41:51] launching puck at (0.00, 5.00) with (-0.20, -348.45) force +[05/19/2026 07:41:52] Client 16 sent text emote Thanks! +[05/19/2026 07:41:58] Client 16 sent text emote well played +[05/19/2026 07:42:01] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:42:01] launching puck at (-2.48, 4.34) with (173.06, -302.44) force +[05/19/2026 07:42:03] Client 15 sent text emote well played +[05/19/2026 07:42:06] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:42:06] launching puck at (-2.73, 4.19) with (190.00, -292.10) force +[05/19/2026 07:42:08] Client 15 sent text emote What a save! +[05/19/2026 07:42:08] Client 16 sent text emote Thanks! +[05/19/2026 07:42:11] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:42:11] launching puck at (-4.95, -0.71) with (344.87, 49.81) force +[05/19/2026 07:42:14] Client 16 sent text emote Oops +[05/19/2026 07:42:15] force = 70 * 0.8654585 = 60.5821 +[05/19/2026 07:42:15] launching puck at (-0.23, 3.67) with (14.08, -222.16) force +[05/19/2026 07:42:16] Blue goal scored, blue score is now 1 +[05/19/2026 07:42:20] Client 15 sent emoji emote 3 +[05/19/2026 07:42:20] Client 16 sent text emote Nice shot! +[05/19/2026 07:42:21] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:42:21] launching puck at (0.00, -5.00) with (-0.10, 348.45) force +[05/19/2026 07:42:27] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:42:27] launching puck at (-2.16, -4.51) with (150.25, 314.40) force +[05/19/2026 07:42:32] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:42:32] launching puck at (-1.15, -4.87) with (80.04, 339.13) force +[05/19/2026 07:42:33] Red goal scored, red score is now 2 +[05/19/2026 07:42:35] Client 15 sent text emote Nice shot! +[05/19/2026 07:42:37] force = 70 * 0.9817798 = 68.72459 +[05/19/2026 07:42:37] launching puck at (0.09, 4.85) with (-6.24, -333.07) force +[05/19/2026 07:42:40] Client 16 sent text emote Thanks! +[05/19/2026 07:42:45] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:42:45] launching puck at (4.84, -1.26) with (-337.16, 87.98) force +[05/19/2026 07:42:49] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:42:49] launching puck at (-3.41, -3.65) with (237.95, 254.56) force +[05/19/2026 07:42:53] Client 15 sent emoji emote 1 +[05/19/2026 07:42:57] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:42:57] launching puck at (-0.13, -5.00) with (9.02, 348.34) force +[05/19/2026 07:42:57] Red goal scored, red score is now 3 +[05/19/2026 07:42:58] Dedicated match PATCH success: 200 {"ok":true,"id":68} +[05/19/2026 07:43:00] Dedicated match winner PATCH success: 200 {"ok":true,"id":68,"winner_id":7,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/19/2026 07:43:00] Client 15 sent text emote GG +[05/19/2026 07:43:04] Rematch requested +[05/19/2026 07:43:16] Rematch was confirmed, closing in 5 secs. new room : +[05/19/2026 07:43:16] {"ok":true,"entry_fee":42,"rc_prize":68,"for_red":{"Players":[{"Name":"King LuLu","LastSeen":1779176596005,"l10_wins":7,"l10_losses":2,"UserId":7,"rc":0.0},{"Name":"warlock3","LastSeen":1779176596005,"l10_wins":3,"l10_losses":6,"UserId":6,"rc":0.0}],"GameName":"soccar","Port":26875,"InitTime":1779176596005,"instance_started":true,"match_id":69,"entry_fee":42,"rc_prize":68,"your_team":"red"},"for_blue":{"Players":[{"Name":"King LuLu","LastSeen":1779176596005,"l10_wins":7,"l10_losses":2,"UserId":7,"rc":0.0},{"Name":"warlock3","LastSeen":1779176596005,"l10_wins":3,"l10_losses":6,"UserId":6,"rc":0.0}],"GameName":"soccar","Port":26875,"InitTime":1779176596005,"instance_started":true,"match_id":69,"entry_fee":42,"rc_prize":68,"your_team":"blue"},"your_team":""} +[05/19/2026 07:43:16] Mirror server: client disconnected (connId=720401591) +[05/19/2026 07:43:16] Active player connections: 1 +[05/19/2026 07:43:16] Mirror server: client disconnected (connId=-1479579171) +[05/19/2026 07:43:16] Active player connections: 0 +[05/19/2026 07:43:21] Server will be closed due to no players in, 60 +[05/19/2026 07:43:31] Server will be closed due to no players in, 50 +[05/19/2026 07:43:41] Server will be closed due to no players in, 40 +[05/19/2026 07:43:51] Server will be closed due to no players in, 30 +[05/19/2026 07:44:01] Server will be closed due to no players in, 20 +[05/19/2026 07:44:11] Server will be closed due to no players in, 10 +[05/19/2026 07:44:21] All players left, exiting +[05/19/2026 07:44:21] Dedicated match PATCH success: 200 {"ok":true,"id":68} diff --git a/games/soccar/soccar_Data/Logs/69.txt b/games/soccar/soccar_Data/Logs/69.txt new file mode 100644 index 0000000..23a4acf --- /dev/null +++ b/games/soccar/soccar_Data/Logs/69.txt @@ -0,0 +1,116 @@ +[05/19/2026 07:43:17] Starting server at port 26875 +[05/19/2026 07:43:17] Mirror server exception logging enabled +[05/19/2026 07:43:17] Failed to fetch red and blue names, isServer? +[05/19/2026 07:43:17] Starting auto close watchdog +[05/19/2026 07:43:17] Active player connections: 0 +[05/19/2026 07:43:20] Active player connections: 1 +[05/19/2026 07:43:20] Active player connections: 2 +[05/19/2026 07:43:20] Game started On Server +[05/19/2026 07:43:21] Client 16 set team to Blue +[05/19/2026 07:43:21] Client 15 set team to Red +[05/19/2026 07:43:21] Dedicated match PATCH success: 200 {"ok":true,"id":69} +[05/19/2026 07:43:21] Dedicated match PATCH success: 200 {"ok":true,"id":69} +[05/19/2026 07:43:23] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:43:23] launching puck at (0.12, -5.00) with (-8.47, 348.35) force +[05/19/2026 07:43:27] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:43:27] launching puck at (-4.52, 2.14) with (314.79, -149.43) force +[05/19/2026 07:43:33] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:43:33] launching puck at (1.97, -4.59) with (-137.42, 320.21) force +[05/19/2026 07:43:38] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:43:38] launching puck at (4.63, 1.90) with (-322.44, -132.11) force +[05/19/2026 07:43:43] Client 16 sent text emote Oops +[05/19/2026 07:43:44] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:43:44] launching puck at (4.82, 1.34) with (-335.74, -93.27) force +[05/19/2026 07:43:47] Client 16 sent emoji emote 0 +[05/19/2026 07:43:48] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:43:48] launching puck at (1.34, 4.82) with (-93.24, -335.75) force +[05/19/2026 07:43:51] Client 15 sent emoji emote 0 +[05/19/2026 07:43:58] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:43:58] launching puck at (3.48, -3.59) with (-242.66, 250.08) force +[05/19/2026 07:43:59] Red goal scored, red score is now 1 +[05/19/2026 07:44:01] Client 16 sent emoji emote 2 +[05/19/2026 07:44:01] Client 15 sent emoji emote 5 +[05/19/2026 07:44:03] Client 16 sent text emote Nice shot! +[05/19/2026 07:44:06] force = 70 * 0.9248965 = 64.74275 +[05/19/2026 07:44:06] launching puck at (-0.72, 4.18) with (46.31, -270.36) force +[05/19/2026 07:44:10] Client 15 sent text emote Thanks! +[05/19/2026 07:44:12] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:44:12] launching puck at (2.62, -4.26) with (-182.90, 296.60) force +[05/19/2026 07:44:17] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:44:17] launching puck at (4.84, -1.26) with (-337.25, 87.67) force +[05/19/2026 07:44:25] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:44:25] launching puck at (-2.05, -4.56) with (142.92, 317.79) force +[05/19/2026 07:44:29] Client 15 sent text emote WOW +[05/19/2026 07:44:30] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:44:30] launching puck at (-0.39, -4.98) with (27.41, 347.37) force +[05/19/2026 07:44:32] Client 16 sent emoji emote 1 +[05/19/2026 07:44:34] force = 70 * 0.6702222 = 46.91555 +[05/19/2026 07:44:34] launching puck at (2.33, -0.43) with (-109.51, 20.10) force +[05/19/2026 07:44:34] Red goal scored, red score is now 2 +[05/19/2026 07:44:37] Client 16 sent text emote Nice shot! +[05/19/2026 07:44:39] Client 15 sent text emote Thanks! +[05/19/2026 07:44:40] Client 15 sent emoji emote 5 +[05/19/2026 07:44:42] force = 70 * 0.5592316 = 39.14621 +[05/19/2026 07:44:42] launching puck at (0.17, -1.83) with (-6.46, 71.77) force +[05/19/2026 07:44:50] force = 70 * 0.8903949 = 62.32764 +[05/19/2026 07:44:50] launching puck at (0.03, -3.90) with (-1.92, 243.01) force +[05/19/2026 07:44:54] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:44:54] launching puck at (-2.17, 4.51) with (151.14, -313.97) force +[05/19/2026 07:44:54] Client 15 sent text emote well played +[05/19/2026 07:44:58] Client 16 sent emoji emote 3 +[05/19/2026 07:45:00] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:45:00] launching puck at (-4.98, 0.48) with (346.88, -33.12) force +[05/19/2026 07:45:04] force = 70 * 0.9392487 = 65.74741 +[05/19/2026 07:45:04] launching puck at (-4.35, 0.54) with (286.13, -35.70) force +[05/19/2026 07:45:09] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:45:09] launching puck at (0.11, -5.00) with (-7.58, 348.37) force +[05/19/2026 07:45:13] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:45:13] launching puck at (-5.00, 0.14) with (348.33, -9.45) force +[05/19/2026 07:45:18] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:45:18] launching puck at (1.27, -4.84) with (-88.33, 337.07) force +[05/19/2026 07:45:22] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:45:22] launching puck at (0.15, 5.00) with (-10.19, -348.30) force +[05/19/2026 07:45:30] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:45:30] launching puck at (-3.53, -3.54) with (246.05, 246.74) force +[05/19/2026 07:45:34] Client 15 sent text emote Oops +[05/19/2026 07:45:35] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:45:35] launching puck at (-0.31, 4.99) with (21.67, -347.78) force +[05/19/2026 07:45:40] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:45:40] launching puck at (-4.83, -1.29) with (336.73, 89.62) force +[05/19/2026 07:45:44] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:45:44] launching puck at (-2.14, 4.52) with (149.27, -314.86) force +[05/19/2026 07:45:48] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:45:48] launching puck at (-4.81, -1.35) with (335.48, 94.21) force +[05/19/2026 07:45:58] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:45:58] launching puck at (0.30, -4.99) with (-20.90, 347.83) force +[05/19/2026 07:46:02] Client 16 sent emoji emote 2 +[05/19/2026 07:46:07] force = 70 * 0.8639742 = 60.4782 +[05/19/2026 07:46:07] launching puck at (2.52, -2.66) with (-152.22, 160.84) force +[05/19/2026 07:46:10] Client 15 sent text emote Oops +[05/19/2026 07:46:11] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:46:11] launching puck at (1.90, 4.62) with (-132.68, -322.21) force +[05/19/2026 07:46:14] Client 16 sent text emote Oops +[05/19/2026 07:46:18] force = 70 * 0.9734801 = 68.14361 +[05/19/2026 07:46:18] launching puck at (4.75, -0.22) with (-323.72, 15.06) force +[05/19/2026 07:46:24] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:46:24] launching puck at (0.87, -4.92) with (-60.43, 343.17) force +[05/19/2026 07:46:36] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:46:36] launching puck at (1.45, -4.79) with (-101.07, 333.47) force +[05/19/2026 07:46:37] Red goal scored, red score is now 3 +[05/19/2026 07:46:38] Dedicated match PATCH success: 200 {"ok":true,"id":69} +[05/19/2026 07:46:39] Client 16 sent text emote Nice shot! +[05/19/2026 07:46:40] Dedicated match winner PATCH success: 200 {"ok":true,"id":69,"winner_id":7,"economy":{"entry_fee_rc":42,"rc_prize":68,"participant_cc":100}} +[05/19/2026 07:46:41] Client 15 sent text emote GG +[05/19/2026 07:46:58] Mirror server transport error (connId=720373967, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting. +[05/19/2026 07:46:58] Mirror server: client disconnected (connId=720373967) +[05/19/2026 07:46:58] Active player connections: 1 +[05/19/2026 07:47:00] Mirror server: client disconnected (connId=-1479579133) +[05/19/2026 07:47:00] Active player connections: 0 +[05/19/2026 07:47:05] Server will be closed due to no players in, 60 +[05/19/2026 07:47:15] Server will be closed due to no players in, 50 +[05/19/2026 07:47:25] Server will be closed due to no players in, 40 +[05/19/2026 07:47:35] Server will be closed due to no players in, 30 +[05/19/2026 07:47:45] Server will be closed due to no players in, 20 +[05/19/2026 07:47:55] Server will be closed due to no players in, 10 +[05/19/2026 07:48:05] All players left, exiting +[05/19/2026 07:48:05] Dedicated match PATCH success: 200 {"ok":true,"id":69} diff --git a/games/soccar/soccar_Data/Logs/7.txt b/games/soccar/soccar_Data/Logs/7.txt new file mode 100644 index 0000000..ef011eb --- /dev/null +++ b/games/soccar/soccar_Data/Logs/7.txt @@ -0,0 +1,35 @@ +[05/16/2026 05:24:32] Starting server at port 26103 +[05/16/2026 05:24:32] Failed to fetch red and blue names, isServer? +[05/16/2026 05:24:32] Starting auto close watchdog +[05/16/2026 05:24:32] Active player connections: 0 +[05/16/2026 05:24:36] Active player connections: 1 +[05/16/2026 05:24:36] Client 15 set team to Blue +[05/16/2026 05:24:37] Dedicated match PATCH success: 200 {"ok":true,"id":7} +[05/16/2026 05:24:39] Active player connections: 2 +[05/16/2026 05:24:39] Game started On Server +[05/16/2026 05:24:39] Client 16 set team to Blue +[05/16/2026 05:24:55] Client 15 sent emoji emote 5 +[05/16/2026 05:24:56] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:24:56] launching puck at (0.04, 5.00) with (-2.64, -348.44) force +[05/16/2026 05:25:15] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:25:15] launching puck at (-0.49, 4.98) with (34.38, -346.75) force +[05/16/2026 05:25:37] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:25:37] launching puck at (-3.97, 3.04) with (276.81, -211.65) force +[05/16/2026 05:25:37] Blue goal scored, blue score is now 1 +[05/16/2026 05:25:57] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:25:57] launching puck at (-0.27, 4.99) with (18.59, -347.96) force +[05/16/2026 05:26:18] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:26:18] launching puck at (0.63, 4.96) with (-44.01, -345.66) force +[05/16/2026 05:26:19] Blue goal scored, blue score is now 2 +[05/16/2026 05:26:23] Active player connections: 1 +[05/16/2026 05:26:39] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:26:39] launching puck at (0.00, 5.00) with (0.11, -348.45) force +[05/16/2026 05:26:45] Active player connections: 0 +[05/16/2026 05:26:50] Server will be closed due to no players in, 60 +[05/16/2026 05:27:00] Server will be closed due to no players in, 50 +[05/16/2026 05:27:10] Server will be closed due to no players in, 40 +[05/16/2026 05:27:20] Server will be closed due to no players in, 30 +[05/16/2026 05:27:30] Server will be closed due to no players in, 20 +[05/16/2026 05:27:40] Server will be closed due to no players in, 10 +[05/16/2026 05:27:50] All players left, exiting +[05/16/2026 05:27:51] Dedicated match PATCH success: 200 {"ok":true,"id":7} diff --git a/games/soccar/soccar_Data/Logs/70.txt b/games/soccar/soccar_Data/Logs/70.txt new file mode 100644 index 0000000..d37c578 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/70.txt @@ -0,0 +1,141 @@ +[05/19/2026 07:47:33] Starting server at port 26343 +[05/19/2026 07:47:33] Mirror server exception logging enabled +[05/19/2026 07:47:33] Failed to fetch red and blue names, isServer? +[05/19/2026 07:47:33] Starting auto close watchdog +[05/19/2026 07:47:33] Active player connections: 0 +[05/19/2026 07:47:36] Active player connections: 1 +[05/19/2026 07:47:36] Client 15 set team to Blue +[05/19/2026 07:47:36] Dedicated match PATCH success: 200 {"ok":true,"id":70} +[05/19/2026 07:47:36] Active player connections: 2 +[05/19/2026 07:47:36] Game started On Server +[05/19/2026 07:47:37] Client 16 set team to Red +[05/19/2026 07:47:37] Dedicated match PATCH success: 200 {"ok":true,"id":70} +[05/19/2026 07:47:38] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:47:38] launching puck at (-0.12, -5.00) with (8.02, 348.36) force +[05/19/2026 07:47:45] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:47:45] launching puck at (4.99, 0.25) with (-348.03, -17.25) force +[05/19/2026 07:47:49] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:47:49] launching puck at (0.40, -4.98) with (-27.83, 347.34) force +[05/19/2026 07:47:57] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:47:57] launching puck at (-3.63, 3.44) with (253.02, -239.58) force +[05/19/2026 07:48:06] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:48:06] launching puck at (-0.91, 4.92) with (63.09, -342.69) force +[05/19/2026 07:48:14] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:48:14] launching puck at (-0.67, 4.95) with (46.97, -345.27) force +[05/19/2026 07:48:17] Client 15 sent text emote Oops +[05/19/2026 07:48:19] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:48:19] launching puck at (-4.89, -1.03) with (341.03, 71.56) force +[05/19/2026 07:48:29] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:48:29] launching puck at (-1.52, 4.76) with (106.19, -331.88) force +[05/19/2026 07:48:40] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:48:40] launching puck at (-2.54, -4.31) with (176.92, 300.20) force +[05/19/2026 07:48:46] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:48:46] launching puck at (3.51, 3.56) with (-244.73, -248.04) force +[05/19/2026 07:48:52] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:48:52] launching puck at (1.94, 4.61) with (-135.47, -321.04) force +[05/19/2026 07:48:55] Client 16 sent emoji emote 1 +[05/19/2026 07:48:57] force = 70 * 0.7494938 = 52.46457 +[05/19/2026 07:48:57] launching puck at (2.14, 1.84) with (-112.29, -96.48) force +[05/19/2026 07:48:57] Blue goal scored, blue score is now 1 +[05/19/2026 07:49:04] force = 70 * 0.5481905 = 38.37333 +[05/19/2026 07:49:04] launching puck at (-0.20, 1.77) with (7.72, -68.05) force +[05/19/2026 07:49:08] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:49:08] launching puck at (-0.13, 5.00) with (9.41, -348.33) force +[05/19/2026 07:49:12] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:49:12] launching puck at (4.98, -0.41) with (-347.26, 28.75) force +[05/19/2026 07:49:17] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:49:17] launching puck at (3.88, 3.16) with (-270.13, -220.11) force +[05/19/2026 07:49:22] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:49:22] launching puck at (2.94, -4.04) with (-205.11, 281.69) force +[05/19/2026 07:49:25] Client 16 sent emoji emote 2 +[05/19/2026 07:49:27] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:49:27] launching puck at (1.99, 4.59) with (-138.38, -319.80) force +[05/19/2026 07:49:32] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:49:32] launching puck at (-0.12, -5.00) with (8.33, 348.35) force +[05/19/2026 07:49:37] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:49:37] launching puck at (-4.01, 2.99) with (279.52, -208.06) force +[05/19/2026 07:49:42] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:49:42] launching puck at (-1.51, -4.77) with (105.50, 332.10) force +[05/19/2026 07:49:47] force = 70 * 0.6206149 = 43.44304 +[05/19/2026 07:49:47] launching puck at (-1.53, -1.48) with (66.60, 64.25) force +[05/19/2026 07:49:50] force = 70 * 0.9818482 = 68.72937 +[05/19/2026 07:49:50] launching puck at (-3.62, -3.23) with (248.69, 221.76) force +[05/19/2026 07:49:58] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:49:58] launching puck at (-2.26, 4.46) with (157.52, -310.82) force +[05/19/2026 07:50:06] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:50:06] launching puck at (0.76, 4.94) with (-53.03, -344.39) force +[05/19/2026 07:50:11] Client 15 sent text emote well played +[05/19/2026 07:50:13] Client 15 sent text emote well played +[05/19/2026 07:50:13] Client 16 sent emoji emote 3 +[05/19/2026 07:50:19] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:50:19] launching puck at (1.03, -4.89) with (-71.47, 341.04) force +[05/19/2026 07:50:23] Client 15 sent text emote WOW +[05/19/2026 07:50:25] Client 15 sent text emote well played +[05/19/2026 07:50:30] force = 70 * 0.642126 = 44.94882 +[05/19/2026 07:50:30] launching puck at (-0.68, 2.13) with (30.70, -95.54) force +[05/19/2026 07:50:37] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:50:37] launching puck at (-5.00, 0.00) with (348.45, -0.33) force +[05/19/2026 07:50:50] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:50:50] launching puck at (-4.50, -2.18) with (313.55, 152.01) force +[05/19/2026 07:50:55] Client 16 sent emoji emote 1 +[05/19/2026 07:50:56] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:50:56] launching puck at (-0.90, 4.92) with (62.48, -342.81) force +[05/19/2026 07:50:56] Blue goal scored, blue score is now 2 +[05/19/2026 07:50:59] Client 16 sent text emote Nice shot! +[05/19/2026 07:51:00] Client 15 sent emoji emote 0 +[05/19/2026 07:51:02] Client 15 sent text emote well played +[05/19/2026 07:51:03] force = 70 * 0.5627339 = 39.39137 +[05/19/2026 07:51:03] launching puck at (0.99, 1.57) with (-39.00, -61.95) force +[05/19/2026 07:51:03] Client 15 sent text emote Thanks! +[05/19/2026 07:51:13] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:51:13] launching puck at (-0.05, 5.00) with (3.16, -348.44) force +[05/19/2026 07:51:17] Client 15 sent text emote well played +[05/19/2026 07:51:18] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:51:18] launching puck at (3.37, -3.69) with (-235.14, 257.15) force +[05/19/2026 07:51:22] Client 16 sent text emote Thanks! +[05/19/2026 07:51:25] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:51:25] launching puck at (3.05, 3.97) with (-212.28, -276.33) force +[05/19/2026 07:51:29] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:51:29] launching puck at (-3.22, -3.83) with (224.12, 266.81) force +[05/19/2026 07:51:30] Red goal scored, red score is now 1 +[05/19/2026 07:51:31] Client 15 sent text emote WOW +[05/19/2026 07:51:32] Client 16 sent text emote WOW +[05/19/2026 07:51:34] Client 15 sent text emote Nice shot! +[05/19/2026 07:51:36] Client 15 sent text emote well played +[05/19/2026 07:51:37] Client 16 sent text emote Thanks! +[05/19/2026 07:51:39] Client 15 sent text emote WOW +[05/19/2026 07:51:40] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:51:40] launching puck at (-0.04, 5.00) with (2.53, -348.44) force +[05/19/2026 07:51:46] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:51:46] launching puck at (2.97, 4.02) with (-206.85, -280.42) force +[05/19/2026 07:51:53] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:51:53] launching puck at (0.83, 4.93) with (-58.05, -343.58) force +[05/19/2026 07:51:57] force = 70 * 0.5614336 = 39.30035 +[05/19/2026 07:51:57] launching puck at (1.47, 1.12) with (-57.83, -44.20) force +[05/19/2026 07:52:03] force = 70 * 0.9017713 = 63.12399 +[05/19/2026 07:52:03] launching puck at (-3.74, 1.43) with (236.31, -90.21) force +[05/19/2026 07:52:10] Client 16 sent emoji emote 1 +[05/19/2026 07:52:11] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:52:11] launching puck at (-0.99, 4.90) with (69.29, -341.49) force +[05/19/2026 07:52:20] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:52:20] launching puck at (-4.99, 0.24) with (348.05, -16.69) force +[05/19/2026 07:52:20] Blue goal scored, blue score is now 3 +[05/19/2026 07:52:22] Dedicated match PATCH success: 200 {"ok":true,"id":70} +[05/19/2026 07:52:22] Client 16 sent text emote What a save! +[05/19/2026 07:52:23] Dedicated match winner PATCH success: 200 {"ok":true,"id":70,"winner_id":7,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/19/2026 07:52:24] Client 15 sent text emote GG +[05/19/2026 07:52:27] Rematch requested +[05/19/2026 07:52:40] Rematch was confirmed, closing in 5 secs. new room : +[05/19/2026 07:52:40] {"ok":true,"entry_fee":56,"rc_prize":92,"for_red":{"Players":[{"Name":"warlock3","LastSeen":1779177160150,"l10_wins":2,"l10_losses":7,"UserId":6,"rc":0.0},{"Name":"King LuLu","LastSeen":1779177160150,"l10_wins":7,"l10_losses":2,"UserId":7,"rc":0.0}],"GameName":"soccar","Port":26340,"InitTime":1779177160150,"instance_started":true,"match_id":71,"entry_fee":56,"rc_prize":92,"your_team":"red"},"for_blue":{"Players":[{"Name":"warlock3","LastSeen":1779177160150,"l10_wins":2,"l10_losses":7,"UserId":6,"rc":0.0},{"Name":"King LuLu","LastSeen":1779177160150,"l10_wins":7,"l10_losses":2,"UserId":7,"rc":0.0}],"GameName":"soccar","Port":26340,"InitTime":1779177160150,"instance_started":true,"match_id":71,"entry_fee":56,"rc_prize":92,"your_team":"blue"},"your_team":""} +[05/19/2026 07:52:40] Mirror server: client disconnected (connId=720393299) +[05/19/2026 07:52:40] Active player connections: 1 +[05/19/2026 07:52:40] Mirror server: client disconnected (connId=-1479578860) +[05/19/2026 07:52:40] Active player connections: 0 +[05/19/2026 07:52:45] Server will be closed due to no players in, 60 +[05/19/2026 07:52:55] Server will be closed due to no players in, 50 +[05/19/2026 07:53:05] Server will be closed due to no players in, 40 +[05/19/2026 07:53:15] Server will be closed due to no players in, 30 +[05/19/2026 07:53:25] Server will be closed due to no players in, 20 +[05/19/2026 07:53:35] Server will be closed due to no players in, 10 +[05/19/2026 07:53:45] All players left, exiting +[05/19/2026 07:53:45] Dedicated match PATCH success: 200 {"ok":true,"id":70} diff --git a/games/soccar/soccar_Data/Logs/71.txt b/games/soccar/soccar_Data/Logs/71.txt new file mode 100644 index 0000000..ee48e38 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/71.txt @@ -0,0 +1,81 @@ +[05/19/2026 07:52:41] Starting server at port 26340 +[05/19/2026 07:52:41] Mirror server exception logging enabled +[05/19/2026 07:52:41] Failed to fetch red and blue names, isServer? +[05/19/2026 07:52:41] Starting auto close watchdog +[05/19/2026 07:52:41] Active player connections: 0 +[05/19/2026 07:52:45] Active player connections: 1 +[05/19/2026 07:52:45] Client 15 set team to Red +[05/19/2026 07:52:45] Active player connections: 2 +[05/19/2026 07:52:45] Game started On Server +[05/19/2026 07:52:45] Dedicated match PATCH success: 200 {"ok":true,"id":71} +[05/19/2026 07:52:45] Client 16 set team to Blue +[05/19/2026 07:52:45] Dedicated match PATCH success: 200 {"ok":true,"id":71} +[05/19/2026 07:52:52] force = 70 * 0.6256736 = 43.79715 +[05/19/2026 07:52:52] launching puck at (0.91, 1.95) with (-39.64, -85.60) force +[05/19/2026 07:52:56] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:52:56] launching puck at (0.04, 5.00) with (-2.78, -348.44) force +[05/19/2026 07:53:01] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:53:01] launching puck at (-3.62, -3.45) with (252.43, 240.20) force +[05/19/2026 07:53:07] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:53:07] launching puck at (-0.39, 4.98) with (27.25, -347.39) force +[05/19/2026 07:53:07] Blue goal scored, blue score is now 1 +[05/19/2026 07:53:07] Client 15 sent emoji emote 4 +[05/19/2026 07:53:09] Client 15 sent text emote Nice shot! +[05/19/2026 07:53:14] Client 16 sent text emote Thanks! +[05/19/2026 07:53:16] force = 70 * 0.4957274 = 34.70092 +[05/19/2026 07:53:16] launching puck at (1.52, -0.24) with (-52.65, 8.49) force +[05/19/2026 07:53:20] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:53:20] launching puck at (-0.02, 5.00) with (1.31, -348.45) force +[05/19/2026 07:53:25] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:53:25] launching puck at (-4.97, 0.51) with (346.60, -35.89) force +[05/19/2026 07:53:30] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:53:30] launching puck at (-2.35, 4.41) with (163.65, -307.63) force +[05/19/2026 07:53:34] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:53:34] launching puck at (-4.79, -1.42) with (334.04, 99.18) force +[05/19/2026 07:53:40] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:53:40] launching puck at (-0.28, 4.99) with (19.39, -347.91) force +[05/19/2026 07:53:44] Client 16 sent text emote What a save! +[05/19/2026 07:53:44] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:53:44] launching puck at (3.07, -3.95) with (-213.88, 275.09) force +[05/19/2026 07:53:50] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:53:50] launching puck at (1.42, 4.79) with (-99.26, -334.02) force +[05/19/2026 07:53:54] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:53:54] launching puck at (3.72, -3.34) with (-259.01, 233.09) force +[05/19/2026 07:53:57] Client 15 sent emoji emote 1 +[05/19/2026 07:54:01] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:54:01] launching puck at (1.68, 4.71) with (-116.98, -328.23) force +[05/19/2026 07:54:04] Client 16 sent emoji emote 4 +[05/19/2026 07:54:10] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:54:10] launching puck at (0.09, 5.00) with (-6.37, -348.40) force +[05/19/2026 07:54:18] Client 15 sent text emote Nice shot! +[05/19/2026 07:54:20] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:54:20] launching puck at (0.47, 4.98) with (-32.57, -346.93) force +[05/19/2026 07:54:20] Blue goal scored, blue score is now 2 +[05/19/2026 07:54:23] Client 16 sent text emote Thanks! +[05/19/2026 07:54:28] force = 70 * 0.5318815 = 37.2317 +[05/19/2026 07:54:28] launching puck at (0.69, 1.56) with (-25.66, -57.97) force +[05/19/2026 07:54:33] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:54:33] launching puck at (-0.02, 5.00) with (1.16, -348.45) force +[05/19/2026 07:54:38] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:54:38] launching puck at (3.21, -3.83) with (-223.76, 267.12) force +[05/19/2026 07:54:43] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:54:43] launching puck at (-1.00, 4.90) with (69.64, -341.42) force +[05/19/2026 07:54:43] Blue goal scored, blue score is now 3 +[05/19/2026 07:54:44] Dedicated match PATCH success: 200 {"ok":true,"id":71} +[05/19/2026 07:54:45] Client 15 sent text emote WOW +[05/19/2026 07:54:46] Dedicated match winner PATCH success: 200 {"ok":true,"id":71,"winner_id":7,"economy":{"entry_fee_rc":56,"rc_prize":92,"participant_cc":100}} +[05/19/2026 07:54:57] Rematch requested +[05/19/2026 07:55:06] Rematch was confirmed, closing in 5 secs. new room : +[05/19/2026 07:55:06] {"ok":true,"entry_fee":16,"rc_prize":26,"for_red":{"Players":[{"Name":"warlock3","LastSeen":1779177306217,"l10_wins":1,"l10_losses":8,"UserId":6,"rc":0.0},{"Name":"King LuLu","LastSeen":1779177306217,"l10_wins":8,"l10_losses":1,"UserId":7,"rc":0.0}],"GameName":"soccar","Port":26133,"InitTime":1779177306217,"instance_started":true,"match_id":72,"entry_fee":16,"rc_prize":26,"your_team":"red"},"for_blue":{"Players":[{"Name":"warlock3","LastSeen":1779177306217,"l10_wins":1,"l10_losses":8,"UserId":6,"rc":0.0},{"Name":"King LuLu","LastSeen":1779177306217,"l10_wins":8,"l10_losses":1,"UserId":7,"rc":0.0}],"GameName":"soccar","Port":26133,"InitTime":1779177306217,"instance_started":true,"match_id":72,"entry_fee":16,"rc_prize":26,"your_team":"blue"},"your_team":""} +[05/19/2026 07:55:06] Mirror server: client disconnected (connId=720390767) +[05/19/2026 07:55:06] Active player connections: 1 +[05/19/2026 07:55:06] Mirror server: client disconnected (connId=-1479581630) +[05/19/2026 07:55:06] Active player connections: 0 +[05/19/2026 07:55:11] Server will be closed due to no players in, 60 +[05/19/2026 07:55:21] Server will be closed due to no players in, 50 +[05/19/2026 07:55:31] Server will be closed due to no players in, 40 +[05/19/2026 07:55:41] Server will be closed due to no players in, 30 +[05/19/2026 07:55:51] Server will be closed due to no players in, 20 +[05/19/2026 07:56:01] Server will be closed due to no players in, 10 +[05/19/2026 07:56:11] All players left, exiting +[05/19/2026 07:56:11] Dedicated match PATCH success: 200 {"ok":true,"id":71} diff --git a/games/soccar/soccar_Data/Logs/72.txt b/games/soccar/soccar_Data/Logs/72.txt new file mode 100644 index 0000000..12850f4 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/72.txt @@ -0,0 +1,181 @@ +[05/19/2026 07:55:08] Starting server at port 26133 +[05/19/2026 07:55:08] Mirror server exception logging enabled +[05/19/2026 07:55:08] Failed to fetch red and blue names, isServer? +[05/19/2026 07:55:08] Starting auto close watchdog +[05/19/2026 07:55:08] Active player connections: 0 +[05/19/2026 07:55:11] Active player connections: 1 +[05/19/2026 07:55:11] Active player connections: 2 +[05/19/2026 07:55:11] Game started On Server +[05/19/2026 07:55:11] Client 16 set team to Red +[05/19/2026 07:55:11] Client 15 set team to Blue +[05/19/2026 07:55:11] Dedicated match PATCH success: 200 {"ok":true,"id":72} +[05/19/2026 07:55:11] Dedicated match PATCH success: 200 {"ok":true,"id":72} +[05/19/2026 07:55:18] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:55:18] launching puck at (4.97, -0.57) with (-346.18, 39.71) force +[05/19/2026 07:55:27] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:55:27] launching puck at (-2.53, 4.31) with (176.25, -300.59) force +[05/19/2026 07:55:34] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:55:34] launching puck at (-4.99, 0.39) with (347.42, -26.83) force +[05/19/2026 07:55:39] force = 70 * 0.9780058 = 68.46041 +[05/19/2026 07:55:39] launching puck at (-4.30, 2.15) with (294.20, -147.24) force +[05/19/2026 07:55:42] Client 16 sent emoji emote 0 +[05/19/2026 07:55:43] Client 15 sent text emote WOW +[05/19/2026 07:55:44] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:55:44] launching puck at (-3.29, 3.76) with (229.38, -262.30) force +[05/19/2026 07:55:44] Blue goal scored, blue score is now 1 +[05/19/2026 07:55:46] Client 16 sent emoji emote 4 +[05/19/2026 07:55:53] force = 70 * 0.5407457 = 37.8522 +[05/19/2026 07:55:53] launching puck at (1.74, -0.20) with (-65.71, 7.39) force +[05/19/2026 07:55:57] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:55:57] launching puck at (-0.13, 5.00) with (9.04, -348.34) force +[05/19/2026 07:56:01] Client 15 sent text emote What a save! +[05/19/2026 07:56:02] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:56:02] launching puck at (-1.43, 4.79) with (99.55, -333.93) force +[05/19/2026 07:56:07] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:56:07] launching puck at (-1.67, 4.71) with (116.40, -328.44) force +[05/19/2026 07:56:10] Client 15 sent text emote Oops +[05/19/2026 07:56:13] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:56:13] launching puck at (0.98, -4.90) with (-68.16, 341.72) force +[05/19/2026 07:56:19] Client 16 sent text emote Oops +[05/19/2026 07:56:19] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:56:19] launching puck at (-4.98, 0.49) with (346.75, -34.40) force +[05/19/2026 07:56:28] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:56:28] launching puck at (-3.94, -3.08) with (274.73, 214.34) force +[05/19/2026 07:56:31] Client 16 sent emoji emote 1 +[05/19/2026 07:56:34] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:56:34] launching puck at (1.34, 4.82) with (-93.35, -335.72) force +[05/19/2026 07:56:35] Blue goal scored, blue score is now 2 +[05/19/2026 07:56:38] Client 15 sent emoji emote 5 +[05/19/2026 07:56:38] Client 16 sent text emote Nice shot! +[05/19/2026 07:56:41] Client 15 sent text emote Thanks! +[05/19/2026 07:56:41] force = 70 * 0.4952983 = 34.67088 +[05/19/2026 07:56:41] launching puck at (1.53, -0.04) with (-53.20, 1.49) force +[05/19/2026 07:56:45] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:56:45] launching puck at (0.20, 5.00) with (-14.22, -348.16) force +[05/19/2026 07:56:51] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:56:51] launching puck at (-5.00, 0.14) with (348.31, -9.82) force +[05/19/2026 07:57:01] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:57:01] launching puck at (-1.23, 4.85) with (85.62, -337.77) force +[05/19/2026 07:57:05] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:57:05] launching puck at (-2.91, 4.06) with (202.96, -283.25) force +[05/19/2026 07:57:11] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:57:11] launching puck at (-4.66, 1.82) with (324.55, -126.82) force +[05/19/2026 07:57:13] Client 15 sent text emote Oops +[05/19/2026 07:57:14] Client 16 sent emoji emote 0 +[05/19/2026 07:57:20] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:57:20] launching puck at (-0.94, -4.91) with (65.80, 342.18) force +[05/19/2026 07:57:21] Client 15 sent emoji emote 0 +[05/19/2026 07:57:25] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:57:25] launching puck at (-4.82, -1.32) with (336.18, 91.67) force +[05/19/2026 07:57:31] force = 70 * 0.5995963 = 41.97174 +[05/19/2026 07:57:31] launching puck at (-1.94, -0.61) with (81.40, 25.75) force +[05/19/2026 07:57:41] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:57:41] launching puck at (2.43, 4.37) with (-169.68, -304.35) force +[05/19/2026 07:57:47] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:57:47] launching puck at (4.61, -1.94) with (-321.14, 135.24) force +[05/19/2026 07:57:49] Client 16 sent text emote What a save! +[05/19/2026 07:57:54] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:57:54] launching puck at (4.93, 0.85) with (-343.40, -59.10) force +[05/19/2026 07:58:00] force = 70 * 0.8421716 = 58.95201 +[05/19/2026 07:58:00] launching puck at (3.40, 0.72) with (-200.69, -42.33) force +[05/19/2026 07:58:06] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:58:06] launching puck at (-0.66, 4.96) with (46.17, -345.38) force +[05/19/2026 07:58:11] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:58:11] launching puck at (-2.92, -4.06) with (203.66, 282.74) force +[05/19/2026 07:58:20] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:58:20] launching puck at (-1.38, -4.81) with (95.85, 335.01) force +[05/19/2026 07:58:25] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:58:25] launching puck at (3.32, -3.74) with (-231.29, 260.62) force +[05/19/2026 07:58:28] Client 16 sent emoji emote 3 +[05/19/2026 07:58:28] Client 15 sent text emote well played +[05/19/2026 07:58:31] Client 16 sent text emote Thanks! +[05/19/2026 07:58:38] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:58:38] launching puck at (4.96, -0.63) with (-345.68, 43.85) force +[05/19/2026 07:58:42] force = 70 * 0.9410574 = 65.87402 +[05/19/2026 07:58:42] launching puck at (4.11, -1.59) with (-270.72, 104.43) force +[05/19/2026 07:58:42] Red goal scored, red score is now 1 +[05/19/2026 07:58:44] Client 15 sent text emote Oops +[05/19/2026 07:58:46] Client 15 sent text emote well played +[05/19/2026 07:58:48] Client 16 sent text emote Thanks! +[05/19/2026 07:58:48] Client 15 sent text emote Nice shot! +[05/19/2026 07:58:50] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:58:50] launching puck at (-0.06, 5.00) with (3.99, -348.43) force +[05/19/2026 07:58:52] Client 16 sent text emote Thanks! +[05/19/2026 07:58:59] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:58:59] launching puck at (-0.33, -4.99) with (22.66, 347.72) force +[05/19/2026 07:59:08] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:59:08] launching puck at (2.23, 4.47) with (-155.46, -311.85) force +[05/19/2026 07:59:12] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:59:12] launching puck at (-3.74, -3.32) with (260.82, 231.07) force +[05/19/2026 07:59:17] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:59:17] launching puck at (3.05, 3.96) with (-212.48, -276.18) force +[05/19/2026 07:59:21] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:59:21] launching puck at (4.08, 2.89) with (-284.29, -201.49) force +[05/19/2026 07:59:26] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:59:26] launching puck at (2.69, 4.22) with (-187.41, -293.76) force +[05/19/2026 07:59:31] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:59:31] launching puck at (1.78, -4.67) with (-123.91, 325.68) force +[05/19/2026 07:59:36] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:59:36] launching puck at (1.74, 4.69) with (-121.51, -326.58) force +[05/19/2026 07:59:40] force = 70 * 0.9837892 = 68.86524 +[05/19/2026 07:59:40] launching puck at (3.88, 2.94) with (-267.31, -202.47) force +[05/19/2026 07:59:50] force = 70 * 0.7382672 = 51.67871 +[05/19/2026 07:59:50] launching puck at (-2.15, 1.72) with (111.06, -88.92) force +[05/19/2026 07:59:56] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 07:59:56] launching puck at (3.56, -3.51) with (-248.41, 244.36) force +[05/19/2026 08:00:02] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 08:00:02] launching puck at (-0.86, 4.92) with (60.23, -343.21) force +[05/19/2026 08:00:07] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 08:00:07] launching puck at (-2.08, 4.55) with (144.93, -316.89) force +[05/19/2026 08:00:12] Client 16 sent emoji emote 3 +[05/19/2026 08:00:14] Client 15 sent text emote well played +[05/19/2026 08:00:16] Client 16 sent text emote Thanks! +[05/19/2026 08:00:18] force = 70 * 0.9848011 = 68.93607 +[05/19/2026 08:00:18] launching puck at (0.17, -4.88) with (-11.38, 336.26) force +[05/19/2026 08:00:23] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 08:00:23] launching puck at (-0.31, -4.99) with (21.52, 347.79) force +[05/19/2026 08:00:27] Client 15 sent text emote What a save! +[05/19/2026 08:00:27] Client 16 sent text emote What a save! +[05/19/2026 08:00:29] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 08:00:29] launching puck at (-4.80, 1.38) with (334.83, -96.47) force +[05/19/2026 08:00:35] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 08:00:35] launching puck at (0.38, -4.99) with (-26.48, 347.45) force +[05/19/2026 08:00:35] Red goal scored, red score is now 2 +[05/19/2026 08:00:37] Client 16 sent emoji emote 3 +[05/19/2026 08:00:37] Client 15 sent text emote Nice shot! +[05/19/2026 08:00:39] Client 16 sent text emote Thanks! +[05/19/2026 08:00:41] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 08:00:41] launching puck at (-0.01, 5.00) with (0.80, -348.45) force +[05/19/2026 08:00:47] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 08:00:47] launching puck at (4.74, 1.58) with (-330.55, -110.25) force +[05/19/2026 08:00:51] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 08:00:51] launching puck at (0.27, 4.99) with (-18.57, -347.96) force +[05/19/2026 08:00:56] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 08:00:56] launching puck at (3.26, -3.79) with (-227.21, 264.19) force +[05/19/2026 08:01:01] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 08:01:01] launching puck at (4.82, 1.34) with (-335.70, -93.40) force +[05/19/2026 08:01:06] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 08:01:06] launching puck at (3.06, -3.96) with (-213.09, 275.71) force +[05/19/2026 08:01:12] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 08:01:12] launching puck at (3.68, 3.39) with (-256.28, -236.10) force +[05/19/2026 08:01:16] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 08:01:16] launching puck at (2.92, 4.06) with (-203.42, -282.91) force +[05/19/2026 08:01:22] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 08:01:22] launching puck at (4.99, 0.38) with (-347.47, -26.21) force +[05/19/2026 08:01:22] Blue goal scored, blue score is now 3 +[05/19/2026 08:01:23] Dedicated match PATCH success: 200 {"ok":true,"id":72} +[05/19/2026 08:01:25] Client 16 sent text emote Oops +[05/19/2026 08:01:25] Dedicated match winner PATCH success: 200 {"ok":true,"id":72,"winner_id":7,"economy":{"entry_fee_rc":16,"rc_prize":26,"participant_cc":100}} +[05/19/2026 08:01:25] Client 15 sent text emote GG +[05/19/2026 08:01:34] Mirror server: client disconnected (connId=-1479581524) +[05/19/2026 08:01:34] Active player connections: 1 +[05/19/2026 08:01:50] Mirror server: client disconnected (connId=720386010) +[05/19/2026 08:01:50] Active player connections: 0 +[05/19/2026 08:01:55] Server will be closed due to no players in, 60 +[05/19/2026 08:02:05] Server will be closed due to no players in, 50 +[05/19/2026 08:02:15] Server will be closed due to no players in, 40 +[05/19/2026 08:02:25] Server will be closed due to no players in, 30 +[05/19/2026 08:02:35] Server will be closed due to no players in, 20 +[05/19/2026 08:02:45] Server will be closed due to no players in, 10 +[05/19/2026 08:02:55] All players left, exiting +[05/19/2026 08:02:56] Dedicated match PATCH success: 200 {"ok":true,"id":72} diff --git a/games/soccar/soccar_Data/Logs/73.txt b/games/soccar/soccar_Data/Logs/73.txt new file mode 100644 index 0000000..10fa3f0 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/73.txt @@ -0,0 +1,165 @@ +[05/19/2026 20:06:26] Starting server at port 26994 +[05/19/2026 20:06:26] Mirror server exception logging enabled +[05/19/2026 20:06:26] Failed to fetch red and blue names, isServer? +[05/19/2026 20:06:26] Starting auto close watchdog +[05/19/2026 20:06:26] Active player connections: 0 +[05/19/2026 20:06:28] Active player connections: 1 +[05/19/2026 20:06:28] Client 15 set team to Blue +[05/19/2026 20:06:29] Active player connections: 2 +[05/19/2026 20:06:29] Game started On Server +[05/19/2026 20:06:29] Dedicated match PATCH success: 200 {"ok":true,"id":73} +[05/19/2026 20:06:29] Client 16 set team to Red +[05/19/2026 20:06:29] Dedicated match PATCH success: 200 {"ok":true,"id":73} +[05/19/2026 20:06:33] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:06:33] launching puck at (0.17, -5.00) with (-12.07, 348.24) force +[05/19/2026 20:06:37] force = 70 * 0.9741117 = 68.18782 +[05/19/2026 20:06:37] launching puck at (-0.27, -4.76) with (18.32, 324.24) force +[05/19/2026 20:06:45] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:06:45] launching puck at (-1.83, -4.65) with (127.32, 324.36) force +[05/19/2026 20:06:55] force = 70 * 0.4890552 = 34.23386 +[05/19/2026 20:06:55] launching puck at (-1.31, 0.75) with (44.87, -25.62) force +[05/19/2026 20:06:59] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:06:59] launching puck at (-4.79, -1.42) with (334.16, 98.76) force +[05/19/2026 20:07:06] force = 70 * 0.9900713 = 69.30499 +[05/19/2026 20:07:06] launching puck at (2.46, -4.28) with (-170.29, 296.94) force +[05/19/2026 20:07:12] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:07:12] launching puck at (-0.72, -4.95) with (50.45, 344.78) force +[05/19/2026 20:07:12] Red goal scored, red score is now 1 +[05/19/2026 20:07:22] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:07:22] launching puck at (3.55, -3.53) with (-247.07, 245.71) force +[05/19/2026 20:07:30] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:07:30] launching puck at (0.00, -5.00) with (-0.12, 348.45) force +[05/19/2026 20:07:38] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:07:38] launching puck at (4.99, -0.27) with (-347.95, 18.69) force +[05/19/2026 20:07:42] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:07:42] launching puck at (-2.28, -4.45) with (158.72, 310.20) force +[05/19/2026 20:07:47] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:07:47] launching puck at (4.13, 2.83) with (-287.48, -196.92) force +[05/19/2026 20:07:56] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:07:56] launching puck at (4.82, -1.32) with (-336.15, 91.76) force +[05/19/2026 20:08:06] force = 70 * 0.8966413 = 62.76489 +[05/19/2026 20:08:06] launching puck at (-3.94, 0.33) with (247.54, -20.85) force +[05/19/2026 20:08:14] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:08:14] launching puck at (-3.51, -3.56) with (244.40, 248.37) force +[05/19/2026 20:08:19] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:08:19] launching puck at (4.96, -0.66) with (-345.39, 46.10) force +[05/19/2026 20:08:26] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:08:26] launching puck at (1.47, -4.78) with (-102.67, 332.98) force +[05/19/2026 20:08:31] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:08:31] launching puck at (3.54, -3.53) with (-246.97, 245.82) force +[05/19/2026 20:08:35] Client 16 sent text emote well played +[05/19/2026 20:08:39] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:08:39] launching puck at (0.14, -5.00) with (-9.41, 348.33) force +[05/19/2026 20:08:41] Client 15 sent emoji emote 3 +[05/19/2026 20:08:46] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:08:46] launching puck at (4.35, -2.47) with (-302.86, 172.33) force +[05/19/2026 20:08:51] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:08:51] launching puck at (0.73, -4.95) with (-51.09, 344.69) force +[05/19/2026 20:08:58] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:08:58] launching puck at (2.80, -4.14) with (-194.98, 288.79) force +[05/19/2026 20:09:03] force = 70 * 0.6100097 = 42.70068 +[05/19/2026 20:09:03] launching puck at (-1.51, -1.43) with (64.49, 61.14) force +[05/19/2026 20:09:07] Client 15 sent emoji emote 1 +[05/19/2026 20:09:10] Client 16 sent emoji emote 5 +[05/19/2026 20:09:11] force = 70 * 0.8022155 = 56.15508 +[05/19/2026 20:09:11] launching puck at (2.87, -1.35) with (-161.42, 75.63) force +[05/19/2026 20:09:18] force = 70 * 0.9018036 = 63.12625 +[05/19/2026 20:09:18] launching puck at (-2.32, -3.27) with (146.48, 206.24) force +[05/19/2026 20:09:18] Red goal scored, red score is now 2 +[05/19/2026 20:09:22] Client 15 sent emoji emote 1 +[05/19/2026 20:09:27] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:09:27] launching puck at (0.57, 4.97) with (-39.55, -346.20) force +[05/19/2026 20:09:28] Client 16 sent emoji emote 3 +[05/19/2026 20:09:34] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:09:34] launching puck at (0.94, 4.91) with (-65.46, -342.25) force +[05/19/2026 20:09:40] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:09:40] launching puck at (-2.63, 4.25) with (183.19, -296.41) force +[05/19/2026 20:09:47] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:09:47] launching puck at (0.13, -5.00) with (-9.27, 348.33) force +[05/19/2026 20:09:51] Client 16 sent text emote What a save! +[05/19/2026 20:09:54] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:09:54] launching puck at (-2.73, 4.19) with (190.42, -291.82) force +[05/19/2026 20:10:02] force = 70 * 0.992063 = 69.44441 +[05/19/2026 20:10:02] launching puck at (2.83, -4.07) with (-196.77, 282.80) force +[05/19/2026 20:10:07] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:10:07] launching puck at (-1.81, 4.66) with (126.01, -324.87) force +[05/19/2026 20:10:12] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:10:12] launching puck at (1.96, -4.60) with (-136.25, 320.71) force +[05/19/2026 20:10:19] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:10:19] launching puck at (-1.21, 4.85) with (84.09, -338.15) force +[05/19/2026 20:10:25] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:10:25] launching puck at (-2.56, -4.30) with (178.17, 299.46) force +[05/19/2026 20:10:31] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:10:31] launching puck at (-1.40, 4.80) with (97.78, -334.45) force +[05/19/2026 20:10:34] Client 15 sent emoji emote 0 +[05/19/2026 20:10:38] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:10:38] launching puck at (-0.31, 4.99) with (21.79, -347.77) force +[05/19/2026 20:10:42] Client 16 sent emoji emote 0 +[05/19/2026 20:10:42] Client 15 sent text emote Nice shot! +[05/19/2026 20:10:45] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:10:45] launching puck at (-0.54, 4.97) with (37.38, -346.44) force +[05/19/2026 20:10:46] Client 16 sent text emote Thanks! +[05/19/2026 20:10:51] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:10:51] launching puck at (1.91, 4.62) with (-132.83, -322.14) force +[05/19/2026 20:10:51] Blue goal scored, blue score is now 1 +[05/19/2026 20:10:54] Client 16 sent text emote Oops +[05/19/2026 20:10:54] Client 15 sent emoji emote 3 +[05/19/2026 20:10:57] force = 70 * 0.9953543 = 69.6748 +[05/19/2026 20:10:57] launching puck at (0.04, -5.00) with (-2.76, 348.19) force +[05/19/2026 20:11:04] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:11:04] launching puck at (1.80, 4.66) with (-125.53, -325.05) force +[05/19/2026 20:11:09] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:11:09] launching puck at (0.69, -4.95) with (-48.22, 345.10) force +[05/19/2026 20:11:15] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:11:15] launching puck at (2.79, 4.15) with (-194.31, -289.24) force +[05/19/2026 20:11:19] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:11:19] launching puck at (4.60, -1.96) with (-320.43, 136.90) force +[05/19/2026 20:11:24] Client 16 sent text emote Oops +[05/19/2026 20:11:27] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:11:27] launching puck at (0.71, 4.95) with (-49.68, -344.89) force +[05/19/2026 20:11:32] Client 15 sent emoji emote 1 +[05/19/2026 20:11:35] Client 16 sent emoji emote 0 +[05/19/2026 20:11:37] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:11:37] launching puck at (3.09, 3.93) with (-215.13, -274.11) force +[05/19/2026 20:11:42] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:11:42] launching puck at (0.10, 5.00) with (-6.80, -348.39) force +[05/19/2026 20:11:49] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:11:49] launching puck at (4.76, 1.52) with (-331.89, -106.17) force +[05/19/2026 20:11:54] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:11:54] launching puck at (-2.06, 4.56) with (143.55, -317.51) force +[05/19/2026 20:11:58] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:11:58] launching puck at (1.62, -4.73) with (-112.79, 329.69) force +[05/19/2026 20:12:04] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:12:04] launching puck at (-2.11, 4.53) with (147.09, -315.89) force +[05/19/2026 20:12:08] Client 15 sent emoji emote 1 +[05/19/2026 20:12:08] Client 16 sent emoji emote 2 +[05/19/2026 20:12:10] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:12:10] launching puck at (4.53, -2.13) with (-315.36, 148.22) force +[05/19/2026 20:12:17] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:12:17] launching puck at (-4.99, -0.24) with (348.06, 16.62) force +[05/19/2026 20:12:25] Client 15 sent emoji emote 1 +[05/19/2026 20:12:25] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:12:25] launching puck at (-2.61, -4.27) with (181.57, 297.41) force +[05/19/2026 20:12:31] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:12:31] launching puck at (-3.76, 3.29) with (262.22, -229.48) force +[05/19/2026 20:12:35] Client 15 sent emoji emote 1 +[05/19/2026 20:12:35] Client 16 sent text emote Oops +[05/19/2026 20:12:37] force = 70 * 0.8999583 = 62.99708 +[05/19/2026 20:12:37] launching puck at (0.30, -3.98) with (-19.13, 250.60) force +[05/19/2026 20:12:37] Red goal scored, red score is now 3 +[05/19/2026 20:12:39] Dedicated match PATCH success: 200 {"ok":true,"id":73} +[05/19/2026 20:12:40] Dedicated match winner PATCH success: 200 {"ok":true,"id":73,"winner_id":7,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/19/2026 20:12:45] Rematch requested +[05/19/2026 20:12:52] Rematch was confirmed, closing in 5 secs. new room : +[05/19/2026 20:12:52] {"ok":true,"entry_fee":42,"rc_prize":68,"for_red":{"Players":[{"Name":"King LuLu","LastSeen":1779221572189,"l10_wins":8,"l10_losses":1,"UserId":7,"rc":0.0},{"Name":"Bush","LastSeen":1779221572189,"l10_wins":0,"l10_losses":1,"UserId":10,"rc":0.0}],"GameName":"soccar","Port":26978,"InitTime":1779221572189,"instance_started":true,"match_id":74,"entry_fee":42,"rc_prize":68,"your_team":"red"},"for_blue":{"Players":[{"Name":"King LuLu","LastSeen":1779221572189,"l10_wins":8,"l10_losses":1,"UserId":7,"rc":0.0},{"Name":"Bush","LastSeen":1779221572189,"l10_wins":0,"l10_losses":1,"UserId":10,"rc":0.0}],"GameName":"soccar","Port":26978,"InitTime":1779221572189,"instance_started":true,"match_id":74,"entry_fee":42,"rc_prize":68,"your_team":"blue"},"your_team":""} +[05/19/2026 20:12:52] Mirror server: client disconnected (connId=-1810847975) +[05/19/2026 20:12:52] Mirror server: client disconnected (connId=-1049482237) +[05/19/2026 20:12:52] Active player connections: 0 +[05/19/2026 20:12:57] Server will be closed due to no players in, 60 +[05/19/2026 20:13:07] Server will be closed due to no players in, 50 +[05/19/2026 20:13:17] Server will be closed due to no players in, 40 +[05/19/2026 20:13:27] Server will be closed due to no players in, 30 +[05/19/2026 20:13:37] Server will be closed due to no players in, 20 +[05/19/2026 20:13:47] Server will be closed due to no players in, 10 +[05/19/2026 20:13:57] All players left, exiting +[05/19/2026 20:13:58] Dedicated match PATCH success: 200 {"ok":true,"id":73} diff --git a/games/soccar/soccar_Data/Logs/74.txt b/games/soccar/soccar_Data/Logs/74.txt new file mode 100644 index 0000000..33c301b --- /dev/null +++ b/games/soccar/soccar_Data/Logs/74.txt @@ -0,0 +1,177 @@ +[05/19/2026 20:12:55] Starting server at port 26978 +[05/19/2026 20:12:55] Mirror server exception logging enabled +[05/19/2026 20:12:55] Failed to fetch red and blue names, isServer? +[05/19/2026 20:12:55] Starting auto close watchdog +[05/19/2026 20:12:55] Active player connections: 0 +[05/19/2026 20:12:57] Active player connections: 1 +[05/19/2026 20:12:57] Active player connections: 2 +[05/19/2026 20:12:57] Game started On Server +[05/19/2026 20:12:57] Client 16 set team to Red +[05/19/2026 20:12:57] Client 15 set team to Blue +[05/19/2026 20:12:58] Dedicated match PATCH success: 200 {"ok":true,"id":74} +[05/19/2026 20:12:58] Dedicated match PATCH success: 200 {"ok":true,"id":74} +[05/19/2026 20:13:03] force = 70 * 0.7433907 = 52.03735 +[05/19/2026 20:13:03] launching puck at (-0.31, 2.77) with (16.25, -143.97) force +[05/19/2026 20:13:09] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:13:09] launching puck at (0.00, 5.00) with (-0.16, -348.45) force +[05/19/2026 20:13:09] Blue goal scored, blue score is now 1 +[05/19/2026 20:13:12] Client 16 sent text emote Nice shot! +[05/19/2026 20:13:12] Client 15 sent emoji emote 2 +[05/19/2026 20:13:16] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:13:16] launching puck at (-0.01, -5.00) with (0.70, 348.45) force +[05/19/2026 20:13:25] force = 70 * 0.9949652 = 69.64756 +[05/19/2026 20:13:25] launching puck at (-4.80, 1.36) with (334.59, -94.80) force +[05/19/2026 20:13:33] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:13:33] launching puck at (0.12, -5.00) with (-8.29, 348.35) force +[05/19/2026 20:13:34] Red goal scored, red score is now 1 +[05/19/2026 20:13:45] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:13:45] launching puck at (0.03, 5.00) with (-2.27, -348.45) force +[05/19/2026 20:13:55] force = 70 * 0.8158708 = 57.11095 +[05/19/2026 20:13:55] launching puck at (-1.92, 2.65) with (109.84, -151.36) force +[05/19/2026 20:14:00] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:14:00] launching puck at (-2.59, 4.28) with (180.37, -298.14) force +[05/19/2026 20:14:01] Client 16 sent emoji emote 5 +[05/19/2026 20:14:05] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:14:05] launching puck at (-3.88, -3.16) with (270.17, 220.06) force +[05/19/2026 20:14:11] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:14:11] launching puck at (3.88, 3.15) with (-270.57, -219.57) force +[05/19/2026 20:14:16] Client 15 sent emoji emote 1 +[05/19/2026 20:14:17] Client 16 sent text emote WOW +[05/19/2026 20:14:21] Client 16 sent text emote Nice shot! +[05/19/2026 20:14:22] force = 70 * 0.6478865 = 45.35205 +[05/19/2026 20:14:22] launching puck at (0.97, 2.04) with (-44.14, -92.54) force +[05/19/2026 20:14:30] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:14:30] launching puck at (2.98, 4.02) with (-207.60, -279.86) force +[05/19/2026 20:14:34] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:14:34] launching puck at (4.80, 1.39) with (-334.69, -96.95) force +[05/19/2026 20:14:41] force = 70 * 0.9763057 = 68.3414 +[05/19/2026 20:14:41] launching puck at (3.54, 3.23) with (-241.65, -220.51) force +[05/19/2026 20:14:45] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:14:45] launching puck at (4.96, 0.60) with (-345.93, -41.84) force +[05/19/2026 20:14:51] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:14:51] launching puck at (-0.29, 4.99) with (20.24, -347.87) force +[05/19/2026 20:14:55] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:14:55] launching puck at (4.72, 1.66) with (-328.81, -115.35) force +[05/19/2026 20:15:02] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:15:02] launching puck at (-0.11, 5.00) with (7.33, -348.38) force +[05/19/2026 20:15:09] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:15:09] launching puck at (5.00, 0.06) with (-348.43, -4.28) force +[05/19/2026 20:15:13] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:15:13] launching puck at (-3.61, 3.46) with (251.55, -241.13) force +[05/19/2026 20:15:22] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:15:22] launching puck at (-4.98, 0.45) with (347.03, -31.51) force +[05/19/2026 20:15:32] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:15:32] launching puck at (-4.84, 1.27) with (337.11, -88.19) force +[05/19/2026 20:15:36] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:15:36] launching puck at (-4.42, -2.34) with (307.89, 163.17) force +[05/19/2026 20:15:43] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:15:43] launching puck at (-3.82, 3.23) with (265.99, -225.10) force +[05/19/2026 20:15:47] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:15:47] launching puck at (-2.39, -4.39) with (166.43, 306.14) force +[05/19/2026 20:15:49] Red goal scored, red score is now 2 +[05/19/2026 20:15:51] Client 15 sent emoji emote 2 +[05/19/2026 20:15:52] Client 16 sent emoji emote 5 +[05/19/2026 20:15:53] Client 15 sent text emote well played +[05/19/2026 20:15:56] Client 16 sent text emote Thanks! +[05/19/2026 20:15:57] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:15:57] launching puck at (0.17, 5.00) with (-11.59, -348.26) force +[05/19/2026 20:16:04] force = 70 * 0.8335751 = 58.35025 +[05/19/2026 20:16:04] launching puck at (-3.29, -0.89) with (192.14, 51.84) force +[05/19/2026 20:16:10] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:16:10] launching puck at (3.65, 3.42) with (-254.09, -238.45) force +[05/19/2026 20:16:15] Client 16 sent text emote What a save! +[05/19/2026 20:16:17] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:16:17] launching puck at (2.52, -4.32) with (-175.74, 300.89) force +[05/19/2026 20:16:22] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:16:22] launching puck at (2.57, 4.29) with (-179.28, -298.79) force +[05/19/2026 20:16:27] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:16:27] launching puck at (3.52, -3.55) with (-245.18, 247.60) force +[05/19/2026 20:16:34] force = 70 * 0.8444133 = 59.10893 +[05/19/2026 20:16:34] launching puck at (3.31, 1.14) with (-195.39, -67.53) force +[05/19/2026 20:16:40] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:16:40] launching puck at (2.57, -4.29) with (-178.84, 299.06) force +[05/19/2026 20:16:45] Client 16 sent text emote Oops +[05/19/2026 20:16:50] force = 70 * 0.9739655 = 68.17759 +[05/19/2026 20:16:50] launching puck at (0.67, 4.71) with (-45.35, -321.41) force +[05/19/2026 20:16:54] Client 15 sent text emote Oops +[05/19/2026 20:16:55] Client 16 sent emoji emote 2 +[05/19/2026 20:17:01] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:17:01] launching puck at (-1.05, 4.89) with (73.36, -340.64) force +[05/19/2026 20:17:02] Blue goal scored, blue score is now 2 +[05/19/2026 20:17:05] Client 15 sent emoji emote 1 +[05/19/2026 20:17:06] Client 16 sent text emote Oops +[05/19/2026 20:17:10] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:17:10] launching puck at (0.00, -5.00) with (0.22, 348.45) force +[05/19/2026 20:17:16] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:17:16] launching puck at (-0.85, 4.93) with (59.52, -343.33) force +[05/19/2026 20:17:21] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:17:21] launching puck at (4.76, -1.52) with (-331.99, 105.85) force +[05/19/2026 20:17:26] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:17:26] launching puck at (4.32, -2.52) with (-301.14, 175.32) force +[05/19/2026 20:17:34] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:17:34] launching puck at (2.04, -4.56) with (-142.25, 318.10) force +[05/19/2026 20:17:42] force = 70 * 0.9756066 = 68.29246 +[05/19/2026 20:17:42] launching puck at (-3.60, 3.15) with (245.73, -214.80) force +[05/19/2026 20:17:47] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:17:47] launching puck at (-4.46, -2.25) with (311.04, 157.07) force +[05/19/2026 20:17:54] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:17:54] launching puck at (1.65, 4.72) with (-114.78, -329.01) force +[05/19/2026 20:18:01] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:18:01] launching puck at (-1.31, -4.83) with (91.38, 336.26) force +[05/19/2026 20:18:08] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:18:08] launching puck at (-2.45, 4.36) with (170.97, -303.62) force +[05/19/2026 20:18:13] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:18:13] launching puck at (3.34, -3.72) with (-232.45, 259.59) force +[05/19/2026 20:18:18] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:18:18] launching puck at (-2.30, 4.44) with (160.41, -309.34) force +[05/19/2026 20:18:23] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:18:23] launching puck at (3.01, -3.99) with (-210.11, 277.98) force +[05/19/2026 20:18:29] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:18:29] launching puck at (1.62, 4.73) with (-113.24, -329.54) force +[05/19/2026 20:18:37] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:18:37] launching puck at (-0.24, 4.99) with (16.83, -348.05) force +[05/19/2026 20:18:41] Client 15 sent emoji emote 0 +[05/19/2026 20:18:45] Client 16 sent emoji emote 0 +[05/19/2026 20:18:45] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:18:45] launching puck at (-4.68, -1.77) with (325.81, 123.55) force +[05/19/2026 20:18:52] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:18:52] launching puck at (-1.46, 4.78) with (101.96, -333.20) force +[05/19/2026 20:18:58] force = 70 * 0.9459516 = 66.21661 +[05/19/2026 20:18:58] launching puck at (-4.45, 0.13) with (294.98, -8.49) force +[05/19/2026 20:19:06] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:19:06] launching puck at (0.50, -4.98) with (-34.73, 346.72) force +[05/19/2026 20:19:10] Client 16 sent text emote What a save! +[05/19/2026 20:19:11] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:19:11] launching puck at (-2.93, 4.05) with (203.91, -282.56) force +[05/19/2026 20:19:19] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:19:19] launching puck at (0.27, 4.99) with (-18.56, -347.96) force +[05/19/2026 20:19:26] force = 70 * 0.8928196 = 62.49738 +[05/19/2026 20:19:26] launching puck at (3.04, 2.48) with (-189.87, -154.99) force +[05/19/2026 20:19:30] Client 16 sent text emote WOW +[05/19/2026 20:19:31] Client 15 sent text emote Oops +[05/19/2026 20:19:32] Client 16 sent text emote What a save! +[05/19/2026 20:19:35] force = 70 * 0.6219424 = 43.53597 +[05/19/2026 20:19:35] launching puck at (0.75, 2.00) with (-32.52, -87.14) force +[05/19/2026 20:19:41] force = 70 * 0.9760791 = 68.32554 +[05/19/2026 20:19:41] launching puck at (-2.84, 3.85) with (194.11, -263.01) force +[05/19/2026 20:19:41] Blue goal scored, blue score is now 3 +[05/19/2026 20:19:41] Client 16 sent text emote Oops +[05/19/2026 20:19:42] Dedicated match PATCH success: 200 {"ok":true,"id":74} +[05/19/2026 20:19:44] Client 16 sent text emote GG +[05/19/2026 20:19:44] Dedicated match winner PATCH success: 200 {"ok":true,"id":74,"winner_id":10,"economy":{"entry_fee_rc":42,"rc_prize":68,"participant_cc":100}} +[05/19/2026 20:19:44] Client 15 sent emoji emote 3 +[05/19/2026 20:19:48] Rematch requested +[05/19/2026 20:19:56] Rematch was confirmed, closing in 5 secs. new room : +[05/19/2026 20:19:56] {"ok":true,"entry_fee":185,"rc_prize":306,"for_red":{"Players":[{"Name":"King LuLu","LastSeen":1779221996432,"l10_wins":7,"l10_losses":2,"UserId":7,"rc":0.0},{"Name":"Bush","LastSeen":1779221996432,"l10_wins":1,"l10_losses":1,"UserId":10,"rc":0.0}],"GameName":"soccar","Port":26741,"InitTime":1779221996432,"instance_started":true,"match_id":75,"entry_fee":185,"rc_prize":306,"your_team":"red"},"for_blue":{"Players":[{"Name":"King LuLu","LastSeen":1779221996432,"l10_wins":7,"l10_losses":2,"UserId":7,"rc":0.0},{"Name":"Bush","LastSeen":1779221996432,"l10_wins":1,"l10_losses":1,"UserId":10,"rc":0.0}],"GameName":"soccar","Port":26741,"InitTime":1779221996432,"instance_started":true,"match_id":75,"entry_fee":185,"rc_prize":306,"your_team":"blue"},"your_team":""} +[05/19/2026 20:19:56] Mirror server: client disconnected (connId=-1810844937) +[05/19/2026 20:19:56] Active player connections: 1 +[05/19/2026 20:19:56] Mirror server: client disconnected (connId=-1049464720) +[05/19/2026 20:19:56] Active player connections: 0 +[05/19/2026 20:20:01] Server will be closed due to no players in, 60 +[05/19/2026 20:20:11] Server will be closed due to no players in, 50 +[05/19/2026 20:20:21] Server will be closed due to no players in, 40 +[05/19/2026 20:20:31] Server will be closed due to no players in, 30 +[05/19/2026 20:20:41] Server will be closed due to no players in, 20 +[05/19/2026 20:20:51] Server will be closed due to no players in, 10 +[05/19/2026 20:21:01] All players left, exiting +[05/19/2026 20:21:02] Dedicated match PATCH success: 200 {"ok":true,"id":74} diff --git a/games/soccar/soccar_Data/Logs/75.txt b/games/soccar/soccar_Data/Logs/75.txt new file mode 100644 index 0000000..a3ca39c --- /dev/null +++ b/games/soccar/soccar_Data/Logs/75.txt @@ -0,0 +1,100 @@ +[05/19/2026 20:19:58] Starting server at port 26741 +[05/19/2026 20:19:58] Mirror server exception logging enabled +[05/19/2026 20:19:58] Failed to fetch red and blue names, isServer? +[05/19/2026 20:19:58] Starting auto close watchdog +[05/19/2026 20:19:58] Active player connections: 0 +[05/19/2026 20:20:01] Active player connections: 1 +[05/19/2026 20:20:01] Active player connections: 2 +[05/19/2026 20:20:01] Game started On Server +[05/19/2026 20:20:01] Client 15 set team to Red +[05/19/2026 20:20:02] Client 16 set team to Blue +[05/19/2026 20:20:02] Dedicated match PATCH success: 200 {"ok":true,"id":75} +[05/19/2026 20:20:03] Dedicated match PATCH success: 200 {"ok":true,"id":75} +[05/19/2026 20:20:03] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:20:03] launching puck at (0.05, -5.00) with (-3.22, 348.44) force +[05/19/2026 20:20:10] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:20:10] launching puck at (-3.47, 3.60) with (241.51, -251.18) force +[05/19/2026 20:20:15] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:20:15] launching puck at (-1.60, -4.74) with (111.47, 330.14) force +[05/19/2026 20:20:21] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:20:21] launching puck at (-1.63, 4.73) with (113.48, -329.46) force +[05/19/2026 20:20:26] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:20:26] launching puck at (-4.58, -2.01) with (318.96, 140.30) force +[05/19/2026 20:20:32] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:20:32] launching puck at (-3.45, -3.62) with (240.13, 252.51) force +[05/19/2026 20:20:36] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:20:36] launching puck at (1.39, -4.80) with (-96.53, 334.82) force +[05/19/2026 20:20:37] Red goal scored, red score is now 1 +[05/19/2026 20:20:40] Client 16 sent emoji emote 1 +[05/19/2026 20:20:43] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:20:43] launching puck at (-0.07, 5.00) with (4.95, -348.42) force +[05/19/2026 20:20:44] Client 15 sent emoji emote 3 +[05/19/2026 20:20:49] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:20:49] launching puck at (5.00, 0.18) with (-348.23, -12.47) force +[05/19/2026 20:20:57] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:20:57] launching puck at (1.49, 4.77) with (-103.50, -332.73) force +[05/19/2026 20:21:02] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:21:02] launching puck at (4.87, -1.15) with (-339.10, 80.18) force +[05/19/2026 20:21:05] Client 15 sent text emote What a save! +[05/19/2026 20:21:08] Client 16 sent text emote What a save! +[05/19/2026 20:21:10] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:21:10] launching puck at (-3.50, 3.57) with (244.02, -248.75) force +[05/19/2026 20:21:15] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:21:15] launching puck at (-0.50, -4.97) with (35.03, 346.69) force +[05/19/2026 20:21:23] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:21:23] launching puck at (2.23, 4.47) with (-155.64, -311.76) force +[05/19/2026 20:21:28] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:21:28] launching puck at (4.99, -0.27) with (-347.95, 18.78) force +[05/19/2026 20:21:36] force = 70 * 0.8462853 = 59.23997 +[05/19/2026 20:21:36] launching puck at (-2.00, 2.89) with (118.71, -170.91) force +[05/19/2026 20:21:42] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:21:42] launching puck at (-1.90, -4.63) with (132.19, 322.41) force +[05/19/2026 20:21:43] Red goal scored, red score is now 2 +[05/19/2026 20:21:47] Client 16 sent text emote well played +[05/19/2026 20:21:51] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:21:51] launching puck at (1.72, 4.70) with (-119.60, -327.29) force +[05/19/2026 20:21:52] Client 15 sent text emote Thanks! +[05/19/2026 20:22:01] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:22:01] launching puck at (3.27, -3.78) with (-227.83, 263.65) force +[05/19/2026 20:22:06] force = 70 * 0.9798113 = 68.58679 +[05/19/2026 20:22:06] launching puck at (4.79, 0.59) with (-328.47, -40.55) force +[05/19/2026 20:22:12] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:22:12] launching puck at (-1.13, -4.87) with (78.64, 339.46) force +[05/19/2026 20:22:16] Client 15 sent emoji emote 1 +[05/19/2026 20:22:17] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:22:17] launching puck at (-1.73, 4.69) with (120.70, -326.88) force +[05/19/2026 20:22:22] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:22:22] launching puck at (-4.86, -1.19) with (338.37, 83.23) force +[05/19/2026 20:22:29] force = 70 * 0.976148 = 68.33036 +[05/19/2026 20:22:29] launching puck at (1.03, 4.67) with (-70.64, -319.24) force +[05/19/2026 20:22:29] Blue goal scored, blue score is now 1 +[05/19/2026 20:22:32] Client 16 sent emoji emote 2 +[05/19/2026 20:22:35] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:22:35] launching puck at (0.12, -5.00) with (-8.11, 348.36) force +[05/19/2026 20:22:39] Client 15 sent emoji emote 4 +[05/19/2026 20:22:44] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:22:44] launching puck at (1.46, 4.78) with (-101.86, -333.23) force +[05/19/2026 20:22:50] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:22:50] launching puck at (1.46, -4.78) with (-101.40, 333.37) force +[05/19/2026 20:22:54] Client 15 sent emoji emote 4 +[05/19/2026 20:23:01] force = 70 * 0.8836524 = 61.85567 +[05/19/2026 20:23:01] launching puck at (1.05, 3.69) with (-65.23, -228.18) force +[05/19/2026 20:23:06] force = 70 * 0.9955804 = 69.69063 +[05/19/2026 20:23:06] launching puck at (1.65, -4.72) with (-114.77, 329.01) force +[05/19/2026 20:23:07] Red goal scored, red score is now 3 +[05/19/2026 20:23:08] Dedicated match PATCH success: 200 {"ok":true,"id":75} +[05/19/2026 20:23:09] Dedicated match winner PATCH success: 200 {"ok":true,"id":75,"winner_id":7,"economy":{"entry_fee_rc":185,"rc_prize":306,"participant_cc":100}} +[05/19/2026 20:23:10] Client 15 sent emoji emote 2 +[05/19/2026 20:23:10] Client 16 sent text emote well played +[05/19/2026 20:23:18] Mirror server: client disconnected (connId=-1049492887) +[05/19/2026 20:23:18] Active player connections: 1 +[05/19/2026 20:23:38] Mirror server: client disconnected (connId=-1810840722) +[05/19/2026 20:23:38] Active player connections: 0 +[05/19/2026 20:23:43] Server will be closed due to no players in, 60 +[05/19/2026 20:23:53] Server will be closed due to no players in, 50 +[05/19/2026 20:24:03] Server will be closed due to no players in, 40 +[05/19/2026 20:24:13] Server will be closed due to no players in, 30 +[05/19/2026 20:24:23] Server will be closed due to no players in, 20 +[05/19/2026 20:24:33] Server will be closed due to no players in, 10 +[05/19/2026 20:24:43] All players left, exiting +[05/19/2026 20:24:43] Dedicated match PATCH success: 200 {"ok":true,"id":75} diff --git a/games/soccar/soccar_Data/Logs/76.txt b/games/soccar/soccar_Data/Logs/76.txt new file mode 100644 index 0000000..ecf0bfb --- /dev/null +++ b/games/soccar/soccar_Data/Logs/76.txt @@ -0,0 +1,96 @@ +[05/20/2026 07:08:48] Starting server at port 26725 +[05/20/2026 07:08:48] Mirror server exception logging enabled +[05/20/2026 07:08:48] Failed to fetch red and blue names, isServer? +[05/20/2026 07:08:48] Starting auto close watchdog +[05/20/2026 07:08:48] Active player connections: 0 +[05/20/2026 07:08:51] Active player connections: 1 +[05/20/2026 07:08:51] Client 15 set team to Blue +[05/20/2026 07:08:51] Active player connections: 2 +[05/20/2026 07:08:51] Game started On Server +[05/20/2026 07:08:52] Client 16 set team to Red +[05/20/2026 07:08:52] Dedicated match PATCH success: 200 {"ok":true,"id":76} +[05/20/2026 07:08:53] Dedicated match PATCH success: 200 {"ok":true,"id":76} +[05/20/2026 07:08:54] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:08:54] launching puck at (0.12, -5.00) with (-8.07, 348.36) force +[05/20/2026 07:09:00] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:09:00] launching puck at (1.21, -4.85) with (-83.99, 338.18) force +[05/20/2026 07:09:01] Red goal scored, red score is now 1 +[05/20/2026 07:09:07] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:09:07] launching puck at (-0.27, 4.99) with (18.86, -347.94) force +[05/20/2026 07:09:11] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:09:11] launching puck at (4.73, -1.62) with (-329.64, 112.95) force +[05/20/2026 07:09:18] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:09:18] launching puck at (-0.90, 4.92) with (62.81, -342.75) force +[05/20/2026 07:09:24] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:09:24] launching puck at (-4.66, -1.81) with (324.94, 125.82) force +[05/20/2026 07:09:36] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:09:36] launching puck at (-1.38, 4.81) with (96.29, -334.89) force +[05/20/2026 07:09:42] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:09:42] launching puck at (-2.84, 4.11) with (198.04, -286.70) force +[05/20/2026 07:09:42] Blue goal scored, blue score is now 1 +[05/20/2026 07:09:47] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:09:47] launching puck at (0.10, -5.00) with (-7.22, 348.38) force +[05/20/2026 07:09:55] force = 70 * 0.9607157 = 67.2501 +[05/20/2026 07:09:55] launching puck at (4.14, 2.05) with (-278.14, -137.83) force +[05/20/2026 07:10:02] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:10:02] launching puck at (4.18, -2.74) with (-291.36, 191.13) force +[05/20/2026 07:10:07] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:10:07] launching puck at (4.01, 2.99) with (-279.12, -208.59) force +[05/20/2026 07:10:14] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:10:14] launching puck at (2.61, -4.26) with (-182.10, 297.09) force +[05/20/2026 07:10:21] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:10:21] launching puck at (-0.09, 5.00) with (6.06, -348.40) force +[05/20/2026 07:10:26] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:10:26] launching puck at (-4.60, -1.95) with (320.74, 136.18) force +[05/20/2026 07:10:31] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:10:31] launching puck at (-0.83, 4.93) with (57.80, -343.63) force +[05/20/2026 07:10:37] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:10:37] launching puck at (-3.25, -3.80) with (226.23, 265.02) force +[05/20/2026 07:10:43] force = 70 * 0.990768 = 69.35376 +[05/20/2026 07:10:43] launching puck at (-2.51, 4.26) with (173.98, -295.69) force +[05/20/2026 07:10:48] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:10:48] launching puck at (-0.30, 4.99) with (21.00, -347.82) force +[05/20/2026 07:10:53] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:10:53] launching puck at (-1.22, 4.85) with (84.79, -337.98) force +[05/20/2026 07:11:00] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:11:00] launching puck at (-1.21, 4.85) with (84.20, -338.13) force +[05/20/2026 07:11:04] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:11:04] launching puck at (-1.96, 4.60) with (136.42, -320.64) force +[05/20/2026 07:11:10] force = 70 * 0.6991951 = 48.94366 +[05/20/2026 07:11:10] launching puck at (-1.68, -1.88) with (82.44, 92.24) force +[05/20/2026 07:11:16] force = 70 * 0.9912959 = 69.39071 +[05/20/2026 07:11:16] launching puck at (4.03, 2.88) with (-279.46, -200.02) force +[05/20/2026 07:11:21] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:11:21] launching puck at (-0.65, 4.96) with (45.51, -345.47) force +[05/20/2026 07:11:21] Blue goal scored, blue score is now 2 +[05/20/2026 07:11:26] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:11:26] launching puck at (-0.05, -5.00) with (3.42, 348.44) force +[05/20/2026 07:11:34] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:11:34] launching puck at (-1.49, 4.77) with (103.69, -332.67) force +[05/20/2026 07:11:41] force = 70 * 0.9541805 = 66.79263 +[05/20/2026 07:11:41] launching puck at (-0.93, -4.45) with (62.03, 297.16) force +[05/20/2026 07:11:42] Red goal scored, red score is now 2 +[05/20/2026 07:11:50] force = 70 * 0.5714781 = 40.00346 +[05/20/2026 07:11:50] launching puck at (-0.29, -1.88) with (11.56, 75.21) force +[05/20/2026 07:11:54] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:11:54] launching puck at (-0.04, -5.00) with (2.98, 348.44) force +[05/20/2026 07:12:04] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:12:04] launching puck at (-2.09, 4.54) with (145.60, -316.58) force +[05/20/2026 07:12:05] Blue goal scored, blue score is now 3 +[05/20/2026 07:12:06] Dedicated match PATCH success: 200 {"ok":true,"id":76} +[05/20/2026 07:12:08] Dedicated match winner PATCH success: 200 {"ok":true,"id":76,"winner_id":7,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/20/2026 07:12:16] Rematch requested +[05/20/2026 07:12:22] Rematch was confirmed, closing in 5 secs. new room : +[05/20/2026 07:12:22] {"ok":true,"entry_fee":259,"rc_prize":428,"for_red":{"Players":[{"Name":"choel","LastSeen":1779261142760,"l10_wins":0,"l10_losses":4,"UserId":9,"rc":0.0},{"Name":"King LuLu","LastSeen":1779261142760,"l10_wins":8,"l10_losses":1,"UserId":7,"rc":0.0}],"GameName":"soccar","Port":26258,"InitTime":1779261142760,"instance_started":true,"match_id":77,"entry_fee":259,"rc_prize":428,"your_team":"red"},"for_blue":{"Players":[{"Name":"choel","LastSeen":1779261142760,"l10_wins":0,"l10_losses":4,"UserId":9,"rc":0.0},{"Name":"King LuLu","LastSeen":1779261142760,"l10_wins":8,"l10_losses":1,"UserId":7,"rc":0.0}],"GameName":"soccar","Port":26258,"InitTime":1779261142760,"instance_started":true,"match_id":77,"entry_fee":259,"rc_prize":428,"your_team":"blue"},"your_team":""} +[05/20/2026 07:12:23] Mirror server: client disconnected (connId=-1479577995) +[05/20/2026 07:12:23] Active player connections: 1 +[05/20/2026 07:12:23] Mirror server: client disconnected (connId=-1479577996) +[05/20/2026 07:12:23] Active player connections: 0 +[05/20/2026 07:12:28] Server will be closed due to no players in, 60 +[05/20/2026 07:12:38] Server will be closed due to no players in, 50 +[05/20/2026 07:12:48] Server will be closed due to no players in, 40 +[05/20/2026 07:12:58] Server will be closed due to no players in, 30 +[05/20/2026 07:13:08] Server will be closed due to no players in, 20 +[05/20/2026 07:13:18] Server will be closed due to no players in, 10 +[05/20/2026 07:13:28] All players left, exiting +[05/20/2026 07:13:28] Dedicated match PATCH success: 200 {"ok":true,"id":76} diff --git a/games/soccar/soccar_Data/Logs/77.txt b/games/soccar/soccar_Data/Logs/77.txt new file mode 100644 index 0000000..f729471 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/77.txt @@ -0,0 +1,148 @@ +[05/20/2026 07:12:24] Starting server at port 26258 +[05/20/2026 07:12:24] Mirror server exception logging enabled +[05/20/2026 07:12:24] Failed to fetch red and blue names, isServer? +[05/20/2026 07:12:24] Starting auto close watchdog +[05/20/2026 07:12:24] Active player connections: 0 +[05/20/2026 07:12:28] Active player connections: 1 +[05/20/2026 07:12:28] Active player connections: 2 +[05/20/2026 07:12:28] Game started On Server +[05/20/2026 07:12:28] Client 15 set team to Red +[05/20/2026 07:12:28] Client 16 set team to Blue +[05/20/2026 07:12:29] Dedicated match PATCH success: 200 {"ok":true,"id":77} +[05/20/2026 07:12:29] Dedicated match PATCH success: 200 {"ok":true,"id":77} +[05/20/2026 07:12:31] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:12:31] launching puck at (0.17, -5.00) with (-11.63, 348.26) force +[05/20/2026 07:12:37] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:12:37] launching puck at (-3.69, 3.37) with (257.40, -234.88) force +[05/20/2026 07:12:43] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:12:43] launching puck at (-3.46, -3.61) with (241.04, 251.63) force +[05/20/2026 07:12:51] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:12:51] launching puck at (-1.53, 4.76) with (106.55, -331.76) force +[05/20/2026 07:13:02] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:13:02] launching puck at (-1.65, -4.72) with (114.83, 328.99) force +[05/20/2026 07:13:07] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:13:07] launching puck at (-1.47, 4.78) with (102.72, -332.97) force +[05/20/2026 07:13:15] force = 70 * 0.8036946 = 56.25862 +[05/20/2026 07:13:15] launching puck at (-1.68, 2.71) with (94.30, -152.37) force +[05/20/2026 07:13:23] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:13:23] launching puck at (-1.46, 4.78) with (101.62, -333.31) force +[05/20/2026 07:13:27] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:13:27] launching puck at (-5.00, -0.20) with (348.18, 13.76) force +[05/20/2026 07:13:32] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:13:32] launching puck at (-3.33, 3.73) with (231.95, -260.04) force +[05/20/2026 07:13:37] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:13:37] launching puck at (-4.97, 0.53) with (346.52, -36.70) force +[05/20/2026 07:13:43] force = 70 * 0.8667892 = 60.67525 +[05/20/2026 07:13:43] launching puck at (1.45, 3.39) with (-88.23, -205.51) force +[05/20/2026 07:13:43] Blue goal scored, blue score is now 1 +[05/20/2026 07:13:49] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:13:49] launching puck at (0.04, -5.00) with (-2.65, 348.44) force +[05/20/2026 07:13:57] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:13:57] launching puck at (0.68, 4.95) with (-47.52, -345.20) force +[05/20/2026 07:14:07] force = 70 * 0.9955803 = 69.69062 +[05/20/2026 07:14:07] launching puck at (2.59, 4.28) with (-180.25, -298.21) force +[05/20/2026 07:14:13] force = 70 * 0.9011126 = 63.07788 +[05/20/2026 07:14:13] launching puck at (1.60, 3.67) with (-100.93, -231.29) force +[05/20/2026 07:14:19] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:14:19] launching puck at (2.46, -4.35) with (-171.64, 303.25) force +[05/20/2026 07:14:25] force = 70 * 0.9856336 = 68.99435 +[05/20/2026 07:14:25] launching puck at (4.89, -0.03) with (-337.37, 2.21) force +[05/20/2026 07:14:32] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:14:32] launching puck at (1.22, -4.85) with (-84.75, 337.99) force +[05/20/2026 07:14:37] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:14:37] launching puck at (1.68, 4.71) with (-117.11, -328.18) force +[05/20/2026 07:14:42] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:14:42] launching puck at (-0.71, -4.95) with (49.38, 344.94) force +[05/20/2026 07:14:52] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:14:52] launching puck at (3.85, -3.19) with (-268.15, 222.52) force +[05/20/2026 07:14:57] force = 70 * 0.8012667 = 56.08867 +[05/20/2026 07:14:57] launching puck at (-3.10, 0.66) with (173.83, -36.74) force +[05/20/2026 07:15:01] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:15:01] launching puck at (1.81, -4.66) with (-126.17, 324.81) force +[05/20/2026 07:15:06] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:15:06] launching puck at (0.00, -5.00) with (0.00, 348.45) force +[05/20/2026 07:15:13] force = 70 * 0.8105921 = 56.74145 +[05/20/2026 07:15:13] launching puck at (3.00, -1.20) with (-170.40, 68.30) force +[05/20/2026 07:15:20] force = 70 * 0.6776016 = 47.43211 +[05/20/2026 07:15:20] launching puck at (1.76, -1.65) with (-83.34, 78.35) force +[05/20/2026 07:15:27] force = 70 * 0.8810639 = 61.67448 +[05/20/2026 07:15:27] launching puck at (-3.53, -1.45) with (217.52, 89.39) force +[05/20/2026 07:15:31] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:15:31] launching puck at (4.92, -0.91) with (-342.61, 63.56) force +[05/20/2026 07:15:31] Red goal scored, red score is now 1 +[05/20/2026 07:15:38] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:15:38] launching puck at (-0.27, 4.99) with (18.61, -347.96) force +[05/20/2026 07:15:43] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:15:43] launching puck at (4.47, -2.23) with (-311.83, 155.50) force +[05/20/2026 07:15:52] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:15:52] launching puck at (3.83, 3.21) with (-266.88, -224.04) force +[05/20/2026 07:15:57] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:15:57] launching puck at (1.80, -4.67) with (-125.32, 325.14) force +[05/20/2026 07:16:03] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:16:03] launching puck at (2.72, 4.19) with (-189.83, -292.21) force +[05/20/2026 07:16:08] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:16:08] launching puck at (4.19, -2.73) with (-291.73, 190.56) force +[05/20/2026 07:16:16] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:16:16] launching puck at (-1.44, 4.79) with (100.06, -333.78) force +[05/20/2026 07:16:21] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:16:21] launching puck at (-4.41, -2.35) with (307.57, 163.77) force +[05/20/2026 07:16:33] force = 70 * 0.9595528 = 67.16869 +[05/20/2026 07:16:33] launching puck at (-4.59, 0.36) with (308.22, -24.40) force +[05/20/2026 07:16:37] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:16:37] launching puck at (2.83, -4.12) with (-197.39, 287.15) force +[05/20/2026 07:16:42] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:16:42] launching puck at (-0.48, 4.98) with (33.69, -346.82) force +[05/20/2026 07:16:49] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:16:49] launching puck at (0.02, 5.00) with (-1.26, -348.45) force +[05/20/2026 07:17:03] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:17:03] launching puck at (2.25, -4.46) with (-157.06, 311.05) force +[05/20/2026 07:17:15] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:17:15] launching puck at (2.30, 4.44) with (-160.54, -309.27) force +[05/20/2026 07:17:20] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:17:20] launching puck at (0.10, 5.00) with (-7.07, -348.38) force +[05/20/2026 07:17:24] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:17:24] launching puck at (4.95, 0.72) with (-344.82, -50.18) force +[05/20/2026 07:17:30] force = 70 * 0.9006382 = 63.04467 +[05/20/2026 07:17:30] launching puck at (2.71, 2.94) with (-170.87, -185.13) force +[05/20/2026 07:17:41] force = 70 * 0.8192726 = 57.34908 +[05/20/2026 07:17:41] launching puck at (-1.49, 2.95) with (85.20, -169.00) force +[05/20/2026 07:17:46] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:17:46] launching puck at (-0.43, 4.98) with (29.96, -347.16) force +[05/20/2026 07:17:48] Blue goal scored, blue score is now 2 +[05/20/2026 07:17:53] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:17:53] launching puck at (0.12, -5.00) with (-8.41, 348.35) force +[05/20/2026 07:18:00] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:18:00] launching puck at (-5.00, 0.18) with (348.24, -12.20) force +[05/20/2026 07:18:07] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:18:07] launching puck at (-2.00, -4.58) with (139.70, 319.22) force +[05/20/2026 07:18:11] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:18:11] launching puck at (2.54, 4.30) with (-177.24, -300.01) force +[05/20/2026 07:18:26] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:18:26] launching puck at (0.50, -4.98) with (-34.76, 346.72) force +[05/20/2026 07:18:26] Red goal scored, red score is now 2 +[05/20/2026 07:18:31] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:18:31] launching puck at (0.18, 5.00) with (-12.78, -348.22) force +[05/20/2026 07:18:38] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:18:38] launching puck at (-4.64, -1.85) with (323.59, 129.26) force +[05/20/2026 07:18:45] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:18:45] launching puck at (3.81, 3.24) with (-265.40, -225.79) force +[05/20/2026 07:18:54] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:18:54] launching puck at (4.64, -1.85) with (-323.61, 129.21) force +[05/20/2026 07:18:55] Red goal scored, red score is now 3 +[05/20/2026 07:18:56] Dedicated match PATCH success: 200 {"ok":true,"id":77} +[05/20/2026 07:18:58] Dedicated match winner PATCH success: 200 {"ok":true,"id":77,"winner_id":9,"economy":{"entry_fee_rc":259,"rc_prize":428,"participant_cc":100}} +[05/20/2026 07:19:14] Rematch requested +[05/20/2026 07:19:25] Rematch was confirmed, closing in 5 secs. new room : +[05/20/2026 07:19:25] {"ok":true,"entry_fee":428,"rc_prize":710,"for_red":{"Players":[{"Name":"choel","LastSeen":1779261565960,"l10_wins":1,"l10_losses":4,"UserId":9,"rc":0.0},{"Name":"King LuLu","LastSeen":1779261565960,"l10_wins":7,"l10_losses":2,"UserId":7,"rc":0.0}],"GameName":"soccar","Port":26602,"InitTime":1779261565960,"instance_started":true,"match_id":78,"entry_fee":428,"rc_prize":710,"your_team":"red"},"for_blue":{"Players":[{"Name":"choel","LastSeen":1779261565960,"l10_wins":1,"l10_losses":4,"UserId":9,"rc":0.0},{"Name":"King LuLu","LastSeen":1779261565960,"l10_wins":7,"l10_losses":2,"UserId":7,"rc":0.0}],"GameName":"soccar","Port":26602,"InitTime":1779261565960,"instance_started":true,"match_id":78,"entry_fee":428,"rc_prize":710,"your_team":"blue"},"your_team":""} +[05/20/2026 07:19:26] Mirror server: client disconnected (connId=-1479577746) +[05/20/2026 07:19:26] Active player connections: 1 +[05/20/2026 07:19:26] Mirror server: client disconnected (connId=-1479577745) +[05/20/2026 07:19:26] Active player connections: 0 +[05/20/2026 07:19:31] Server will be closed due to no players in, 60 +[05/20/2026 07:19:41] Server will be closed due to no players in, 50 +[05/20/2026 07:19:51] Server will be closed due to no players in, 40 +[05/20/2026 07:20:01] Server will be closed due to no players in, 30 +[05/20/2026 07:20:11] Server will be closed due to no players in, 20 +[05/20/2026 07:20:21] Server will be closed due to no players in, 10 +[05/20/2026 07:20:31] All players left, exiting +[05/20/2026 07:20:31] Dedicated match PATCH success: 200 {"ok":true,"id":77} diff --git a/games/soccar/soccar_Data/Logs/78.txt b/games/soccar/soccar_Data/Logs/78.txt new file mode 100644 index 0000000..9aaa1ef --- /dev/null +++ b/games/soccar/soccar_Data/Logs/78.txt @@ -0,0 +1,98 @@ +[05/20/2026 07:19:27] Starting server at port 26602 +[05/20/2026 07:19:27] Mirror server exception logging enabled +[05/20/2026 07:19:27] Failed to fetch red and blue names, isServer? +[05/20/2026 07:19:27] Starting auto close watchdog +[05/20/2026 07:19:27] Active player connections: 0 +[05/20/2026 07:19:30] Active player connections: 1 +[05/20/2026 07:19:31] Active player connections: 2 +[05/20/2026 07:19:31] Game started On Server +[05/20/2026 07:19:31] Client 15 set team to Red +[05/20/2026 07:19:31] Client 16 set team to Blue +[05/20/2026 07:19:31] Dedicated match PATCH success: 200 {"ok":true,"id":78} +[05/20/2026 07:19:31] Dedicated match PATCH success: 200 {"ok":true,"id":78} +[05/20/2026 07:19:33] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:19:33] launching puck at (-0.01, -5.00) with (0.49, 348.45) force +[05/20/2026 07:19:41] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:19:41] launching puck at (-2.56, 4.29) with (178.73, -299.12) force +[05/20/2026 07:19:51] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:19:51] launching puck at (-1.13, -4.87) with (78.53, 339.49) force +[05/20/2026 07:19:56] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:19:56] launching puck at (-4.63, -1.89) with (322.62, 131.66) force +[05/20/2026 07:20:00] force = 70 * 0.7026772 = 49.1874 +[05/20/2026 07:20:00] launching puck at (2.16, -1.35) with (-106.12, 66.57) force +[05/20/2026 07:20:01] Red goal scored, red score is now 1 +[05/20/2026 07:20:07] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:20:07] launching puck at (-0.03, 5.00) with (2.34, -348.45) force +[05/20/2026 07:20:14] force = 70 * 0.9811175 = 68.67822 +[05/20/2026 07:20:14] launching puck at (3.08, 3.74) with (-211.21, -256.67) force +[05/20/2026 07:20:19] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:20:19] launching puck at (1.87, 4.64) with (-130.61, -323.05) force +[05/20/2026 07:20:28] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:20:28] launching puck at (4.66, 1.80) with (-325.06, -125.53) force +[05/20/2026 07:20:38] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:20:38] launching puck at (0.87, 4.92) with (-60.34, -343.19) force +[05/20/2026 07:20:39] Blue goal scored, blue score is now 1 +[05/20/2026 07:20:45] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:20:45] launching puck at (0.04, -5.00) with (-2.82, 348.44) force +[05/20/2026 07:20:55] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:20:55] launching puck at (2.33, 4.43) with (-162.14, -308.43) force +[05/20/2026 07:20:56] Blue goal scored, blue score is now 2 +[05/20/2026 07:21:01] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:21:01] launching puck at (0.11, -5.00) with (-7.32, 348.38) force +[05/20/2026 07:21:10] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:21:10] launching puck at (0.65, 4.96) with (-45.37, -345.49) force +[05/20/2026 07:21:16] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:21:16] launching puck at (3.32, -3.74) with (-231.29, 260.62) force +[05/20/2026 07:21:21] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:21:21] launching puck at (-0.99, 4.90) with (68.73, -341.61) force +[05/20/2026 07:21:26] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:21:26] launching puck at (1.73, -4.69) with (-120.65, 326.90) force +[05/20/2026 07:21:31] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:21:31] launching puck at (3.81, 3.24) with (-265.36, -225.84) force +[05/20/2026 07:21:41] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:21:41] launching puck at (3.38, -3.69) with (-235.41, 256.91) force +[05/20/2026 07:21:46] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:21:46] launching puck at (-0.59, -4.96) with (41.43, 345.98) force +[05/20/2026 07:21:51] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:21:51] launching puck at (3.74, -3.32) with (-260.69, 231.21) force +[05/20/2026 07:22:00] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:22:00] launching puck at (-4.30, 2.55) with (299.88, -177.46) force +[05/20/2026 07:22:05] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:22:05] launching puck at (-4.32, -2.52) with (300.82, 175.86) force +[05/20/2026 07:22:14] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:22:14] launching puck at (-3.95, 3.07) with (275.02, -213.97) force +[05/20/2026 07:22:19] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:22:19] launching puck at (-3.56, -3.51) with (248.19, 244.59) force +[05/20/2026 07:22:24] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:22:24] launching puck at (-4.46, 2.27) with (310.62, -157.91) force +[05/20/2026 07:22:39] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:22:39] launching puck at (0.25, 4.99) with (-17.45, -348.02) force +[05/20/2026 07:22:44] force = 70 * 0.8982852 = 62.87996 +[05/20/2026 07:22:44] launching puck at (-2.14, 3.35) with (134.67, -210.46) force +[05/20/2026 07:22:50] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:22:50] launching puck at (4.77, -1.49) with (-332.69, 103.63) force +[05/20/2026 07:22:58] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:22:58] launching puck at (2.46, 4.35) with (-171.76, -303.18) force +[05/20/2026 07:23:04] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:23:04] launching puck at (-5.00, -0.04) with (348.44, 3.01) force +[05/20/2026 07:23:10] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:23:10] launching puck at (-1.51, 4.77) with (104.93, -332.28) force +[05/20/2026 07:23:19] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:23:19] launching puck at (-2.85, -4.11) with (198.40, 286.46) force +[05/20/2026 07:23:24] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:23:24] launching puck at (-4.08, 2.89) with (284.47, -201.23) force +[05/20/2026 07:23:25] Blue goal scored, blue score is now 3 +[05/20/2026 07:23:26] Dedicated match PATCH success: 200 {"ok":true,"id":78} +[05/20/2026 07:23:28] Dedicated match winner PATCH success: 200 {"ok":true,"id":78,"winner_id":7,"economy":{"entry_fee_rc":428,"rc_prize":710,"participant_cc":100}} +[05/20/2026 07:23:51] Mirror server: client disconnected (connId=-1479579418) +[05/20/2026 07:23:51] Active player connections: 1 +[05/20/2026 07:23:56] Mirror server: client disconnected (connId=-1479579419) +[05/20/2026 07:23:56] Active player connections: 0 +[05/20/2026 07:24:01] Server will be closed due to no players in, 60 +[05/20/2026 07:24:11] Server will be closed due to no players in, 50 +[05/20/2026 07:24:21] Server will be closed due to no players in, 40 +[05/20/2026 07:24:31] Server will be closed due to no players in, 30 +[05/20/2026 07:24:41] Server will be closed due to no players in, 20 +[05/20/2026 07:24:51] Server will be closed due to no players in, 10 +[05/20/2026 07:25:01] All players left, exiting +[05/20/2026 07:25:02] Dedicated match PATCH success: 200 {"ok":true,"id":78} diff --git a/games/soccar/soccar_Data/Logs/79.txt b/games/soccar/soccar_Data/Logs/79.txt new file mode 100644 index 0000000..c8857f5 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/79.txt @@ -0,0 +1,98 @@ +[05/20/2026 07:29:39] Starting server at port 26761 +[05/20/2026 07:29:39] Mirror server exception logging enabled +[05/20/2026 07:29:39] Failed to fetch red and blue names, isServer? +[05/20/2026 07:29:39] Starting auto close watchdog +[05/20/2026 07:29:39] Active player connections: 0 +[05/20/2026 07:29:42] Active player connections: 1 +[05/20/2026 07:29:42] Client 15 set team to Blue +[05/20/2026 07:29:42] Dedicated match PATCH success: 200 {"ok":true,"id":79} +[05/20/2026 07:29:43] Active player connections: 2 +[05/20/2026 07:29:43] Game started On Server +[05/20/2026 07:29:43] Client 16 set team to Red +[05/20/2026 07:29:43] Dedicated match PATCH success: 200 {"ok":true,"id":79} +[05/20/2026 07:29:45] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:29:45] launching puck at (-0.07, -5.00) with (5.19, 348.41) force +[05/20/2026 07:29:51] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:29:51] launching puck at (0.16, 5.00) with (-11.17, -348.27) force +[05/20/2026 07:29:57] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:29:57] launching puck at (3.45, -3.62) with (-240.20, 252.44) force +[05/20/2026 07:30:05] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:30:05] launching puck at (2.96, 4.03) with (-206.26, -280.85) force +[05/20/2026 07:30:11] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:30:11] launching puck at (4.86, -1.17) with (-338.79, 81.51) force +[05/20/2026 07:30:18] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:30:18] launching puck at (1.43, 4.79) with (-99.39, -333.98) force +[05/20/2026 07:30:23] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:30:23] launching puck at (4.99, 0.25) with (-348.03, -17.18) force +[05/20/2026 07:30:28] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:30:28] launching puck at (-0.68, 4.95) with (47.41, -345.21) force +[05/20/2026 07:30:33] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:30:33] launching puck at (1.84, -4.65) with (-128.06, 324.07) force +[05/20/2026 07:30:44] force = 70 * 0.8743265 = 61.20285 +[05/20/2026 07:30:44] launching puck at (2.92, 2.35) with (-178.94, -143.96) force +[05/20/2026 07:30:48] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:30:48] launching puck at (1.56, -4.75) with (-108.98, 330.97) force +[05/20/2026 07:31:04] force = 70 * 0.9928275 = 69.49792 +[05/20/2026 07:31:04] launching puck at (-0.53, -4.94) with (36.73, 343.41) force +[05/20/2026 07:31:10] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:31:10] launching puck at (2.33, -4.42) with (-162.24, 308.38) force +[05/20/2026 07:31:10] Red goal scored, red score is now 1 +[05/20/2026 07:31:15] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:31:15] launching puck at (-0.10, 5.00) with (7.04, -348.38) force +[05/20/2026 07:31:21] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:31:21] launching puck at (-0.39, -4.98) with (27.33, 347.38) force +[05/20/2026 07:31:26] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:31:26] launching puck at (0.09, 5.00) with (-6.59, -348.39) force +[05/20/2026 07:31:26] Blue goal scored, blue score is now 1 +[05/20/2026 07:31:31] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:31:31] launching puck at (-0.04, -5.00) with (2.52, 348.44) force +[05/20/2026 07:31:37] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:31:37] launching puck at (-1.48, 4.78) with (102.85, -332.93) force +[05/20/2026 07:31:49] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:31:49] launching puck at (-1.34, -4.82) with (93.66, 335.63) force +[05/20/2026 07:31:57] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:31:57] launching puck at (1.34, -4.82) with (-93.62, 335.64) force +[05/20/2026 07:32:07] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:32:07] launching puck at (1.15, -4.87) with (-80.18, 339.10) force +[05/20/2026 07:32:13] force = 70 * 0.6331509 = 44.32056 +[05/20/2026 07:32:13] launching puck at (-0.52, -2.13) with (22.92, 94.28) force +[05/20/2026 07:32:23] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:32:23] launching puck at (3.47, -3.60) with (-242.12, 250.59) force +[05/20/2026 07:32:31] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:32:31] launching puck at (-4.53, 2.11) with (315.76, -147.36) force +[05/20/2026 07:32:41] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:32:41] launching puck at (4.93, 0.86) with (-343.30, -59.68) force +[05/20/2026 07:32:50] force = 70 * 0.8694073 = 60.85851 +[05/20/2026 07:32:50] launching puck at (0.80, -3.62) with (-48.84, 220.37) force +[05/20/2026 07:32:55] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:32:55] launching puck at (-2.70, -4.21) with (187.87, 293.47) force +[05/20/2026 07:32:55] Red goal scored, red score is now 2 +[05/20/2026 07:33:00] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:33:00] launching puck at (-0.01, 5.00) with (1.03, -348.45) force +[05/20/2026 07:33:06] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:33:06] launching puck at (-1.31, -4.82) with (91.43, 336.25) force +[05/20/2026 07:33:20] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:33:20] launching puck at (-2.18, 4.50) with (152.20, -313.46) force +[05/20/2026 07:33:27] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:33:27] launching puck at (-3.53, -3.54) with (245.85, 246.93) force +[05/20/2026 07:33:36] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:33:36] launching puck at (4.95, 0.73) with (-344.68, -51.13) force +[05/20/2026 07:33:41] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:33:41] launching puck at (0.38, -4.99) with (-26.22, 347.47) force +[05/20/2026 07:33:41] Red goal scored, red score is now 3 +[05/20/2026 07:33:42] Dedicated match PATCH success: 200 {"ok":true,"id":79} +[05/20/2026 07:33:44] Dedicated match winner PATCH success: 200 {"ok":true,"id":79,"winner_id":7,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/20/2026 07:33:49] Rematch requested +[05/20/2026 07:33:54] Rematch was confirmed, closing in 5 secs. new room : +[05/20/2026 07:33:54] {"ok":true,"entry_fee":479,"rc_prize":794,"for_red":{"Players":[{"Name":"King LuLu","LastSeen":1779262434520,"l10_wins":7,"l10_losses":2,"UserId":7,"rc":0.0},{"Name":"choel","LastSeen":1779262434520,"l10_wins":1,"l10_losses":6,"UserId":9,"rc":0.0}],"GameName":"soccar","Port":26756,"InitTime":1779262434520,"instance_started":true,"match_id":80,"entry_fee":479,"rc_prize":794,"your_team":"red"},"for_blue":{"Players":[{"Name":"King LuLu","LastSeen":1779262434520,"l10_wins":7,"l10_losses":2,"UserId":7,"rc":0.0},{"Name":"choel","LastSeen":1779262434520,"l10_wins":1,"l10_losses":6,"UserId":9,"rc":0.0}],"GameName":"soccar","Port":26756,"InitTime":1779262434520,"instance_started":true,"match_id":80,"entry_fee":479,"rc_prize":794,"your_team":"blue"},"your_team":""} +[05/20/2026 07:33:54] Mirror server: client disconnected (connId=-1479578917) +[05/20/2026 07:33:54] Mirror server: client disconnected (connId=-1479578972) +[05/20/2026 07:33:54] Active player connections: 0 +[05/20/2026 07:33:59] Server will be closed due to no players in, 60 +[05/20/2026 07:34:09] Server will be closed due to no players in, 50 +[05/20/2026 07:34:19] Server will be closed due to no players in, 40 +[05/20/2026 07:34:29] Server will be closed due to no players in, 30 +[05/20/2026 07:34:39] Server will be closed due to no players in, 20 +[05/20/2026 07:34:49] Server will be closed due to no players in, 10 +[05/20/2026 07:34:59] All players left, exiting +[05/20/2026 07:35:00] Dedicated match PATCH success: 200 {"ok":true,"id":79} diff --git a/games/soccar/soccar_Data/Logs/8.txt b/games/soccar/soccar_Data/Logs/8.txt new file mode 100644 index 0000000..9c377f1 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/8.txt @@ -0,0 +1,24 @@ +[05/16/2026 05:28:05] Starting server at port 26095 +[05/16/2026 05:28:05] Failed to fetch red and blue names, isServer? +[05/16/2026 05:28:05] Starting auto close watchdog +[05/16/2026 05:28:05] Active player connections: 0 +[05/16/2026 05:28:09] Active player connections: 1 +[05/16/2026 05:28:09] Client 15 set team to Blue +[05/16/2026 05:28:09] Dedicated match PATCH success: 200 {"ok":true,"id":8} +[05/16/2026 05:28:11] Active player connections: 2 +[05/16/2026 05:28:11] Game started On Server +[05/16/2026 05:28:12] Client 16 set team to Blue +[05/16/2026 05:28:28] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:28:28] launching puck at (-0.27, 4.99) with (18.83, -347.94) force +[05/16/2026 05:28:29] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:28:29] launching puck at (0.01, 5.00) with (-0.53, -348.45) force +[05/16/2026 05:28:29] Active player connections: 1 +[05/16/2026 05:28:45] Active player connections: 0 +[05/16/2026 05:28:50] Server will be closed due to no players in, 60 +[05/16/2026 05:29:00] Server will be closed due to no players in, 50 +[05/16/2026 05:29:10] Server will be closed due to no players in, 40 +[05/16/2026 05:29:20] Server will be closed due to no players in, 30 +[05/16/2026 05:29:30] Server will be closed due to no players in, 20 +[05/16/2026 05:29:40] Server will be closed due to no players in, 10 +[05/16/2026 05:29:50] All players left, exiting +[05/16/2026 05:29:50] Dedicated match PATCH success: 200 {"ok":true,"id":8} diff --git a/games/soccar/soccar_Data/Logs/80.txt b/games/soccar/soccar_Data/Logs/80.txt new file mode 100644 index 0000000..9c10732 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/80.txt @@ -0,0 +1,86 @@ +[05/20/2026 07:33:55] Starting server at port 26756 +[05/20/2026 07:33:55] Mirror server exception logging enabled +[05/20/2026 07:33:55] Failed to fetch red and blue names, isServer? +[05/20/2026 07:33:55] Starting auto close watchdog +[05/20/2026 07:33:55] Active player connections: 0 +[05/20/2026 07:33:59] Active player connections: 2 +[05/20/2026 07:33:59] Game started On Server +[05/20/2026 07:33:59] Client 15 set team to Red +[05/20/2026 07:33:59] Client 16 set team to Blue +[05/20/2026 07:34:00] Dedicated match PATCH success: 200 {"ok":true,"id":80} +[05/20/2026 07:34:00] Dedicated match PATCH success: 200 {"ok":true,"id":80} +[05/20/2026 07:34:03] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:34:03] launching puck at (0.09, -5.00) with (-6.34, 348.40) force +[05/20/2026 07:34:09] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:34:09] launching puck at (2.75, -4.18) with (-191.70, 290.98) force +[05/20/2026 07:34:17] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:34:17] launching puck at (4.92, -0.92) with (-342.54, 63.92) force +[05/20/2026 07:34:26] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:34:26] launching puck at (-3.13, -3.90) with (218.11, 271.75) force +[05/20/2026 07:34:33] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:34:33] launching puck at (-0.17, -5.00) with (12.07, 348.24) force +[05/20/2026 07:34:34] Red goal scored, red score is now 1 +[05/20/2026 07:34:40] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:34:40] launching puck at (0.00, 5.00) with (-0.22, -348.45) force +[05/20/2026 07:34:47] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:34:47] launching puck at (-2.16, 4.51) with (150.50, -314.28) force +[05/20/2026 07:34:55] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:34:55] launching puck at (-1.64, 4.72) with (114.61, -329.06) force +[05/20/2026 07:35:06] force = 70 * 0.8397734 = 58.78414 +[05/20/2026 07:35:06] launching puck at (3.46, -0.14) with (-203.23, 8.10) force +[05/20/2026 07:35:11] force = 70 * 0.9950262 = 69.65183 +[05/20/2026 07:35:11] launching puck at (4.68, 1.74) with (-326.01, -121.26) force +[05/20/2026 07:35:12] Blue goal scored, blue score is now 1 +[05/20/2026 07:35:18] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:35:18] launching puck at (-0.04, -5.00) with (2.63, 348.44) force +[05/20/2026 07:35:24] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:35:24] launching puck at (-1.69, 4.71) with (117.84, -327.92) force +[05/20/2026 07:35:32] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:35:32] launching puck at (-1.64, -4.72) with (114.46, 329.12) force +[05/20/2026 07:35:39] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:35:39] launching puck at (-5.00, 0.14) with (348.32, -9.60) force +[05/20/2026 07:35:44] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:35:44] launching puck at (-1.91, -4.62) with (133.19, 321.99) force +[05/20/2026 07:35:53] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:35:53] launching puck at (-4.97, 0.57) with (346.19, -39.63) force +[05/20/2026 07:35:54] Blue goal scored, blue score is now 2 +[05/20/2026 07:35:58] Client 16 sent emoji emote 5 +[05/20/2026 07:36:00] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:36:00] launching puck at (-0.17, -5.00) with (11.66, 348.26) force +[05/20/2026 07:36:04] Client 15 sent text emote WOW +[05/20/2026 07:36:06] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:36:06] launching puck at (3.50, 3.57) with (-244.11, -248.66) force +[05/20/2026 07:36:12] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:36:12] launching puck at (1.97, -4.60) with (-137.11, 320.34) force +[05/20/2026 07:36:17] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:36:17] launching puck at (2.45, 4.36) with (-170.45, -303.92) force +[05/20/2026 07:36:23] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:36:23] launching puck at (4.74, -1.60) with (-330.08, 111.67) force +[05/20/2026 07:36:31] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:36:31] launching puck at (-4.55, 2.07) with (317.28, -144.06) force +[05/20/2026 07:36:36] force = 70 * 0.9411665 = 65.88165 +[05/20/2026 07:36:36] launching puck at (3.90, -2.06) with (-256.67, 135.55) force +[05/20/2026 07:36:37] Red goal scored, red score is now 2 +[05/20/2026 07:36:42] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:36:42] launching puck at (-0.07, 5.00) with (5.06, -348.42) force +[05/20/2026 07:36:49] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:36:49] launching puck at (-1.07, -4.88) with (74.56, 340.38) force +[05/20/2026 07:36:57] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:36:57] launching puck at (-0.25, 4.99) with (17.52, -348.01) force +[05/20/2026 07:36:58] Blue goal scored, blue score is now 3 +[05/20/2026 07:36:58] Dedicated match PATCH success: 200 {"ok":true,"id":80} +[05/20/2026 07:37:00] Dedicated match winner PATCH success: 200 {"ok":true,"id":80,"winner_id":9,"economy":{"entry_fee_rc":479,"rc_prize":794,"participant_cc":100}} +[05/20/2026 07:37:24] Rematch requested +[05/20/2026 07:37:35] Rematch was confirmed, closing in 5 secs. new room : +[05/20/2026 07:37:35] {"ok":true,"entry_fee":774,"rc_prize":1284,"for_red":{"Players":[{"Name":"King LuLu","LastSeen":1779262655543,"l10_wins":6,"l10_losses":3,"UserId":7,"rc":0.0},{"Name":"choel","LastSeen":1779262655543,"l10_wins":2,"l10_losses":6,"UserId":9,"rc":0.0}],"GameName":"soccar","Port":26855,"InitTime":1779262655543,"instance_started":true,"match_id":81,"entry_fee":774,"rc_prize":1284,"your_team":"red"},"for_blue":{"Players":[{"Name":"King LuLu","LastSeen":1779262655543,"l10_wins":6,"l10_losses":3,"UserId":7,"rc":0.0},{"Name":"choel","LastSeen":1779262655543,"l10_wins":2,"l10_losses":6,"UserId":9,"rc":0.0}],"GameName":"soccar","Port":26855,"InitTime":1779262655543,"instance_started":true,"match_id":81,"entry_fee":774,"rc_prize":1284,"your_team":"blue"},"your_team":""} +[05/20/2026 07:37:35] Mirror server: client disconnected (connId=-1479578761) +[05/20/2026 07:37:35] Mirror server: client disconnected (connId=-1479578762) +[05/20/2026 07:37:35] Active player connections: 0 +[05/20/2026 07:37:40] Server will be closed due to no players in, 60 +[05/20/2026 07:37:50] Server will be closed due to no players in, 50 +[05/20/2026 07:38:00] Server will be closed due to no players in, 40 +[05/20/2026 07:38:10] Server will be closed due to no players in, 30 +[05/20/2026 07:38:20] Server will be closed due to no players in, 20 +[05/20/2026 07:38:30] Server will be closed due to no players in, 10 +[05/20/2026 07:38:40] All players left, exiting +[05/20/2026 07:38:41] Dedicated match PATCH success: 200 {"ok":true,"id":80} diff --git a/games/soccar/soccar_Data/Logs/81.txt b/games/soccar/soccar_Data/Logs/81.txt new file mode 100644 index 0000000..a655362 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/81.txt @@ -0,0 +1,98 @@ +[05/20/2026 07:37:37] Starting server at port 26855 +[05/20/2026 07:37:37] Mirror server exception logging enabled +[05/20/2026 07:37:37] Failed to fetch red and blue names, isServer? +[05/20/2026 07:37:37] Starting auto close watchdog +[05/20/2026 07:37:37] Active player connections: 0 +[05/20/2026 07:37:40] Active player connections: 1 +[05/20/2026 07:37:40] Active player connections: 2 +[05/20/2026 07:37:40] Game started On Server +[05/20/2026 07:37:40] Client 15 set team to Red +[05/20/2026 07:37:40] Client 16 set team to Blue +[05/20/2026 07:37:41] Dedicated match PATCH success: 200 {"ok":true,"id":81} +[05/20/2026 07:37:41] Dedicated match PATCH success: 200 {"ok":true,"id":81} +[05/20/2026 07:37:44] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:37:44] launching puck at (0.09, -5.00) with (-6.35, 348.40) force +[05/20/2026 07:37:50] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:37:50] launching puck at (2.53, -4.31) with (-176.13, 300.66) force +[05/20/2026 07:37:57] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:37:57] launching puck at (1.43, -4.79) with (-99.83, 333.85) force +[05/20/2026 07:38:05] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:38:05] launching puck at (0.85, -4.93) with (-59.49, 343.34) force +[05/20/2026 07:38:10] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:38:10] launching puck at (2.82, -4.13) with (-196.38, 287.84) force +[05/20/2026 07:38:14] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:38:14] launching puck at (-4.64, 1.87) with (323.05, -130.61) force +[05/20/2026 07:38:20] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:38:20] launching puck at (1.14, -4.87) with (-79.48, 339.27) force +[05/20/2026 07:38:24] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:38:24] launching puck at (3.66, -3.40) with (-255.19, 237.27) force +[05/20/2026 07:38:29] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:38:29] launching puck at (3.12, -3.91) with (-217.55, 272.19) force +[05/20/2026 07:38:29] Red goal scored, red score is now 1 +[05/20/2026 07:38:31] Client 15 sent emoji emote 5 +[05/20/2026 07:38:34] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:38:34] launching puck at (0.01, 5.00) with (-0.64, -348.45) force +[05/20/2026 07:38:41] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:38:41] launching puck at (-2.81, 4.14) with (195.53, -288.42) force +[05/20/2026 07:38:48] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:38:48] launching puck at (-1.80, 4.67) with (125.34, -325.13) force +[05/20/2026 07:38:49] Blue goal scored, blue score is now 1 +[05/20/2026 07:38:54] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:38:54] launching puck at (-0.01, -5.00) with (0.70, 348.45) force +[05/20/2026 07:39:00] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:39:00] launching puck at (2.50, -4.33) with (-174.52, 301.60) force +[05/20/2026 07:39:04] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:39:04] launching puck at (2.01, -4.58) with (-140.22, 319.00) force +[05/20/2026 07:39:09] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:39:09] launching puck at (4.88, -1.10) with (-339.95, 76.50) force +[05/20/2026 07:39:19] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:39:19] launching puck at (0.81, -4.93) with (-56.42, 343.86) force +[05/20/2026 07:39:25] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:39:25] launching puck at (3.96, 3.06) with (-275.81, -212.95) force +[05/20/2026 07:39:36] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:39:36] launching puck at (4.52, -2.14) with (-314.95, 149.09) force +[05/20/2026 07:39:45] force = 70 * 0.7994857 = 55.964 +[05/20/2026 07:39:45] launching puck at (0.70, 3.08) with (-39.15, -172.16) force +[05/20/2026 07:39:50] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:39:50] launching puck at (2.02, 4.57) with (-140.77, -318.75) force +[05/20/2026 07:39:56] force = 70 * 0.6961327 = 48.72929 +[05/20/2026 07:39:56] launching puck at (-0.55, 2.45) with (26.94, -119.35) force +[05/20/2026 07:39:57] Blue goal scored, blue score is now 2 +[05/20/2026 07:39:59] Client 16 sent emoji emote 5 +[05/20/2026 07:40:02] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:40:02] launching puck at (0.02, -5.00) with (-1.09, 348.45) force +[05/20/2026 07:40:07] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:40:07] launching puck at (-4.98, -0.42) with (347.23, 29.22) force +[05/20/2026 07:40:13] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:40:13] launching puck at (1.09, -4.88) with (-75.78, 340.11) force +[05/20/2026 07:40:13] Red goal scored, red score is now 2 +[05/20/2026 07:40:16] Client 15 sent emoji emote 5 +[05/20/2026 07:40:22] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:40:22] launching puck at (-0.05, 5.00) with (3.73, -348.43) force +[05/20/2026 07:40:29] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:40:29] launching puck at (4.89, 1.05) with (-340.66, -73.27) force +[05/20/2026 07:40:35] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:40:35] launching puck at (1.35, 4.81) with (-94.27, -335.46) force +[05/20/2026 07:40:40] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:40:40] launching puck at (4.50, 2.17) with (-313.83, -151.43) force +[05/20/2026 07:40:44] force = 70 * 0.7437651 = 52.06356 +[05/20/2026 07:40:44] launching puck at (0.55, 2.73) with (-28.65, -142.22) force +[05/20/2026 07:40:48] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:40:48] launching puck at (3.21, 3.83) with (-223.93, -266.97) force +[05/20/2026 07:40:54] force = 70 * 0.9955804 = 69.69063 +[05/20/2026 07:40:54] launching puck at (-3.23, 3.81) with (225.25, -265.86) force +[05/20/2026 07:40:54] Blue goal scored, blue score is now 3 +[05/20/2026 07:40:55] Dedicated match PATCH success: 200 {"ok":true,"id":81} +[05/20/2026 07:40:56] Dedicated match winner PATCH success: 200 {"ok":true,"id":81,"winner_id":9,"economy":{"entry_fee_rc":774,"rc_prize":1284,"participant_cc":100}} +[05/20/2026 07:41:25] Mirror server: client disconnected (connId=-1479581580) +[05/20/2026 07:41:25] Active player connections: 1 +[05/20/2026 07:41:25] Mirror server: client disconnected (connId=-1479581579) +[05/20/2026 07:41:25] Active player connections: 0 +[05/20/2026 07:41:30] Server will be closed due to no players in, 60 +[05/20/2026 07:41:40] Server will be closed due to no players in, 50 +[05/20/2026 07:41:50] Server will be closed due to no players in, 40 +[05/20/2026 07:42:00] Server will be closed due to no players in, 30 +[05/20/2026 07:42:10] Server will be closed due to no players in, 20 +[05/20/2026 07:42:20] Server will be closed due to no players in, 10 +[05/20/2026 07:42:30] All players left, exiting +[05/20/2026 07:42:31] Dedicated match PATCH success: 200 {"ok":true,"id":81} diff --git a/games/soccar/soccar_Data/Logs/82.txt b/games/soccar/soccar_Data/Logs/82.txt new file mode 100644 index 0000000..5e27035 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/82.txt @@ -0,0 +1,79 @@ +[05/24/2026 05:59:48] Starting server at port 26762 +[05/24/2026 05:59:48] Mirror server exception logging enabled +[05/24/2026 05:59:48] Failed to fetch red and blue names, isServer? +[05/24/2026 05:59:48] Starting auto close watchdog +[05/24/2026 05:59:48] Active player connections: 0 +[05/24/2026 05:59:50] Active player connections: 1 +[05/24/2026 05:59:50] Active player connections: 2 +[05/24/2026 05:59:50] Game started On Server +[05/24/2026 05:59:51] Client 15 set team to Blue +[05/24/2026 05:59:51] Client 16 set team to Red +[05/24/2026 05:59:51] Dedicated match PATCH success: 200 {"ok":true,"id":82} +[05/24/2026 05:59:51] Dedicated match PATCH success: 200 {"ok":true,"id":82} +[05/24/2026 05:59:53] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 05:59:53] launching puck at (0.04, -5.00) with (-2.58, 348.44) force +[05/24/2026 06:00:00] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:00:00] launching puck at (4.09, 2.88) with (-284.75, -200.84) force +[05/24/2026 06:00:06] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:00:06] launching puck at (1.95, -4.60) with (-135.80, 320.90) force +[05/24/2026 06:00:16] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:00:16] launching puck at (1.96, -4.60) with (-136.77, 320.49) force +[05/24/2026 06:00:20] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:00:20] launching puck at (0.20, -5.00) with (-13.75, 348.18) force +[05/24/2026 06:00:20] Red goal scored, red score is now 1 +[05/24/2026 06:00:32] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:00:32] launching puck at (2.36, 4.41) with (-164.13, -307.38) force +[05/24/2026 06:00:38] Client 16 sent emoji emote 3 +[05/24/2026 06:00:39] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:00:39] launching puck at (0.20, -5.00) with (-13.67, 348.18) force +[05/24/2026 06:00:40] Red goal scored, red score is now 2 +[05/24/2026 06:00:51] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:00:51] launching puck at (1.31, 4.83) with (-91.02, -336.36) force +[05/24/2026 06:00:56] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:00:56] launching puck at (-2.63, -4.25) with (183.57, 296.18) force +[05/24/2026 06:01:06] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:01:06] launching puck at (0.54, -4.97) with (-37.38, 346.44) force +[05/24/2026 06:01:16] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:01:16] launching puck at (-4.99, -0.27) with (347.96, 18.57) force +[05/24/2026 06:01:22] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:01:22] launching puck at (-2.38, 4.40) with (165.73, -306.52) force +[05/24/2026 06:01:27] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:01:27] launching puck at (-5.00, 0.11) with (348.37, -7.84) force +[05/24/2026 06:01:34] force = 70 * 0.9811184 = 68.67828 +[05/24/2026 06:01:34] launching puck at (-3.60, 3.24) with (247.12, -222.32) force +[05/24/2026 06:01:42] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:01:42] launching puck at (-4.63, -1.90) with (322.40, 132.21) force +[05/24/2026 06:01:49] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:01:49] launching puck at (-4.40, 2.37) with (306.68, -165.42) force +[05/24/2026 06:01:57] force = 70 * 0.7571835 = 53.00285 +[05/24/2026 06:01:57] launching puck at (-2.21, 1.84) with (116.97, -97.27) force +[05/24/2026 06:02:02] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:02:02] launching puck at (-0.92, 4.91) with (64.40, -342.45) force +[05/24/2026 06:02:02] Blue goal scored, blue score is now 1 +[05/24/2026 06:02:08] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:02:08] launching puck at (-0.20, -5.00) with (14.06, 348.17) force +[05/24/2026 06:02:18] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:02:18] launching puck at (4.35, 2.46) with (-303.43, -171.31) force +[05/24/2026 06:02:24] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:02:24] launching puck at (3.60, -3.47) with (-250.60, 242.11) force +[05/24/2026 06:02:29] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:02:29] launching puck at (-3.07, 3.95) with (213.81, -275.15) force +[05/24/2026 06:02:36] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:02:36] launching puck at (-3.48, -3.59) with (242.54, 250.19) force +[05/24/2026 06:02:36] Red goal scored, red score is now 3 +[05/24/2026 06:02:36] Dedicated match PATCH success: 200 {"ok":true,"id":82} +[05/24/2026 06:02:38] Dedicated match winner PATCH success: 200 {"ok":true,"id":82,"winner_id":13,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/24/2026 06:02:38] Client 15 sent text emote Oops +[05/24/2026 06:02:39] Client 16 sent emoji emote 5 +[05/24/2026 06:02:45] Mirror server: client disconnected (connId=1761032707) +[05/24/2026 06:02:45] Active player connections: 1 +[05/24/2026 06:03:07] Mirror server: client disconnected (connId=-1479581559) +[05/24/2026 06:03:07] Active player connections: 0 +[05/24/2026 06:03:12] Server will be closed due to no players in, 60 +[05/24/2026 06:03:22] Server will be closed due to no players in, 50 +[05/24/2026 06:03:32] Server will be closed due to no players in, 40 +[05/24/2026 06:03:42] Server will be closed due to no players in, 30 +[05/24/2026 06:03:52] Server will be closed due to no players in, 20 +[05/24/2026 06:04:02] Server will be closed due to no players in, 10 +[05/24/2026 06:04:12] All players left, exiting +[05/24/2026 06:04:12] Dedicated match PATCH success: 200 {"ok":true,"id":82} diff --git a/games/soccar/soccar_Data/Logs/83.txt b/games/soccar/soccar_Data/Logs/83.txt new file mode 100644 index 0000000..fa5aed5 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/83.txt @@ -0,0 +1,123 @@ +[05/24/2026 06:00:57] Starting server at port 26321 +[05/24/2026 06:00:58] Mirror server exception logging enabled +[05/24/2026 06:00:58] Failed to fetch red and blue names, isServer? +[05/24/2026 06:00:58] Starting auto close watchdog +[05/24/2026 06:00:58] Active player connections: 0 +[05/24/2026 06:01:01] Active player connections: 1 +[05/24/2026 06:01:01] Client 15 set team to Blue +[05/24/2026 06:01:01] Active player connections: 2 +[05/24/2026 06:01:01] Game started On Server +[05/24/2026 06:01:02] Dedicated match PATCH success: 200 {"ok":true,"id":83} +[05/24/2026 06:01:02] Client 16 set team to Red +[05/24/2026 06:01:02] Dedicated match PATCH success: 200 {"ok":true,"id":83} +[05/24/2026 06:01:02] Active player connections: 3 +[05/24/2026 06:01:03] Client 17 set team to Blue +[05/24/2026 06:01:19] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:01:19] launching puck at (-0.07, 5.00) with (4.56, -348.42) force +[05/24/2026 06:01:32] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:01:32] launching puck at (-1.40, -4.80) with (97.87, 334.43) force +[05/24/2026 06:01:37] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:01:37] launching puck at (-1.86, 4.64) with (129.30, -323.58) force +[05/24/2026 06:01:44] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:01:44] launching puck at (0.96, -4.91) with (-66.76, 342.00) force +[05/24/2026 06:01:50] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:01:50] launching puck at (3.80, -3.25) with (-264.78, 226.53) force +[05/24/2026 06:01:50] [Mirror/Error] Disconnecting connection: connection(2006075795) because handling a message of type Mirror.CommandMessage caused an Exception. This can happen if the other side accidentally (or an attacker intentionally) sent invalid data. Reason: System.NullReferenceException: Object reference not set to an instance of an object + at NetPlayer.UserCode_CmdOnPointerDown__Vector2 (UnityEngine.Vector2 position) [0x00025] in :0 + at NetPlayer.InvokeUserCode_CmdOnPointerDown__Vector2 (Mirror.NetworkBehaviour obj, Mirror.NetworkReader reader, Mirror.NetworkConnectionToClient senderConnection) [0x00022] in :0 + at Mirror.RemoteCalls.RemoteProcedureCalls.Invoke (System.UInt16 functionHash, Mirror.RemoteCalls.RemoteCallType remoteCallType, Mirror.NetworkReader reader, Mirror.NetworkBehaviour component, Mirror.NetworkConnectionToClient senderConnection) [0x00019] in <0c71d62641ad468493ee2dc21fdce382>:0 + at Mirror.NetworkIdentity.HandleRemoteCall (System.Byte componentIndex, System.UInt16 functionHash, Mirror.RemoteCalls.RemoteCallType remoteCallType, Mirror.NetworkReader reader, Mirror.NetworkConnectionToClient senderConnection) [0x00065] in <0c71d62641ad468493ee2dc21fdce382>:0 + at Mirror.NetworkServer.OnCommandMessage (Mirror.NetworkConnectionToClient conn, Mirror.CommandMessage msg, System.Int32 channelId) [0x001c8] in <0c71d62641ad468493ee2dc21fdce382>:0 + at (wrapper delegate-invoke) System.Action`3[Mirror.NetworkConnectionToClient,Mirror.CommandMessage,System.Int32].invoke_void_T1_T2_T3(Mirror.NetworkConnectionToClient,Mirror.CommandMessage,int) + at Mirror.NetworkMessages+<>c__DisplayClass8_0`2[T,C].b__0 (Mirror.NetworkConnection conn, Mirror.NetworkReader reader, System.Int32 channelId) [0x000ac] in <0c71d62641ad468493ee2dc21fdce382>:0 +[05/24/2026 06:01:50] Mirror server: client disconnected (connId=2006075795) +[05/24/2026 06:01:50] Active player connections: 2 +[05/24/2026 06:01:57] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:01:57] launching puck at (2.74, -4.18) with (-190.85, 291.54) force +[05/24/2026 06:02:03] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:02:03] launching puck at (-0.92, -4.91) with (64.42, 342.45) force +[05/24/2026 06:02:12] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:02:12] launching puck at (2.64, -4.24) with (-184.31, 295.72) force +[05/24/2026 06:02:36] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:02:36] launching puck at (-0.22, -5.00) with (15.46, 348.11) force +[05/24/2026 06:02:36] Red goal scored, red score is now 1 +[05/24/2026 06:02:41] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:02:41] launching puck at (-0.29, 4.99) with (20.24, -347.86) force +[05/24/2026 06:02:47] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:02:47] launching puck at (4.42, -2.35) with (-307.71, 163.50) force +[05/24/2026 06:02:52] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:02:52] launching puck at (0.04, 5.00) with (-3.05, -348.44) force +[05/24/2026 06:03:00] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:03:00] launching puck at (-3.53, -3.54) with (246.03, 246.76) force +[05/24/2026 06:03:05] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:03:05] launching puck at (-4.08, 2.90) with (284.00, -201.90) force +[05/24/2026 06:03:15] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:03:15] launching puck at (-3.18, 3.86) with (221.80, -268.75) force +[05/24/2026 06:03:19] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:03:19] launching puck at (-4.84, -1.27) with (336.99, 88.65) force +[05/24/2026 06:03:28] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:03:28] launching puck at (-4.44, -2.30) with (309.35, 160.39) force +[05/24/2026 06:03:34] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:03:34] launching puck at (-1.07, 4.88) with (74.36, -340.43) force +[05/24/2026 06:03:34] Blue goal scored, blue score is now 1 +[05/24/2026 06:03:36] Client 15 sent emoji emote 3 +[05/24/2026 06:03:46] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:03:46] launching puck at (1.49, -4.77) with (-103.57, 332.71) force +[05/24/2026 06:03:49] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:03:49] launching puck at (-3.39, 3.67) with (236.59, -255.82) force +[05/24/2026 06:03:58] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:03:58] launching puck at (-3.60, -3.47) with (250.82, 241.88) force +[05/24/2026 06:04:10] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:04:10] launching puck at (-2.69, 4.22) with (187.24, -293.87) force +[05/24/2026 06:04:17] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:04:17] launching puck at (1.24, -4.84) with (-86.34, 337.59) force +[05/24/2026 06:04:17] Red goal scored, red score is now 2 +[05/24/2026 06:04:23] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:04:23] launching puck at (-4.84, 1.25) with (337.45, -86.89) force +[05/24/2026 06:04:29] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:04:29] launching puck at (2.50, -4.33) with (-173.92, 301.95) force +[05/24/2026 06:04:36] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:04:36] launching puck at (2.14, 4.52) with (-148.93, -315.02) force +[05/24/2026 06:04:49] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:04:49] launching puck at (2.46, 4.35) with (-171.21, -303.49) force +[05/24/2026 06:04:54] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:04:54] launching puck at (-0.35, 4.99) with (24.65, -347.58) force +[05/24/2026 06:04:55] Blue goal scored, blue score is now 2 +[05/24/2026 06:05:03] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:05:03] launching puck at (1.14, -4.87) with (-79.28, 339.32) force +[05/24/2026 06:05:10] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:05:10] launching puck at (-2.75, 4.17) with (191.89, -290.86) force +[05/24/2026 06:05:20] force = 70 * 0.7006857 = 49.048 +[05/24/2026 06:05:20] launching puck at (0.45, 2.49) with (-22.24, -122.37) force +[05/24/2026 06:05:25] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:05:25] launching puck at (-2.65, 4.24) with (184.34, -295.70) force +[05/24/2026 06:05:32] force = 70 * 0.9132671 = 63.9287 +[05/24/2026 06:05:32] launching puck at (-1.29, 3.91) with (82.60, -250.07) force +[05/24/2026 06:05:36] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:05:36] launching puck at (-3.12, 3.91) with (217.10, -272.56) force +[05/24/2026 06:05:43] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:05:43] launching puck at (-3.72, 3.34) with (259.41, -232.65) force +[05/24/2026 06:05:49] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:05:49] launching puck at (3.44, -3.63) with (-239.54, 253.06) force +[05/24/2026 06:05:56] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:05:56] launching puck at (-3.32, -3.74) with (231.19, 260.71) force +[05/24/2026 06:06:02] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:06:02] launching puck at (0.88, 4.92) with (-61.02, -343.07) force +[05/24/2026 06:06:08] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:06:08] launching puck at (-2.67, -4.23) with (185.85, 294.75) force +[05/24/2026 06:06:09] Red goal scored, red score is now 3 +[05/24/2026 06:06:09] Dedicated match PATCH success: 200 {"ok":true,"id":83} +[05/24/2026 06:06:11] Dedicated match winner PATCH success: 200 {"ok":true,"id":83,"winner_id":12,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/24/2026 06:06:18] Rematch requested +[05/24/2026 06:06:23] Mirror server: client disconnected (connId=720401254) +[05/24/2026 06:06:23] Active player connections: 1 +[05/24/2026 06:06:26] Mirror server: client disconnected (connId=954096339) +[05/24/2026 06:06:26] Active player connections: 0 +[05/24/2026 06:06:31] Server will be closed due to no players in, 60 +[05/24/2026 06:06:41] Server will be closed due to no players in, 50 +[05/24/2026 06:06:51] Server will be closed due to no players in, 40 +[05/24/2026 06:07:01] Server will be closed due to no players in, 30 +[05/24/2026 06:07:11] Server will be closed due to no players in, 20 +[05/24/2026 06:07:21] Server will be closed due to no players in, 10 +[05/24/2026 06:07:31] All players left, exiting +[05/24/2026 06:07:31] Dedicated match PATCH success: 200 {"ok":true,"id":83} diff --git a/games/soccar/soccar_Data/Logs/84.txt b/games/soccar/soccar_Data/Logs/84.txt new file mode 100644 index 0000000..6981a00 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/84.txt @@ -0,0 +1,69 @@ +[05/24/2026 06:02:40] Starting server at port 26129 +[05/24/2026 06:02:40] Mirror server exception logging enabled +[05/24/2026 06:02:40] Failed to fetch red and blue names, isServer? +[05/24/2026 06:02:40] Starting auto close watchdog +[05/24/2026 06:02:40] Active player connections: 0 +[05/24/2026 06:02:44] Active player connections: 1 +[05/24/2026 06:02:44] Active player connections: 2 +[05/24/2026 06:02:44] Game started On Server +[05/24/2026 06:02:45] Client 15 set team to Blue +[05/24/2026 06:02:45] Dedicated match PATCH success: 200 {"ok":true,"id":84} +[05/24/2026 06:02:45] Client 16 set team to Red +[05/24/2026 06:02:45] Dedicated match PATCH success: 200 {"ok":true,"id":84} +[05/24/2026 06:02:49] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:02:49] launching puck at (0.02, -5.00) with (-1.66, 348.45) force +[05/24/2026 06:02:54] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:02:54] launching puck at (1.05, 4.89) with (-73.15, -340.69) force +[05/24/2026 06:03:00] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:03:00] launching puck at (-4.83, -1.31) with (336.35, 91.03) force +[05/24/2026 06:03:08] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:03:08] launching puck at (-1.05, 4.89) with (73.36, -340.64) force +[05/24/2026 06:03:08] Blue goal scored, blue score is now 1 +[05/24/2026 06:03:13] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:03:13] launching puck at (-0.06, -5.00) with (4.10, 348.43) force +[05/24/2026 06:03:20] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:03:20] launching puck at (-0.52, 4.97) with (35.99, -346.59) force +[05/24/2026 06:03:25] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:03:25] launching puck at (-5.00, 0.12) with (348.35, -8.45) force +[05/24/2026 06:03:31] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:03:31] launching puck at (-1.50, 4.77) with (104.56, -332.40) force +[05/24/2026 06:03:36] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:03:36] launching puck at (4.99, -0.34) with (-347.64, 23.78) force +[05/24/2026 06:03:46] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:03:46] launching puck at (4.41, -2.35) with (-307.41, 164.07) force +[05/24/2026 06:03:51] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:03:51] launching puck at (1.15, -4.87) with (-79.97, 339.15) force +[05/24/2026 06:03:56] Client 16 sent text emote Oops +[05/24/2026 06:03:56] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:03:56] launching puck at (2.93, 4.05) with (-203.88, -282.58) force +[05/24/2026 06:03:57] Blue goal scored, blue score is now 2 +[05/24/2026 06:03:59] Client 16 sent text emote Nice shot! +[05/24/2026 06:04:02] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:04:02] launching puck at (0.16, -5.00) with (-11.08, 348.28) force +[05/24/2026 06:04:08] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:04:08] launching puck at (-3.13, 3.90) with (217.91, -271.91) force +[05/24/2026 06:04:13] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:04:13] launching puck at (4.36, -2.45) with (-303.61, 171.00) force +[05/24/2026 06:04:19] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:04:19] launching puck at (3.67, 3.39) with (-256.02, -236.38) force +[05/24/2026 06:04:26] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:04:26] launching puck at (-3.98, -3.03) with (277.21, 211.12) force +[05/24/2026 06:04:31] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:04:31] launching puck at (-0.56, 4.97) with (39.36, -346.22) force +[05/24/2026 06:04:33] Blue goal scored, blue score is now 3 +[05/24/2026 06:04:33] Dedicated match PATCH success: 200 {"ok":true,"id":84} +[05/24/2026 06:04:35] Dedicated match winner PATCH success: 200 {"ok":true,"id":84,"winner_id":18,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/24/2026 06:04:40] Rematch requested +[05/24/2026 06:04:46] Rematch was confirmed, closing in 5 secs. new room : +[05/24/2026 06:04:46] {"ok":true,"entry_fee":106,"rc_prize":174,"for_red":{"Players":[{"Name":"Choel","LastSeen":1779602686374,"l10_wins":0,"l10_losses":1,"UserId":17,"rc":0.0},{"Name":"Modisi","LastSeen":1779602686374,"l10_wins":1,"l10_losses":0,"UserId":18,"rc":0.0}],"GameName":"soccar","Port":26304,"InitTime":1779602686374,"instance_started":true,"match_id":87,"entry_fee":106,"rc_prize":174,"your_team":"red"},"for_blue":{"Players":[{"Name":"Choel","LastSeen":1779602686374,"l10_wins":0,"l10_losses":1,"UserId":17,"rc":0.0},{"Name":"Modisi","LastSeen":1779602686374,"l10_wins":1,"l10_losses":0,"UserId":18,"rc":0.0}],"GameName":"soccar","Port":26304,"InitTime":1779602686374,"instance_started":true,"match_id":87,"entry_fee":106,"rc_prize":174,"your_team":"blue"},"your_team":""} +[05/24/2026 06:04:46] Mirror server: client disconnected (connId=224821203) +[05/24/2026 06:04:46] Mirror server: client disconnected (connId=207068060) +[05/24/2026 06:04:46] Active player connections: 0 +[05/24/2026 06:04:51] Server will be closed due to no players in, 60 +[05/24/2026 06:05:01] Server will be closed due to no players in, 50 +[05/24/2026 06:05:11] Server will be closed due to no players in, 40 +[05/24/2026 06:05:21] Server will be closed due to no players in, 30 +[05/24/2026 06:05:31] Server will be closed due to no players in, 20 +[05/24/2026 06:05:41] Server will be closed due to no players in, 10 +[05/24/2026 06:05:51] All players left, exiting +[05/24/2026 06:05:51] Dedicated match PATCH success: 200 {"ok":true,"id":84} diff --git a/games/soccar/soccar_Data/Logs/85.txt b/games/soccar/soccar_Data/Logs/85.txt new file mode 100644 index 0000000..728f00a --- /dev/null +++ b/games/soccar/soccar_Data/Logs/85.txt @@ -0,0 +1,153 @@ +[05/24/2026 06:03:05] Starting server at port 26119 +[05/24/2026 06:03:05] Mirror server exception logging enabled +[05/24/2026 06:03:05] Failed to fetch red and blue names, isServer? +[05/24/2026 06:03:05] Starting auto close watchdog +[05/24/2026 06:03:05] Active player connections: 0 +[05/24/2026 06:03:07] Active player connections: 1 +[05/24/2026 06:03:08] Client 15 set team to Blue +[05/24/2026 06:03:08] Active player connections: 2 +[05/24/2026 06:03:08] Game started On Server +[05/24/2026 06:03:08] Dedicated match PATCH success: 200 {"ok":true,"id":85} +[05/24/2026 06:03:08] Client 16 set team to Red +[05/24/2026 06:03:08] Dedicated match PATCH success: 200 {"ok":true,"id":85} +[05/24/2026 06:03:13] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:03:13] launching puck at (-1.18, -4.86) with (82.46, 338.55) force +[05/24/2026 06:03:18] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:03:18] launching puck at (2.41, 4.38) with (-168.28, -305.13) force +[05/24/2026 06:03:24] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:03:24] launching puck at (4.71, -1.67) with (-328.33, 116.69) force +[05/24/2026 06:03:30] force = 70 * 0.9716236 = 68.01365 +[05/24/2026 06:03:30] launching puck at (-4.45, -1.62) with (302.52, 110.49) force +[05/24/2026 06:03:39] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:03:39] launching puck at (-0.53, -4.97) with (37.21, 346.46) force +[05/24/2026 06:03:43] force = 70 * 0.7728814 = 54.1017 +[05/24/2026 06:03:43] launching puck at (-0.86, -2.84) with (46.68, 153.86) force +[05/24/2026 06:03:50] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:03:50] launching puck at (1.89, -4.63) with (-131.71, 322.60) force +[05/24/2026 06:03:57] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:03:57] launching puck at (0.51, -4.97) with (-35.33, 346.66) force +[05/24/2026 06:04:08] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:04:08] launching puck at (-1.76, -4.68) with (122.42, 326.24) force +[05/24/2026 06:04:08] Red goal scored, red score is now 1 +[05/24/2026 06:04:13] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:04:13] launching puck at (-0.01, 5.00) with (0.40, -348.45) force +[05/24/2026 06:04:24] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:04:24] launching puck at (1.93, -4.61) with (-134.65, 321.38) force +[05/24/2026 06:04:30] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:04:30] launching puck at (3.35, 3.71) with (-233.77, -258.40) force +[05/24/2026 06:04:30] Blue goal scored, blue score is now 1 +[05/24/2026 06:04:37] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:04:37] launching puck at (-1.60, -4.74) with (111.68, 330.07) force +[05/24/2026 06:04:42] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:04:42] launching puck at (3.48, 3.59) with (-242.72, -250.01) force +[05/24/2026 06:04:49] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:04:49] launching puck at (4.42, -2.34) with (-308.06, 162.85) force +[05/24/2026 06:04:55] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:04:55] launching puck at (-4.41, 2.36) with (307.30, -164.27) force +[05/24/2026 06:05:00] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:05:00] launching puck at (4.47, -2.23) with (-311.80, 155.56) force +[05/24/2026 06:05:07] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:05:07] launching puck at (1.78, 4.67) with (-123.80, -325.72) force +[05/24/2026 06:05:14] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:05:14] launching puck at (3.16, 3.88) with (-220.19, -270.07) force +[05/24/2026 06:05:22] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:05:22] launching puck at (-4.55, 2.08) with (316.85, -145.00) force +[05/24/2026 06:05:30] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:05:30] launching puck at (-2.49, -4.34) with (173.56, 302.16) force +[05/24/2026 06:05:35] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:05:35] launching puck at (1.72, 4.69) with (-120.08, -327.11) force +[05/24/2026 06:05:41] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:05:41] launching puck at (4.90, -0.97) with (-341.78, 67.85) force +[05/24/2026 06:05:47] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:05:47] launching puck at (1.18, 4.86) with (-82.09, -338.65) force +[05/24/2026 06:05:54] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:05:54] launching puck at (1.24, 4.84) with (-86.69, -337.50) force +[05/24/2026 06:05:59] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:05:59] launching puck at (1.98, 4.59) with (-138.18, -319.89) force +[05/24/2026 06:06:06] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:06:06] launching puck at (-2.30, -4.44) with (160.09, 309.50) force +[05/24/2026 06:06:11] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:06:11] launching puck at (0.04, 5.00) with (-3.12, -348.44) force +[05/24/2026 06:06:18] force = 70 * 0.9162391 = 64.13674 +[05/24/2026 06:06:18] launching puck at (-3.92, -1.35) with (251.53, 86.89) force +[05/24/2026 06:06:25] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:06:25] launching puck at (-3.88, 3.15) with (270.43, -219.74) force +[05/24/2026 06:06:32] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:06:32] launching puck at (-4.14, -2.80) with (288.86, 194.89) force +[05/24/2026 06:06:41] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:06:41] launching puck at (0.21, -5.00) with (-14.83, 348.14) force +[05/24/2026 06:06:48] force = 70 * 0.9291872 = 65.04311 +[05/24/2026 06:06:48] launching puck at (2.12, -3.72) with (-137.68, 242.02) force +[05/24/2026 06:06:54] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:06:54] launching puck at (-1.20, 4.85) with (83.87, -338.21) force +[05/24/2026 06:07:01] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:07:01] launching puck at (-0.83, 4.93) with (57.62, -343.66) force +[05/24/2026 06:07:10] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:07:10] launching puck at (4.09, -2.88) with (-285.07, 200.39) force +[05/24/2026 06:07:16] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:07:16] launching puck at (3.52, -3.55) with (-245.55, 247.23) force +[05/24/2026 06:07:29] force = 70 * 0.9939547 = 69.57683 +[05/24/2026 06:07:29] launching puck at (-1.41, -4.78) with (97.82, 332.54) force +[05/24/2026 06:07:30] Red goal scored, red score is now 2 +[05/24/2026 06:07:36] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:07:36] launching puck at (-0.18, 5.00) with (12.63, -348.22) force +[05/24/2026 06:07:42] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:07:42] launching puck at (3.39, -3.68) with (-236.08, 256.29) force +[05/24/2026 06:07:47] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:07:47] launching puck at (-1.37, 4.81) with (95.53, -335.10) force +[05/24/2026 06:07:55] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:07:55] launching puck at (-4.67, 1.79) with (325.33, -124.83) force +[05/24/2026 06:08:02] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:08:02] launching puck at (3.47, 3.60) with (-241.85, -250.86) force +[05/24/2026 06:08:02] Blue goal scored, blue score is now 2 +[05/24/2026 06:08:05] Client 15 sent emoji emote 5 +[05/24/2026 06:08:09] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:08:09] launching puck at (-1.91, -4.62) with (133.28, 321.96) force +[05/24/2026 06:08:13] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:08:13] launching puck at (-0.85, 4.93) with (59.53, -343.33) force +[05/24/2026 06:08:19] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:08:19] launching puck at (1.10, -4.88) with (-76.98, 339.84) force +[05/24/2026 06:08:26] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:08:26] launching puck at (4.97, 0.56) with (-346.27, -38.98) force +[05/24/2026 06:08:32] force = 70 * 0.9055049 = 63.38535 +[05/24/2026 06:08:32] launching puck at (2.30, -3.33) with (-145.57, 210.92) force +[05/24/2026 06:08:39] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:08:39] launching puck at (2.02, -4.57) with (-140.83, 318.73) force +[05/24/2026 06:08:48] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:08:48] launching puck at (2.42, -4.38) with (-168.66, 304.91) force +[05/24/2026 06:08:56] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:08:56] launching puck at (4.94, -0.77) with (-344.24, 54.01) force +[05/24/2026 06:09:04] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:09:04] launching puck at (2.67, -4.23) with (-185.84, 294.76) force +[05/24/2026 06:09:11] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:09:11] launching puck at (1.78, 4.67) with (-123.72, -325.75) force +[05/24/2026 06:09:17] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:09:17] launching puck at (5.00, -0.03) with (-348.45, 2.27) force +[05/24/2026 06:09:25] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:09:25] launching puck at (1.05, 4.89) with (-73.41, -340.63) force +[05/24/2026 06:09:31] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:09:31] launching puck at (0.07, 5.00) with (-5.17, -348.41) force +[05/24/2026 06:09:38] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:09:38] launching puck at (-1.96, 4.60) with (136.94, -320.42) force +[05/24/2026 06:09:45] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:09:45] launching puck at (-4.92, 0.91) with (342.57, -63.74) force +[05/24/2026 06:10:00] force = 70 * 0.8941479 = 62.59035 +[05/24/2026 06:10:00] launching puck at (3.79, -1.05) with (-237.25, 65.98) force +[05/24/2026 06:10:00] Red goal scored, red score is now 3 +[05/24/2026 06:10:01] Dedicated match PATCH success: 200 {"ok":true,"id":85} +[05/24/2026 06:10:03] Dedicated match winner PATCH success: 200 {"ok":true,"id":85,"winner_id":14,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/24/2026 06:10:07] Rematch requested +[05/24/2026 06:10:13] Rematch was confirmed, closing in 5 secs. new room : +[05/24/2026 06:10:13] {"ok":true,"entry_fee":89,"rc_prize":146,"for_red":{"Players":[{"Name":"SebastianMCS","LastSeen":1779603013325,"l10_wins":1,"l10_losses":1,"UserId":14,"rc":0.0},{"Name":"anne123","LastSeen":1779603013325,"l10_wins":0,"l10_losses":2,"UserId":15,"rc":0.0}],"GameName":"soccar","Port":26500,"InitTime":1779603013325,"instance_started":true,"match_id":90,"entry_fee":89,"rc_prize":146,"your_team":"red"},"for_blue":{"Players":[{"Name":"SebastianMCS","LastSeen":1779603013325,"l10_wins":1,"l10_losses":1,"UserId":14,"rc":0.0},{"Name":"anne123","LastSeen":1779603013325,"l10_wins":0,"l10_losses":2,"UserId":15,"rc":0.0}],"GameName":"soccar","Port":26500,"InitTime":1779603013325,"instance_started":true,"match_id":90,"entry_fee":89,"rc_prize":146,"your_team":"blue"},"your_team":""} +[05/24/2026 06:10:13] Mirror server: client disconnected (connId=2006069625) +[05/24/2026 06:10:13] Active player connections: 1 +[05/24/2026 06:10:13] Mirror server: client disconnected (connId=1761042653) +[05/24/2026 06:10:13] Active player connections: 0 +[05/24/2026 06:10:18] Server will be closed due to no players in, 60 +[05/24/2026 06:10:28] Server will be closed due to no players in, 50 +[05/24/2026 06:10:38] Server will be closed due to no players in, 40 +[05/24/2026 06:10:48] Server will be closed due to no players in, 30 +[05/24/2026 06:10:58] Server will be closed due to no players in, 20 +[05/24/2026 06:11:08] Server will be closed due to no players in, 10 +[05/24/2026 06:11:18] All players left, exiting +[05/24/2026 06:11:18] Dedicated match PATCH success: 200 {"ok":true,"id":85} diff --git a/games/soccar/soccar_Data/Logs/86.txt b/games/soccar/soccar_Data/Logs/86.txt new file mode 100644 index 0000000..1db2977 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/86.txt @@ -0,0 +1,112 @@ +[05/24/2026 06:04:07] Starting server at port 26364 +[05/24/2026 06:04:07] Mirror server exception logging enabled +[05/24/2026 06:04:07] Failed to fetch red and blue names, isServer? +[05/24/2026 06:04:07] Starting auto close watchdog +[05/24/2026 06:04:07] Active player connections: 0 +[05/24/2026 06:04:10] Active player connections: 1 +[05/24/2026 06:04:10] Client 15 set team to Blue +[05/24/2026 06:04:10] Active player connections: 2 +[05/24/2026 06:04:10] Game started On Server +[05/24/2026 06:04:11] Dedicated match PATCH success: 200 {"ok":true,"id":86} +[05/24/2026 06:04:11] Client 16 set team to Red +[05/24/2026 06:04:11] Dedicated match PATCH success: 200 {"ok":true,"id":86} +[05/24/2026 06:04:13] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:04:13] launching puck at (0.10, -5.00) with (-6.79, 348.39) force +[05/24/2026 06:04:18] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:04:18] launching puck at (-1.67, 4.71) with (116.23, -328.50) force +[05/24/2026 06:04:26] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:04:26] launching puck at (-0.91, -4.92) with (63.36, 342.64) force +[05/24/2026 06:04:33] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:04:33] launching puck at (0.49, 4.98) with (-34.45, -346.75) force +[05/24/2026 06:04:39] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:04:39] launching puck at (2.21, -4.49) with (-153.95, 312.60) force +[05/24/2026 06:04:51] force = 70 * 0.9354014 = 65.4781 +[05/24/2026 06:04:51] launching puck at (3.84, 2.03) with (-251.41, -133.21) force +[05/24/2026 06:04:57] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:04:57] launching puck at (1.54, -4.76) with (-107.26, 331.53) force +[05/24/2026 06:05:00] Client 16 sent emoji emote 4 +[05/24/2026 06:05:10] force = 70 * 0.964295 = 67.50065 +[05/24/2026 06:05:10] launching puck at (-2.66, -3.82) with (179.69, 257.75) force +[05/24/2026 06:05:20] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:05:20] launching puck at (-3.11, -3.92) with (216.54, 273.00) force +[05/24/2026 06:05:23] Client 16 sent emoji emote 5 +[05/24/2026 06:05:25] Client 16 sent emoji emote 4 +[05/24/2026 06:05:27] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:05:27] launching puck at (-2.89, -4.08) with (201.15, 284.53) force +[05/24/2026 06:05:34] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:05:34] launching puck at (-2.68, -4.22) with (186.93, 294.07) force +[05/24/2026 06:05:40] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:05:40] launching puck at (-4.39, 2.39) with (306.00, -166.68) force +[05/24/2026 06:05:48] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:05:48] launching puck at (-1.01, -4.90) with (70.44, 341.26) force +[05/24/2026 06:05:54] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:05:54] launching puck at (-3.09, -3.93) with (215.65, 273.71) force +[05/24/2026 06:05:59] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:05:59] launching puck at (1.31, 4.83) with (-91.11, -336.33) force +[05/24/2026 06:06:08] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:06:08] launching puck at (-3.17, 3.86) with (221.17, -269.26) force +[05/24/2026 06:06:13] force = 70 * 0.9049721 = 63.34805 +[05/24/2026 06:06:13] launching puck at (1.96, 3.53) with (-123.86, -223.81) force +[05/24/2026 06:06:24] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:06:24] launching puck at (-1.93, 4.61) with (134.84, -321.31) force +[05/24/2026 06:06:29] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:06:29] launching puck at (-0.54, -4.97) with (37.66, 346.41) force +[05/24/2026 06:06:40] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:06:40] launching puck at (0.77, -4.94) with (-53.32, 344.35) force +[05/24/2026 06:06:46] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:06:46] launching puck at (-0.90, -4.92) with (62.93, 342.72) force +[05/24/2026 06:06:47] Red goal scored, red score is now 1 +[05/24/2026 06:06:53] force = 70 * 0.6100613 = 42.7043 +[05/24/2026 06:06:53] launching puck at (1.73, 1.16) with (-73.83, -49.49) force +[05/24/2026 06:06:58] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:06:58] launching puck at (-0.09, -5.00) with (6.34, 348.40) force +[05/24/2026 06:07:05] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:07:05] launching puck at (-1.02, 4.90) with (70.79, -341.19) force +[05/24/2026 06:07:18] force = 70 * 0.4997376 = 34.98163 +[05/24/2026 06:07:18] launching puck at (-0.26, 1.53) with (8.93, -53.62) force +[05/24/2026 06:07:24] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:07:24] launching puck at (-0.44, 4.98) with (30.86, -347.08) force +[05/24/2026 06:07:30] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:07:30] launching puck at (-4.38, -2.41) with (305.47, 167.65) force +[05/24/2026 06:07:36] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:07:36] launching puck at (-2.37, 4.40) with (165.11, -306.85) force +[05/24/2026 06:07:44] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:07:44] launching puck at (4.26, -2.61) with (-297.15, 181.99) force +[05/24/2026 06:07:50] force = 70 * 0.7398572 = 51.79 +[05/24/2026 06:07:50] launching puck at (2.47, 1.23) with (-128.09, -63.75) force +[05/24/2026 06:07:54] Client 15 sent emoji emote 0 +[05/24/2026 06:08:02] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:08:02] launching puck at (1.86, -4.64) with (-129.76, 323.39) force +[05/24/2026 06:08:10] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:08:10] launching puck at (-1.51, 4.77) with (105.49, -332.10) force +[05/24/2026 06:08:17] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:08:17] launching puck at (-3.40, -3.67) with (236.65, 255.77) force +[05/24/2026 06:08:18] Red goal scored, red score is now 2 +[05/24/2026 06:08:20] Client 16 sent emoji emote 5 +[05/24/2026 06:08:22] Client 15 sent emoji emote 5 +[05/24/2026 06:08:25] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:08:25] launching puck at (-0.14, 5.00) with (9.60, -348.32) force +[05/24/2026 06:08:31] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:08:31] launching puck at (4.23, -2.67) with (-294.64, 186.03) force +[05/24/2026 06:08:38] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:08:38] launching puck at (0.53, 4.97) with (-37.04, -346.48) force +[05/24/2026 06:08:45] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:08:45] launching puck at (-0.39, -4.98) with (27.47, 347.37) force +[05/24/2026 06:08:46] Red goal scored, red score is now 3 +[05/24/2026 06:08:46] Dedicated match PATCH success: 200 {"ok":true,"id":86} +[05/24/2026 06:08:48] Dedicated match winner PATCH success: 200 {"ok":true,"id":86,"winner_id":13,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/24/2026 06:08:51] Rematch requested +[05/24/2026 06:08:55] Rematch was confirmed, closing in 5 secs. new room : +[05/24/2026 06:08:55] {"ok":true,"entry_fee":550,"rc_prize":912,"for_red":{"Players":[{"Name":"peach","LastSeen":1779602935703,"l10_wins":2,"l10_losses":0,"UserId":13,"rc":0.0},{"Name":"Jameeelcadz13","LastSeen":1779602935703,"l10_wins":0,"l10_losses":1,"UserId":16,"rc":0.0}],"GameName":"soccar","Port":26127,"InitTime":1779602935703,"instance_started":true,"match_id":89,"entry_fee":550,"rc_prize":912,"your_team":"red"},"for_blue":{"Players":[{"Name":"peach","LastSeen":1779602935703,"l10_wins":2,"l10_losses":0,"UserId":13,"rc":0.0},{"Name":"Jameeelcadz13","LastSeen":1779602935703,"l10_wins":0,"l10_losses":1,"UserId":16,"rc":0.0}],"GameName":"soccar","Port":26127,"InitTime":1779602935703,"instance_started":true,"match_id":89,"entry_fee":550,"rc_prize":912,"your_team":"blue"},"your_team":""} +[05/24/2026 06:08:55] Mirror server: client disconnected (connId=442715687) +[05/24/2026 06:08:55] Active player connections: 1 +[05/24/2026 06:08:55] Mirror server: client disconnected (connId=-1479581320) +[05/24/2026 06:08:55] Active player connections: 0 +[05/24/2026 06:09:00] Server will be closed due to no players in, 60 +[05/24/2026 06:09:10] Server will be closed due to no players in, 50 +[05/24/2026 06:09:20] Server will be closed due to no players in, 40 +[05/24/2026 06:09:30] Server will be closed due to no players in, 30 +[05/24/2026 06:09:40] Server will be closed due to no players in, 20 +[05/24/2026 06:09:50] Server will be closed due to no players in, 10 +[05/24/2026 06:10:00] All players left, exiting +[05/24/2026 06:10:01] Dedicated match PATCH success: 200 {"ok":true,"id":86} diff --git a/games/soccar/soccar_Data/Logs/87.txt b/games/soccar/soccar_Data/Logs/87.txt new file mode 100644 index 0000000..da2eb9d --- /dev/null +++ b/games/soccar/soccar_Data/Logs/87.txt @@ -0,0 +1,145 @@ +[05/24/2026 06:04:47] Starting server at port 26304 +[05/24/2026 06:04:47] Mirror server exception logging enabled +[05/24/2026 06:04:48] Failed to fetch red and blue names, isServer? +[05/24/2026 06:04:48] Starting auto close watchdog +[05/24/2026 06:04:48] Active player connections: 0 +[05/24/2026 06:04:51] Active player connections: 2 +[05/24/2026 06:04:51] Game started On Server +[05/24/2026 06:04:51] Client 15 set team to Red +[05/24/2026 06:04:51] Client 16 set team to Blue +[05/24/2026 06:04:51] Dedicated match PATCH success: 200 {"ok":true,"id":87} +[05/24/2026 06:04:51] Dedicated match PATCH success: 200 {"ok":true,"id":87} +[05/24/2026 06:04:54] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:04:54] launching puck at (0.02, -5.00) with (-1.62, 348.45) force +[05/24/2026 06:05:00] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:05:00] launching puck at (1.49, 4.77) with (-103.88, -332.61) force +[05/24/2026 06:05:06] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:05:06] launching puck at (3.41, -3.66) with (-237.70, 254.79) force +[05/24/2026 06:05:16] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:05:16] launching puck at (2.65, 4.24) with (-184.88, -295.36) force +[05/24/2026 06:05:21] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:05:21] launching puck at (3.77, -3.28) with (-262.88, 228.72) force +[05/24/2026 06:05:27] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:05:27] launching puck at (4.38, 2.41) with (-305.42, -167.74) force +[05/24/2026 06:05:35] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:05:35] launching puck at (0.90, 4.92) with (-62.46, -342.81) force +[05/24/2026 06:05:43] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:05:43] launching puck at (1.14, 4.87) with (-79.64, -339.23) force +[05/24/2026 06:05:43] Blue goal scored, blue score is now 1 +[05/24/2026 06:05:47] Client 15 sent text emote WOW +[05/24/2026 06:05:49] Client 15 sent text emote Nice shot! +[05/24/2026 06:05:51] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:05:51] launching puck at (-0.01, -5.00) with (0.38, 348.45) force +[05/24/2026 06:06:00] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:06:00] launching puck at (3.73, -3.33) with (-260.02, 231.97) force +[05/24/2026 06:06:05] Client 15 sent text emote What a save! +[05/24/2026 06:06:10] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:06:10] launching puck at (2.64, -4.24) with (-184.18, 295.80) force +[05/24/2026 06:06:17] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:06:17] launching puck at (1.75, 4.68) with (-122.11, -326.36) force +[05/24/2026 06:06:23] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:06:23] launching puck at (0.24, 4.99) with (-16.72, -348.05) force +[05/24/2026 06:06:32] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:06:32] launching puck at (3.71, 3.36) with (-258.28, -233.90) force +[05/24/2026 06:06:37] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:06:37] launching puck at (4.85, -1.20) with (-338.21, 83.88) force +[05/24/2026 06:06:42] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:06:42] launching puck at (1.73, 4.69) with (-120.88, -326.81) force +[05/24/2026 06:06:48] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:06:48] launching puck at (0.07, -5.00) with (-4.88, 348.42) force +[05/24/2026 06:06:54] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:06:54] launching puck at (4.04, 2.95) with (-281.40, -205.51) force +[05/24/2026 06:07:00] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:07:00] launching puck at (1.84, -4.65) with (-127.98, 324.10) force +[05/24/2026 06:07:01] Red goal scored, red score is now 1 +[05/24/2026 06:07:04] Client 15 sent emoji emote 5 +[05/24/2026 06:07:07] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:07:07] launching puck at (-0.07, 5.00) with (5.07, -348.42) force +[05/24/2026 06:07:15] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:07:15] launching puck at (-1.05, -4.89) with (72.87, 340.75) force +[05/24/2026 06:07:19] Client 15 sent text emote Oops +[05/24/2026 06:07:21] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:07:21] launching puck at (0.74, 4.95) with (-51.27, -344.66) force +[05/24/2026 06:07:25] Client 15 sent emoji emote 2 +[05/24/2026 06:07:30] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:07:30] launching puck at (-0.86, 4.93) with (59.94, -343.26) force +[05/24/2026 06:07:36] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:07:36] launching puck at (-1.37, -4.81) with (95.36, 335.15) force +[05/24/2026 06:07:42] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:07:42] launching puck at (4.99, -0.31) with (-347.77, 21.84) force +[05/24/2026 06:07:46] Client 15 sent emoji emote 4 +[05/24/2026 06:07:48] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:07:48] launching puck at (3.73, 3.33) with (-260.03, -231.96) force +[05/24/2026 06:07:58] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:07:58] launching puck at (0.42, -4.98) with (-29.36, 347.21) force +[05/24/2026 06:08:04] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:08:04] launching puck at (-2.74, 4.18) with (190.75, -291.61) force +[05/24/2026 06:08:09] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:08:09] launching puck at (-2.07, -4.55) with (144.01, 317.30) force +[05/24/2026 06:08:14] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:08:14] launching puck at (4.41, 2.36) with (-307.13, -164.59) force +[05/24/2026 06:08:19] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:08:19] launching puck at (0.40, 4.98) with (-27.96, -347.33) force +[05/24/2026 06:08:29] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:08:29] launching puck at (0.20, 5.00) with (-13.83, -348.18) force +[05/24/2026 06:08:33] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:08:33] launching puck at (4.89, -1.03) with (-340.94, 71.99) force +[05/24/2026 06:08:40] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:08:40] launching puck at (4.68, 1.75) with (-326.34, -122.15) force +[05/24/2026 06:08:48] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:08:48] launching puck at (0.42, -4.98) with (-29.53, 347.20) force +[05/24/2026 06:08:49] Red goal scored, red score is now 2 +[05/24/2026 06:08:58] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:08:58] launching puck at (-0.01, 5.00) with (0.56, -348.45) force +[05/24/2026 06:09:03] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:09:03] launching puck at (4.80, 1.39) with (-334.75, -96.77) force +[05/24/2026 06:09:07] Client 15 sent emoji emote 4 +[05/24/2026 06:09:11] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:09:11] launching puck at (4.91, 0.92) with (-342.52, -64.03) force +[05/24/2026 06:09:17] Client 15 sent text emote well played +[05/24/2026 06:09:24] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:09:24] launching puck at (1.06, 4.89) with (-73.94, -340.52) force +[05/24/2026 06:09:32] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:09:32] launching puck at (2.05, 4.56) with (-143.19, -317.67) force +[05/24/2026 06:09:36] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:09:36] launching puck at (4.24, 2.66) with (-295.19, -185.16) force +[05/24/2026 06:09:41] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:09:41] launching puck at (4.53, 2.12) with (-315.46, -148.00) force +[05/24/2026 06:09:45] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:09:45] launching puck at (-4.12, -2.83) with (287.21, 197.30) force +[05/24/2026 06:09:49] Client 15 sent emoji emote 4 +[05/24/2026 06:09:52] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:09:52] launching puck at (0.78, 4.94) with (-54.39, -344.18) force +[05/24/2026 06:10:03] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:10:03] launching puck at (-4.70, -1.70) with (327.78, 118.24) force +[05/24/2026 06:10:08] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:10:08] launching puck at (-0.96, 4.91) with (66.97, -341.96) force +[05/24/2026 06:10:18] force = 70 * 0.9622618 = 67.35832 +[05/24/2026 06:10:18] launching puck at (-4.59, -0.65) with (308.92, 44.06) force +[05/24/2026 06:10:25] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:10:25] launching puck at (-3.20, 3.84) with (223.28, -267.52) force +[05/24/2026 06:10:30] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:10:30] launching puck at (1.30, 4.83) with (-90.82, -336.41) force +[05/24/2026 06:10:31] Blue goal scored, blue score is now 2 +[05/24/2026 06:10:33] Client 15 sent emoji emote 4 +[05/24/2026 06:10:35] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:10:35] launching puck at (0.05, -5.00) with (-3.23, 348.44) force +[05/24/2026 06:10:42] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:10:42] launching puck at (1.43, 4.79) with (-99.46, -333.96) force +[05/24/2026 06:10:48] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:10:48] launching puck at (-2.35, -4.41) with (164.02, 307.44) force +[05/24/2026 06:10:49] Red goal scored, red score is now 3 +[05/24/2026 06:10:49] Dedicated match PATCH success: 200 {"ok":true,"id":87} +[05/24/2026 06:10:51] Dedicated match winner PATCH success: 200 {"ok":true,"id":87,"winner_id":17,"economy":{"entry_fee_rc":106,"rc_prize":174,"participant_cc":100}} +[05/24/2026 06:10:56] Mirror server: client disconnected (connId=207068045) +[05/24/2026 06:10:56] Active player connections: 1 +[05/24/2026 06:11:19] Mirror server: client disconnected (connId=224824654) +[05/24/2026 06:11:19] Active player connections: 0 +[05/24/2026 06:11:24] Server will be closed due to no players in, 60 +[05/24/2026 06:11:34] Server will be closed due to no players in, 50 +[05/24/2026 06:11:44] Server will be closed due to no players in, 40 +[05/24/2026 06:11:54] Server will be closed due to no players in, 30 +[05/24/2026 06:12:04] Server will be closed due to no players in, 20 +[05/24/2026 06:12:14] Server will be closed due to no players in, 10 +[05/24/2026 06:12:24] All players left, exiting +[05/24/2026 06:12:25] Dedicated match PATCH success: 200 {"ok":true,"id":87} diff --git a/games/soccar/soccar_Data/Logs/88.txt b/games/soccar/soccar_Data/Logs/88.txt new file mode 100644 index 0000000..f0d3fb1 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/88.txt @@ -0,0 +1,83 @@ +[05/24/2026 06:06:38] Starting server at port 26424 +[05/24/2026 06:06:38] Mirror server exception logging enabled +[05/24/2026 06:06:38] Failed to fetch red and blue names, isServer? +[05/24/2026 06:06:38] Starting auto close watchdog +[05/24/2026 06:06:38] Active player connections: 0 +[05/24/2026 06:06:41] Active player connections: 1 +[05/24/2026 06:06:41] Client 15 set team to Blue +[05/24/2026 06:06:41] Active player connections: 2 +[05/24/2026 06:06:41] Game started On Server +[05/24/2026 06:06:41] Client 16 set team to Red +[05/24/2026 06:06:41] Dedicated match PATCH success: 200 {"ok":true,"id":88} +[05/24/2026 06:06:41] Dedicated match PATCH success: 200 {"ok":true,"id":88} +[05/24/2026 06:06:56] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:06:56] launching puck at (4.99, -0.27) with (-347.94, 18.98) force +[05/24/2026 06:07:02] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:07:02] launching puck at (0.01, 5.00) with (-0.90, -348.45) force +[05/24/2026 06:07:03] Blue goal scored, blue score is now 1 +[05/24/2026 06:07:12] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:07:12] launching puck at (4.97, -0.59) with (-346.03, 41.01) force +[05/24/2026 06:07:21] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:07:21] launching puck at (-4.11, 2.84) with (286.60, -198.19) force +[05/24/2026 06:07:26] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:07:26] launching puck at (3.62, -3.45) with (-252.32, 240.32) force +[05/24/2026 06:07:34] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:07:34] launching puck at (4.22, 2.69) with (-293.92, -187.16) force +[05/24/2026 06:07:39] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:07:39] launching puck at (1.40, -4.80) with (-97.42, 334.56) force +[05/24/2026 06:07:47] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:07:47] launching puck at (-2.27, -4.45) with (158.38, 310.38) force +[05/24/2026 06:07:52] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:07:52] launching puck at (-1.25, -4.84) with (86.98, 337.42) force +[05/24/2026 06:07:59] force = 70 * 0.1320937 = 9.246559 +[05/24/2026 06:07:59] launching puck at (-0.29, 0.71) with (2.68, -6.60) force +[05/24/2026 06:08:07] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:08:07] launching puck at (-3.87, 3.16) with (269.97, -220.31) force +[05/24/2026 06:08:08] Blue goal scored, blue score is now 2 +[05/24/2026 06:08:13] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:08:13] launching puck at (0.10, -5.00) with (-6.74, 348.39) force +[05/24/2026 06:08:24] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:08:24] launching puck at (-3.40, 3.67) with (236.89, -255.55) force +[05/24/2026 06:08:29] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:08:29] launching puck at (-4.27, -2.60) with (297.65, 181.18) force +[05/24/2026 06:08:40] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:08:40] launching puck at (2.09, 4.54) with (-145.91, -316.43) force +[05/24/2026 06:08:45] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:08:45] launching puck at (3.31, -3.74) with (-230.95, 260.92) force +[05/24/2026 06:08:54] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:08:54] launching puck at (1.92, 4.62) with (-133.51, -321.86) force +[05/24/2026 06:08:59] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:08:59] launching puck at (4.79, -1.44) with (-333.66, 100.45) force +[05/24/2026 06:09:12] force = 70 * 0.8964879 = 62.75415 +[05/24/2026 06:09:12] launching puck at (-3.83, -0.98) with (240.58, 61.36) force +[05/24/2026 06:09:26] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:09:26] launching puck at (-3.50, 3.57) with (243.92, -248.85) force +[05/24/2026 06:09:34] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:09:34] launching puck at (-3.45, 3.61) with (240.77, -251.89) force +[05/24/2026 06:09:40] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:09:40] launching puck at (-1.06, 4.89) with (73.84, -340.54) force +[05/24/2026 06:09:48] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:09:48] launching puck at (-2.46, 4.35) with (171.40, -303.38) force +[05/24/2026 06:09:53] force = 70 * 0.710258 = 49.71806 +[05/24/2026 06:09:53] launching puck at (2.14, -1.46) with (-106.32, 72.58) force +[05/24/2026 06:10:00] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:10:00] launching puck at (-1.73, 4.69) with (120.83, -326.83) force +[05/24/2026 06:10:00] Blue goal scored, blue score is now 3 +[05/24/2026 06:10:01] Dedicated match PATCH success: 200 {"ok":true,"id":88} +[05/24/2026 06:10:03] Dedicated match winner PATCH success: 200 {"ok":true,"id":88,"winner_id":12,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/24/2026 06:10:03] Client 16 sent text emote GG +[05/24/2026 06:10:06] Rematch requested +[05/24/2026 06:10:20] Rematch was confirmed, closing in 5 secs. new room : +[05/24/2026 06:10:20] {"ok":true,"entry_fee":32,"rc_prize":52,"for_red":{"Players":[{"Name":"warlock2","LastSeen":1779603020328,"l10_wins":1,"l10_losses":5,"UserId":3,"rc":0.0},{"Name":"Echo","LastSeen":1779603020328,"l10_wins":2,"l10_losses":0,"UserId":12,"rc":0.0}],"GameName":"soccar","Port":26488,"InitTime":1779603020328,"instance_started":true,"match_id":91,"entry_fee":32,"rc_prize":52,"your_team":"red"},"for_blue":{"Players":[{"Name":"warlock2","LastSeen":1779603020328,"l10_wins":1,"l10_losses":5,"UserId":3,"rc":0.0},{"Name":"Echo","LastSeen":1779603020328,"l10_wins":2,"l10_losses":0,"UserId":12,"rc":0.0}],"GameName":"soccar","Port":26488,"InitTime":1779603020328,"instance_started":true,"match_id":91,"entry_fee":32,"rc_prize":52,"your_team":"blue"},"your_team":""} +[05/24/2026 06:10:20] Mirror server: client disconnected (connId=720396982) +[05/24/2026 06:10:20] Active player connections: 1 +[05/24/2026 06:10:20] Mirror server: client disconnected (connId=954096725) +[05/24/2026 06:10:20] Active player connections: 0 +[05/24/2026 06:10:25] Server will be closed due to no players in, 60 +[05/24/2026 06:10:35] Server will be closed due to no players in, 50 +[05/24/2026 06:10:45] Server will be closed due to no players in, 40 +[05/24/2026 06:10:55] Server will be closed due to no players in, 30 +[05/24/2026 06:11:05] Server will be closed due to no players in, 20 +[05/24/2026 06:11:15] Server will be closed due to no players in, 10 +[05/24/2026 06:11:25] All players left, exiting +[05/24/2026 06:11:25] Dedicated match PATCH success: 200 {"ok":true,"id":88} diff --git a/games/soccar/soccar_Data/Logs/89.txt b/games/soccar/soccar_Data/Logs/89.txt new file mode 100644 index 0000000..2c21714 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/89.txt @@ -0,0 +1,256 @@ +[05/24/2026 06:08:57] Starting server at port 26127 +[05/24/2026 06:08:57] Mirror server exception logging enabled +[05/24/2026 06:08:57] Failed to fetch red and blue names, isServer? +[05/24/2026 06:08:57] Starting auto close watchdog +[05/24/2026 06:08:57] Active player connections: 0 +[05/24/2026 06:08:59] Active player connections: 1 +[05/24/2026 06:08:59] Client 15 set team to Red +[05/24/2026 06:09:00] Dedicated match PATCH success: 200 {"ok":true,"id":89} +[05/24/2026 06:09:00] Active player connections: 2 +[05/24/2026 06:09:00] Game started On Server +[05/24/2026 06:09:00] Client 16 set team to Blue +[05/24/2026 06:09:00] Dedicated match PATCH success: 200 {"ok":true,"id":89} +[05/24/2026 06:09:04] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:09:04] launching puck at (-0.12, -5.00) with (8.63, 348.35) force +[05/24/2026 06:09:13] force = 70 * 0.9919775 = 69.43842 +[05/24/2026 06:09:13] launching puck at (4.71, 1.56) with (-326.87, -108.54) force +[05/24/2026 06:09:19] Client 16 sent emoji emote 1 +[05/24/2026 06:09:20] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:09:20] launching puck at (1.52, -4.76) with (-105.93, 331.96) force +[05/24/2026 06:09:22] Client 16 sent emoji emote 1 +[05/24/2026 06:09:26] Client 15 sent emoji emote 0 +[05/24/2026 06:09:30] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:09:30] launching puck at (-3.11, 3.92) with (216.41, -273.11) force +[05/24/2026 06:09:36] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:09:36] launching puck at (2.99, -4.00) with (-208.71, 279.03) force +[05/24/2026 06:09:39] Client 15 sent emoji emote 4 +[05/24/2026 06:09:45] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:09:45] launching puck at (0.41, 4.98) with (-28.36, -347.30) force +[05/24/2026 06:09:51] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:09:51] launching puck at (-1.05, 4.89) with (72.85, -340.75) force +[05/24/2026 06:09:56] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:09:56] launching puck at (4.72, 1.64) with (-329.17, -114.32) force +[05/24/2026 06:10:03] force = 70 * 0.749703 = 52.47921 +[05/24/2026 06:10:03] launching puck at (-0.23, 2.81) with (12.23, -147.65) force +[05/24/2026 06:10:10] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:10:10] launching puck at (-4.89, -1.03) with (341.05, 71.46) force +[05/24/2026 06:10:14] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:10:14] launching puck at (2.30, -4.44) with (-160.40, 309.34) force +[05/24/2026 06:10:17] Client 15 sent emoji emote 0 +[05/24/2026 06:10:25] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:10:25] launching puck at (-0.75, 4.94) with (51.94, -344.56) force +[05/24/2026 06:10:30] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:10:30] launching puck at (1.09, -4.88) with (-76.09, 340.04) force +[05/24/2026 06:10:32] Red goal scored, red score is now 1 +[05/24/2026 06:10:37] Client 16 sent emoji emote 0 +[05/24/2026 06:10:39] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:10:39] launching puck at (0.05, 5.00) with (-3.54, -348.44) force +[05/24/2026 06:10:41] Client 16 sent emoji emote 0 +[05/24/2026 06:10:46] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:10:46] launching puck at (1.85, -4.65) with (-128.74, 323.80) force +[05/24/2026 06:10:49] Client 16 sent emoji emote 0 +[05/24/2026 06:10:50] force = 70 * 0.8235098 = 57.64568 +[05/24/2026 06:10:50] launching puck at (-2.51, 2.20) with (144.52, -126.55) force +[05/24/2026 06:10:54] Client 16 sent emoji emote 1 +[05/24/2026 06:10:56] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:10:56] launching puck at (3.38, -3.69) with (-235.34, 256.97) force +[05/24/2026 06:11:00] Client 15 sent emoji emote 1 +[05/24/2026 06:11:02] force = 70 * 0.9268863 = 64.88204 +[05/24/2026 06:11:02] launching puck at (-1.82, 3.85) with (118.15, -249.66) force +[05/24/2026 06:11:09] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:11:09] launching puck at (3.54, -3.53) with (-246.97, 245.82) force +[05/24/2026 06:11:12] Client 15 sent emoji emote 0 +[05/24/2026 06:11:17] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:11:17] launching puck at (0.91, 4.92) with (-63.13, -342.69) force +[05/24/2026 06:11:22] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:11:22] launching puck at (0.93, -4.91) with (-64.60, 342.41) force +[05/24/2026 06:11:30] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:11:30] launching puck at (-0.86, 4.93) with (59.70, -343.30) force +[05/24/2026 06:11:35] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:11:35] launching puck at (3.77, -3.29) with (-262.50, 229.16) force +[05/24/2026 06:11:43] force = 70 * 0.7623494 = 53.36446 +[05/24/2026 06:11:43] launching puck at (2.64, 1.22) with (-140.67, -64.93) force +[05/24/2026 06:11:48] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:11:48] launching puck at (-4.20, 2.72) with (292.56, -189.29) force +[05/24/2026 06:11:53] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:11:53] launching puck at (-2.92, 4.06) with (203.70, -282.71) force +[05/24/2026 06:11:56] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:11:56] launching puck at (0.86, -4.93) with (-59.69, 343.30) force +[05/24/2026 06:12:00] Client 15 sent emoji emote 0 +[05/24/2026 06:12:03] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:12:03] launching puck at (1.30, 4.83) with (-90.86, -336.40) force +[05/24/2026 06:12:08] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:12:08] launching puck at (0.50, -4.97) with (-34.90, 346.70) force +[05/24/2026 06:12:11] Client 15 sent emoji emote 1 +[05/24/2026 06:12:13] Client 15 sent emoji emote 1 +[05/24/2026 06:12:14] Client 15 sent emoji emote 1 +[05/24/2026 06:12:16] force = 70 * 0.8793781 = 61.55647 +[05/24/2026 06:12:16] launching puck at (-3.24, -1.98) with (199.64, 121.65) force +[05/24/2026 06:12:21] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:12:21] launching puck at (-1.83, 4.65) with (127.45, -324.31) force +[05/24/2026 06:12:30] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:12:30] launching puck at (0.96, 4.91) with (-66.90, -341.97) force +[05/24/2026 06:12:34] force = 70 * 0.7460191 = 52.22134 +[05/24/2026 06:12:34] launching puck at (-1.24, 2.51) with (64.65, -131.17) force +[05/24/2026 06:12:39] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:12:39] launching puck at (1.61, 4.73) with (-112.40, -329.83) force +[05/24/2026 06:12:44] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:12:44] launching puck at (3.16, -3.88) with (-220.21, 270.05) force +[05/24/2026 06:12:47] Client 15 sent emoji emote 0 +[05/24/2026 06:12:49] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:12:49] launching puck at (2.91, 4.06) with (-203.12, -283.13) force +[05/24/2026 06:12:54] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:12:54] launching puck at (-1.62, -4.73) with (112.98, 329.63) force +[05/24/2026 06:13:00] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:13:00] launching puck at (0.77, 4.94) with (-53.75, -344.28) force +[05/24/2026 06:13:04] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:13:04] launching puck at (3.62, -3.45) with (-252.31, 240.33) force +[05/24/2026 06:13:13] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:13:13] launching puck at (0.64, 4.96) with (-44.68, -345.58) force +[05/24/2026 06:13:17] force = 70 * 0.8341631 = 58.39142 +[05/24/2026 06:13:17] launching puck at (0.51, 3.38) with (-29.99, -197.15) force +[05/24/2026 06:13:24] force = 70 * 0.6962467 = 48.73727 +[05/24/2026 06:13:24] launching puck at (-1.68, -1.86) with (82.10, 90.78) force +[05/24/2026 06:13:29] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:13:29] launching puck at (0.61, -4.96) with (-42.52, 345.85) force +[05/24/2026 06:13:34] Client 15 sent emoji emote 4 +[05/24/2026 06:13:35] force = 70 * 0.8020801 = 56.14561 +[05/24/2026 06:13:35] launching puck at (-1.90, -2.54) with (106.50, 142.85) force +[05/24/2026 06:13:40] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:13:40] launching puck at (-2.82, -4.13) with (196.79, 287.56) force +[05/24/2026 06:13:44] Client 15 sent emoji emote 4 +[05/24/2026 06:13:46] force = 70 * 0.8769403 = 61.38582 +[05/24/2026 06:13:46] launching puck at (2.18, -3.08) with (-133.77, 189.29) force +[05/24/2026 06:13:46] Client 15 sent emoji emote 4 +[05/24/2026 06:13:51] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:13:51] launching puck at (0.52, -4.97) with (-36.03, 346.58) force +[05/24/2026 06:13:57] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:13:57] launching puck at (1.75, 4.68) with (-122.12, -326.35) force +[05/24/2026 06:14:02] force = 70 * 0.8057933 = 56.40553 +[05/24/2026 06:14:02] launching puck at (3.20, 0.03) with (-180.50, -1.84) force +[05/24/2026 06:14:09] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:14:09] launching puck at (-0.17, 5.00) with (12.03, -348.25) force +[05/24/2026 06:14:15] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:14:15] launching puck at (4.98, 0.46) with (-347.00, -31.80) force +[05/24/2026 06:14:20] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:14:20] launching puck at (-2.12, -4.53) with (147.61, 315.65) force +[05/24/2026 06:14:28] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:14:28] launching puck at (1.40, -4.80) with (-97.48, 334.54) force +[05/24/2026 06:14:33] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:14:33] launching puck at (-2.85, 4.11) with (198.62, -286.30) force +[05/24/2026 06:14:39] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:14:39] launching puck at (4.38, -2.40) with (-305.52, 167.56) force +[05/24/2026 06:14:43] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:14:43] launching puck at (2.31, 4.43) with (-161.04, -309.01) force +[05/24/2026 06:14:52] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:14:52] launching puck at (1.48, -4.77) with (-103.43, 332.75) force +[05/24/2026 06:14:57] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:14:57] launching puck at (-3.61, -3.46) with (251.56, 241.12) force +[05/24/2026 06:15:03] force = 70 * 0.9523757 = 66.6663 +[05/24/2026 06:15:03] launching puck at (3.59, -2.76) with (-239.15, 183.92) force +[05/24/2026 06:15:08] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:15:08] launching puck at (-4.68, 1.77) with (325.94, -123.21) force +[05/24/2026 06:15:13] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:15:13] launching puck at (0.56, 4.97) with (-38.86, -346.28) force +[05/24/2026 06:15:18] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:15:18] launching puck at (-0.25, 4.99) with (17.51, -348.01) force +[05/24/2026 06:15:22] force = 70 * 0.9026005 = 63.18204 +[05/24/2026 06:15:22] launching puck at (-4.01, 0.05) with (253.66, -3.32) force +[05/24/2026 06:15:27] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:15:27] launching puck at (3.52, 3.55) with (-245.04, -247.74) force +[05/24/2026 06:15:33] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:15:33] launching puck at (-4.13, 2.82) with (287.60, -196.74) force +[05/24/2026 06:15:33] Blue goal scored, blue score is now 1 +[05/24/2026 06:15:38] Client 16 sent emoji emote 0 +[05/24/2026 06:15:39] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:15:39] launching puck at (0.06, -5.00) with (-4.01, 348.43) force +[05/24/2026 06:15:41] Client 16 sent emoji emote 5 +[05/24/2026 06:15:44] Client 16 sent emoji emote 0 +[05/24/2026 06:15:45] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:15:45] launching puck at (-1.41, 4.80) with (98.22, -334.33) force +[05/24/2026 06:15:51] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:15:51] launching puck at (-0.74, -4.94) with (51.56, 344.62) force +[05/24/2026 06:15:56] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:15:56] launching puck at (-0.48, 4.98) with (33.35, -346.85) force +[05/24/2026 06:16:01] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:16:01] launching puck at (5.00, -0.12) with (-348.36, 8.13) force +[05/24/2026 06:16:04] force = 70 * 0.795143 = 55.66001 +[05/24/2026 06:16:04] launching puck at (-3.11, -0.31) with (173.04, 17.18) force +[05/24/2026 06:16:09] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:16:09] launching puck at (0.44, 4.98) with (-30.32, -347.13) force +[05/24/2026 06:16:15] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:16:15] launching puck at (2.81, 4.14) with (-195.58, -288.39) force +[05/24/2026 06:16:21] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:16:21] launching puck at (4.88, 1.08) with (-340.28, -75.05) force +[05/24/2026 06:16:27] force = 70 * 0.9765199 = 68.35639 +[05/24/2026 06:16:27] launching puck at (-4.63, 1.22) with (316.61, -83.24) force +[05/24/2026 06:16:31] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:16:31] launching puck at (0.05, 5.00) with (-3.16, -348.44) force +[05/24/2026 06:16:31] Blue goal scored, blue score is now 2 +[05/24/2026 06:16:35] Client 15 sent emoji emote 0 +[05/24/2026 06:16:37] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:16:37] launching puck at (0.02, -5.00) with (-1.69, 348.45) force +[05/24/2026 06:16:43] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:16:43] launching puck at (-1.01, 4.90) with (70.11, -341.33) force +[05/24/2026 06:16:48] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:16:48] launching puck at (-1.17, -4.86) with (81.76, 338.73) force +[05/24/2026 06:16:49] Client 16 sent emoji emote 0 +[05/24/2026 06:16:54] force = 70 * 0.9797404 = 68.58183 +[05/24/2026 06:16:54] launching puck at (-4.57, -1.54) with (313.64, 105.45) force +[05/24/2026 06:17:00] force = 70 * 0.9436206 = 66.05344 +[05/24/2026 06:17:00] launching puck at (3.19, -3.07) with (-210.95, 202.97) force +[05/24/2026 06:17:00] Red goal scored, red score is now 2 +[05/24/2026 06:17:03] Client 16 sent emoji emote 2 +[05/24/2026 06:17:06] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:17:06] launching puck at (-0.20, 5.00) with (14.05, -348.17) force +[05/24/2026 06:17:11] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:17:11] launching puck at (3.28, -3.77) with (-228.83, 262.79) force +[05/24/2026 06:17:17] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:17:17] launching puck at (1.32, 4.82) with (-92.14, -336.05) force +[05/24/2026 06:17:22] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:17:22] launching puck at (-3.04, -3.97) with (211.91, 276.61) force +[05/24/2026 06:17:28] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:17:28] launching puck at (-2.12, 4.53) with (147.61, -315.64) force +[05/24/2026 06:17:35] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:17:35] launching puck at (2.80, -4.14) with (-194.88, 288.86) force +[05/24/2026 06:17:41] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:17:41] launching puck at (3.54, 3.53) with (-246.88, -245.91) force +[05/24/2026 06:17:47] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:17:47] launching puck at (3.34, -3.72) with (-232.80, 259.28) force +[05/24/2026 06:17:53] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:17:53] launching puck at (-2.93, 4.05) with (203.95, -282.53) force +[05/24/2026 06:18:00] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:18:00] launching puck at (1.25, -4.84) with (-87.40, 337.31) force +[05/24/2026 06:18:12] force = 70 * 0.9958832 = 69.71182 +[05/24/2026 06:18:12] launching puck at (1.17, 5.96) with (-81.51, -415.63) force +[05/24/2026 06:18:18] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:18:18] launching puck at (3.27, -3.78) with (-227.89, 263.60) force +[05/24/2026 06:18:23] force = 70 * 0.9958832 = 69.71182 +[05/24/2026 06:18:23] launching puck at (3.15, 5.20) with (-219.40, -362.30) force +[05/24/2026 06:18:29] force = 70 * 0.9725536 = 68.07875 +[05/24/2026 06:18:29] launching puck at (-0.40, 4.73) with (27.37, -321.90) force +[05/24/2026 06:18:37] force = 70 * 0.9958832 = 69.71182 +[05/24/2026 06:18:37] launching puck at (0.06, 6.08) with (-4.34, -423.53) force +[05/24/2026 06:18:42] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:18:42] launching puck at (-3.08, -3.94) with (214.92, 274.28) force +[05/24/2026 06:18:46] force = 70 * 0.9958832 = 69.71182 +[05/24/2026 06:18:46] launching puck at (-1.98, 5.74) with (138.32, -400.33) force +[05/24/2026 06:18:53] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:18:53] launching puck at (-0.35, -4.99) with (24.66, 347.58) force +[05/24/2026 06:18:54] Red goal scored, red score is now 3 +[05/24/2026 06:18:54] Dedicated match PATCH success: 200 {"ok":true,"id":89} +[05/24/2026 06:18:56] Dedicated match winner PATCH success: 200 {"ok":true,"id":89,"winner_id":13,"economy":{"entry_fee_rc":550,"rc_prize":912,"participant_cc":100}} +[05/24/2026 06:18:57] Client 16 sent emoji emote 5 +[05/24/2026 06:19:02] Mirror server: client disconnected (connId=-1479581138) +[05/24/2026 06:19:02] Active player connections: 1 +[05/24/2026 06:19:30] Mirror server transport error (connId=442722640, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting. +[05/24/2026 06:19:30] Mirror server: client disconnected (connId=442722640) +[05/24/2026 06:19:30] Active player connections: 0 +[05/24/2026 06:19:35] Server will be closed due to no players in, 60 +[05/24/2026 06:19:45] Server will be closed due to no players in, 50 +[05/24/2026 06:19:55] Server will be closed due to no players in, 40 +[05/24/2026 06:20:05] Server will be closed due to no players in, 30 +[05/24/2026 06:20:15] Server will be closed due to no players in, 20 +[05/24/2026 06:20:25] Server will be closed due to no players in, 10 +[05/24/2026 06:20:35] All players left, exiting +[05/24/2026 06:20:35] Dedicated match PATCH success: 200 {"ok":true,"id":89} diff --git a/games/soccar/soccar_Data/Logs/9.txt b/games/soccar/soccar_Data/Logs/9.txt new file mode 100644 index 0000000..f5f463e --- /dev/null +++ b/games/soccar/soccar_Data/Logs/9.txt @@ -0,0 +1,88 @@ +[05/16/2026 05:32:12] Starting server at port 26082 +[05/16/2026 05:32:12] Failed to fetch red and blue names, isServer? +[05/16/2026 05:32:12] Starting auto close watchdog +[05/16/2026 05:32:12] Active player connections: 0 +[05/16/2026 05:32:16] Active player connections: 1 +[05/16/2026 05:32:16] Client 15 set team to Red +[05/16/2026 05:32:17] Dedicated match PATCH success: 200 {"ok":true,"id":9} +[05/16/2026 05:32:17] Active player connections: 2 +[05/16/2026 05:32:17] Game started On Server +[05/16/2026 05:32:18] Client 16 set team to Blue +[05/16/2026 05:32:19] Dedicated match PATCH success: 200 {"ok":true,"id":9} +[05/16/2026 05:32:19] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:32:19] launching puck at (0.36, -4.99) with (-24.88, 347.56) force +[05/16/2026 05:32:35] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:32:35] launching puck at (1.35, 4.81) with (-94.34, -335.44) force +[05/16/2026 05:32:40] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:32:40] launching puck at (-0.55, -4.97) with (38.65, 346.30) force +[05/16/2026 05:32:46] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:32:46] launching puck at (2.38, 4.40) with (-165.75, -306.51) force +[05/16/2026 05:32:52] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:32:52] launching puck at (-0.86, -4.93) with (59.98, 343.25) force +[05/16/2026 05:32:59] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:32:59] launching puck at (3.54, 3.53) with (-246.54, -246.25) force +[05/16/2026 05:33:06] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:33:06] launching puck at (-0.87, -4.92) with (60.31, 343.19) force +[05/16/2026 05:33:14] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:33:14] launching puck at (-1.55, 4.75) with (108.18, -331.23) force +[05/16/2026 05:33:21] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:33:21] launching puck at (-2.75, -4.18) with (191.66, 291.01) force +[05/16/2026 05:33:21] Red goal scored, red score is now 1 +[05/16/2026 05:33:26] Client 16 sent emoji emote 5 +[05/16/2026 05:33:29] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:33:29] launching puck at (0.01, 5.00) with (-0.43, -348.45) force +[05/16/2026 05:33:35] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:33:35] launching puck at (2.03, -4.57) with (-141.47, 318.44) force +[05/16/2026 05:33:42] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:33:42] launching puck at (-2.24, 4.47) with (155.81, -311.68) force +[05/16/2026 05:33:47] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:33:47] launching puck at (0.25, -4.99) with (-17.37, 348.02) force +[05/16/2026 05:33:54] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:33:54] launching puck at (-4.18, 2.74) with (291.38, -191.10) force +[05/16/2026 05:34:01] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:34:01] launching puck at (0.36, -4.99) with (-25.31, 347.53) force +[05/16/2026 05:34:10] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:34:10] launching puck at (3.43, 3.63) with (-239.34, -253.25) force +[05/16/2026 05:34:17] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:34:17] launching puck at (-1.21, -4.85) with (84.63, 338.02) force +[05/16/2026 05:34:17] Red goal scored, red score is now 2 +[05/16/2026 05:34:22] Client 16 sent emoji emote 1 +[05/16/2026 05:34:26] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:34:26] launching puck at (-0.11, 5.00) with (7.70, -348.37) force +[05/16/2026 05:34:32] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:34:32] launching puck at (-0.07, -5.00) with (5.10, 348.42) force +[05/16/2026 05:34:38] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:34:38] launching puck at (-1.47, 4.78) with (102.25, -333.11) force +[05/16/2026 05:34:44] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:34:44] launching puck at (4.29, -2.57) with (-298.98, 178.97) force +[05/16/2026 05:34:49] Client 15 sent emoji emote 0 +[05/16/2026 05:34:51] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:34:51] launching puck at (1.75, 4.68) with (-121.97, -326.41) force +[05/16/2026 05:34:57] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:34:57] launching puck at (4.68, -1.76) with (-326.27, 122.34) force +[05/16/2026 05:35:03] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:35:03] launching puck at (4.31, -2.53) with (-300.57, 176.28) force +[05/16/2026 05:35:10] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:35:10] launching puck at (0.98, -4.90) with (-68.19, 341.72) force +[05/16/2026 05:35:14] Client 16 sent emoji emote 0 +[05/16/2026 05:35:19] force = 70 * 0.8129272 = 56.90491 +[05/16/2026 05:35:19] launching puck at (3.24, -0.31) with (-184.24, 17.73) force +[05/16/2026 05:35:26] force = 70 * 0.9955804 = 69.69063 +[05/16/2026 05:35:26] launching puck at (-0.07, -5.00) with (4.88, 348.42) force +[05/16/2026 05:35:26] Red goal scored, red score is now 3 +[05/16/2026 05:35:27] Dedicated match PATCH success: 200 {"ok":true,"id":9} +[05/16/2026 05:35:29] Dedicated match winner PATCH success: 200 {"ok":true,"id":9,"winner_id":5,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/16/2026 05:35:32] Client 16 sent emoji emote 3 +[05/16/2026 05:35:40] Rematch requested +[05/16/2026 05:35:42] Rematch was confirmed, closing in 5 secs. new room : +[05/16/2026 05:35:42] {"ok":true,"entry_fee":196,"rc_prize":324,"for_red":{"Players":[{"Name":"Jameelcadz13","LastSeen":1778909742878,"l10_wins":1,"l10_losses":1,"UserId":5,"rc":0.0},{"Name":"lance","LastSeen":1778909742878,"l10_wins":1,"l10_losses":1,"UserId":4,"rc":0.0}],"GameName":"soccar","Port":26495,"InitTime":1778909742878,"instance_started":true,"match_id":10,"entry_fee":196,"rc_prize":324,"your_team":"red"},"for_blue":{"Players":[{"Name":"Jameelcadz13","LastSeen":1778909742878,"l10_wins":1,"l10_losses":1,"UserId":5,"rc":0.0},{"Name":"lance","LastSeen":1778909742878,"l10_wins":1,"l10_losses":1,"UserId":4,"rc":0.0}],"GameName":"soccar","Port":26495,"InitTime":1778909742878,"instance_started":true,"match_id":10,"entry_fee":196,"rc_prize":324,"your_team":"blue"},"your_team":""} +[05/16/2026 05:35:43] Active player connections: 1 +[05/16/2026 05:35:53] Active player connections: 0 +[05/16/2026 05:35:58] Server will be closed due to no players in, 60 +[05/16/2026 05:36:08] Server will be closed due to no players in, 50 +[05/16/2026 05:36:18] Server will be closed due to no players in, 40 +[05/16/2026 05:36:28] Server will be closed due to no players in, 30 +[05/16/2026 05:36:38] Server will be closed due to no players in, 20 +[05/16/2026 05:36:48] Server will be closed due to no players in, 10 +[05/16/2026 05:36:58] All players left, exiting +[05/16/2026 05:36:59] Dedicated match PATCH success: 200 {"ok":true,"id":9} diff --git a/games/soccar/soccar_Data/Logs/90.txt b/games/soccar/soccar_Data/Logs/90.txt new file mode 100644 index 0000000..e16bd68 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/90.txt @@ -0,0 +1,116 @@ +[05/24/2026 06:10:14] Starting server at port 26500 +[05/24/2026 06:10:14] Mirror server exception logging enabled +[05/24/2026 06:10:14] Failed to fetch red and blue names, isServer? +[05/24/2026 06:10:14] Starting auto close watchdog +[05/24/2026 06:10:14] Active player connections: 0 +[05/24/2026 06:10:18] Active player connections: 1 +[05/24/2026 06:10:18] Active player connections: 2 +[05/24/2026 06:10:18] Game started On Server +[05/24/2026 06:10:18] Client 15 set team to Blue +[05/24/2026 06:10:18] Client 16 set team to Red +[05/24/2026 06:10:18] Dedicated match PATCH success: 200 {"ok":true,"id":90} +[05/24/2026 06:10:18] Dedicated match PATCH success: 200 {"ok":true,"id":90} +[05/24/2026 06:10:24] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:10:24] launching puck at (-1.38, -4.81) with (95.83, 335.02) force +[05/24/2026 06:10:28] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:10:28] launching puck at (3.63, 3.44) with (-252.93, -239.67) force +[05/24/2026 06:10:37] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:10:37] launching puck at (2.25, 4.47) with (-156.75, -311.20) force +[05/24/2026 06:10:43] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:10:43] launching puck at (-1.86, 4.64) with (129.34, -323.56) force +[05/24/2026 06:10:43] Blue goal scored, blue score is now 1 +[05/24/2026 06:10:54] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:10:54] launching puck at (0.98, -4.90) with (-68.37, 341.68) force +[05/24/2026 06:10:59] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:10:59] launching puck at (-2.92, 4.06) with (203.24, -283.04) force +[05/24/2026 06:11:06] force = 70 * 0.9786318 = 68.50423 +[05/24/2026 06:11:06] launching puck at (-4.28, 2.20) with (293.28, -150.58) force +[05/24/2026 06:11:13] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:11:13] launching puck at (1.29, 4.83) with (-90.13, -336.60) force +[05/24/2026 06:11:18] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:11:18] launching puck at (2.99, 4.01) with (-208.07, -279.51) force +[05/24/2026 06:11:26] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:11:26] launching puck at (4.85, -1.20) with (-338.29, 83.54) force +[05/24/2026 06:11:31] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:11:31] launching puck at (4.56, -2.06) with (-317.46, 143.67) force +[05/24/2026 06:11:36] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:11:36] launching puck at (3.73, 3.33) with (-260.17, -231.80) force +[05/24/2026 06:11:41] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:11:41] launching puck at (3.47, -3.60) with (-242.06, 250.66) force +[05/24/2026 06:11:46] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:11:46] launching puck at (1.14, 4.87) with (-79.15, -339.35) force +[05/24/2026 06:11:53] force = 70 * 0.93012 = 65.1084 +[05/24/2026 06:11:53] launching puck at (2.89, 3.17) with (-188.07, -206.55) force +[05/24/2026 06:11:59] force = 70 * 0.7166786 = 50.1675 +[05/24/2026 06:11:59] launching puck at (-1.70, -2.00) with (85.31, 100.38) force +[05/24/2026 06:12:06] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:12:06] launching puck at (3.57, -3.50) with (-249.05, 243.71) force +[05/24/2026 06:12:12] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:12:12] launching puck at (4.37, 2.44) with (-304.27, -169.83) force +[05/24/2026 06:12:27] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:12:27] launching puck at (1.53, -4.76) with (-106.50, 331.78) force +[05/24/2026 06:12:33] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:12:33] launching puck at (0.96, 4.91) with (-66.88, -341.97) force +[05/24/2026 06:12:39] force = 70 * 0.9349355 = 65.44548 +[05/24/2026 06:12:39] launching puck at (-3.16, -2.98) with (206.67, 194.88) force +[05/24/2026 06:12:44] force = 70 * 0.7362036 = 51.53425 +[05/24/2026 06:12:44] launching puck at (2.73, -0.18) with (-140.92, 9.41) force +[05/24/2026 06:12:49] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:12:49] launching puck at (4.80, -1.41) with (-334.30, 98.31) force +[05/24/2026 06:12:55] force = 70 * 0.8776518 = 61.43562 +[05/24/2026 06:12:55] launching puck at (-2.81, -2.53) with (172.54, 155.63) force +[05/24/2026 06:13:01] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:13:01] launching puck at (0.97, -4.91) with (-67.37, 341.88) force +[05/24/2026 06:13:01] Red goal scored, red score is now 1 +[05/24/2026 06:13:04] Client 15 sent emoji emote 0 +[05/24/2026 06:13:06] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:13:06] launching puck at (0.19, 5.00) with (-13.20, -348.20) force +[05/24/2026 06:13:13] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:13:13] launching puck at (-3.52, -3.55) with (245.34, 247.44) force +[05/24/2026 06:13:18] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:13:18] launching puck at (0.84, 4.93) with (-58.56, -343.50) force +[05/24/2026 06:13:25] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:13:25] launching puck at (4.20, -2.71) with (-292.69, 189.08) force +[05/24/2026 06:13:32] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:13:32] launching puck at (3.51, 3.56) with (-244.76, -248.02) force +[05/24/2026 06:13:38] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:13:38] launching puck at (4.83, -1.28) with (-336.85, 89.19) force +[05/24/2026 06:13:43] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:13:43] launching puck at (-1.91, 4.62) with (133.24, -321.97) force +[05/24/2026 06:13:50] force = 70 * 0.9663134 = 67.64194 +[05/24/2026 06:13:50] launching puck at (-4.46, -1.40) with (301.91, 94.50) force +[05/24/2026 06:13:51] Red goal scored, red score is now 2 +[05/24/2026 06:13:53] Client 15 sent emoji emote 0 +[05/24/2026 06:13:57] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:13:57] launching puck at (-0.09, 5.00) with (6.44, -348.39) force +[05/24/2026 06:14:05] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:14:05] launching puck at (-2.90, -4.07) with (202.29, 283.72) force +[05/24/2026 06:14:10] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:14:10] launching puck at (-2.63, 4.25) with (183.12, -296.46) force +[05/24/2026 06:14:17] force = 70 * 0.9608203 = 67.25742 +[05/24/2026 06:14:17] launching puck at (-0.61, 4.58) with (40.86, -307.82) force +[05/24/2026 06:14:17] Blue goal scored, blue score is now 2 +[05/24/2026 06:14:19] Client 15 sent emoji emote 1 +[05/24/2026 06:14:21] Client 15 sent emoji emote 0 +[05/24/2026 06:14:24] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:14:24] launching puck at (-2.21, -4.48) with (154.08, 312.54) force +[05/24/2026 06:14:29] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:14:29] launching puck at (-0.28, 4.99) with (19.65, -347.90) force +[05/24/2026 06:14:29] Blue goal scored, blue score is now 3 +[05/24/2026 06:14:30] Dedicated match PATCH success: 200 {"ok":true,"id":90} +[05/24/2026 06:14:32] Dedicated match winner PATCH success: 200 {"ok":true,"id":90,"winner_id":15,"economy":{"entry_fee_rc":89,"rc_prize":146,"participant_cc":100}} +[05/24/2026 06:14:36] Rematch requested +[05/24/2026 06:14:45] Rematch was confirmed, closing in 5 secs. new room : +[05/24/2026 06:14:45] {"ok":true,"entry_fee":230,"rc_prize":380,"for_red":{"Players":[{"Name":"SebastianMCS","LastSeen":1779603285126,"l10_wins":1,"l10_losses":2,"UserId":14,"rc":0.0},{"Name":"anne123","LastSeen":1779603285126,"l10_wins":1,"l10_losses":2,"UserId":15,"rc":0.0}],"GameName":"soccar","Port":26236,"InitTime":1779603285126,"instance_started":true,"match_id":94,"entry_fee":230,"rc_prize":380,"your_team":"red"},"for_blue":{"Players":[{"Name":"SebastianMCS","LastSeen":1779603285126,"l10_wins":1,"l10_losses":2,"UserId":14,"rc":0.0},{"Name":"anne123","LastSeen":1779603285126,"l10_wins":1,"l10_losses":2,"UserId":15,"rc":0.0}],"GameName":"soccar","Port":26236,"InitTime":1779603285126,"instance_started":true,"match_id":94,"entry_fee":230,"rc_prize":380,"your_team":"blue"},"your_team":""} +[05/24/2026 06:14:45] Mirror server: client disconnected (connId=2006111904) +[05/24/2026 06:14:45] Active player connections: 1 +[05/24/2026 06:14:45] Mirror server: client disconnected (connId=1761042478) +[05/24/2026 06:14:45] Active player connections: 0 +[05/24/2026 06:14:50] Server will be closed due to no players in, 60 +[05/24/2026 06:15:00] Server will be closed due to no players in, 50 +[05/24/2026 06:15:10] Server will be closed due to no players in, 40 +[05/24/2026 06:15:20] Server will be closed due to no players in, 30 +[05/24/2026 06:15:30] Server will be closed due to no players in, 20 +[05/24/2026 06:15:40] Server will be closed due to no players in, 10 +[05/24/2026 06:15:50] All players left, exiting +[05/24/2026 06:15:50] Dedicated match PATCH success: 200 {"ok":true,"id":90} diff --git a/games/soccar/soccar_Data/Logs/91.txt b/games/soccar/soccar_Data/Logs/91.txt new file mode 100644 index 0000000..779e490 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/91.txt @@ -0,0 +1,71 @@ +[05/24/2026 06:10:21] Starting server at port 26488 +[05/24/2026 06:10:21] Mirror server exception logging enabled +[05/24/2026 06:10:21] Failed to fetch red and blue names, isServer? +[05/24/2026 06:10:21] Starting auto close watchdog +[05/24/2026 06:10:21] Active player connections: 0 +[05/24/2026 06:10:25] Active player connections: 1 +[05/24/2026 06:10:25] Client 15 set team to Red +[05/24/2026 06:10:25] Active player connections: 2 +[05/24/2026 06:10:25] Game started On Server +[05/24/2026 06:10:25] Dedicated match PATCH success: 200 {"ok":true,"id":91} +[05/24/2026 06:10:25] Client 16 set team to Blue +[05/24/2026 06:10:25] Dedicated match PATCH success: 200 {"ok":true,"id":91} +[05/24/2026 06:10:28] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:10:28] launching puck at (4.94, -0.79) with (-344.10, 54.88) force +[05/24/2026 06:10:39] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:10:39] launching puck at (-4.89, 1.06) with (340.55, -73.80) force +[05/24/2026 06:10:44] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:10:44] launching puck at (-3.08, -3.94) with (214.80, 274.38) force +[05/24/2026 06:10:57] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:10:57] launching puck at (0.15, 5.00) with (-10.58, -348.29) force +[05/24/2026 06:11:03] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:11:03] launching puck at (-4.89, -1.05) with (340.71, 73.03) force +[05/24/2026 06:11:09] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:11:09] launching puck at (-3.65, -3.41) with (254.53, 237.98) force +[05/24/2026 06:11:16] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:11:16] launching puck at (4.62, -1.91) with (-321.96, 133.28) force +[05/24/2026 06:11:25] Client 15 sent emoji emote 3 +[05/24/2026 06:11:30] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:11:30] launching puck at (0.97, -4.91) with (-67.49, 341.86) force +[05/24/2026 06:11:34] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:11:34] launching puck at (-1.09, -4.88) with (75.85, 340.10) force +[05/24/2026 06:11:34] Red goal scored, red score is now 1 +[05/24/2026 06:11:43] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:11:43] launching puck at (-1.52, 4.76) with (105.90, -331.97) force +[05/24/2026 06:11:48] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:11:48] launching puck at (3.38, -3.69) with (-235.29, 257.02) force +[05/24/2026 06:11:56] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:11:56] launching puck at (-2.21, 4.48) with (154.14, -312.51) force +[05/24/2026 06:12:01] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:12:01] launching puck at (-1.54, -4.76) with (107.13, 331.58) force +[05/24/2026 06:12:07] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:12:07] launching puck at (5.00, -0.14) with (-348.31, 10.07) force +[05/24/2026 06:12:11] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:12:11] launching puck at (4.94, 0.77) with (-344.33, -53.48) force +[05/24/2026 06:12:13] Red goal scored, red score is now 2 +[05/24/2026 06:12:21] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:12:21] launching puck at (-0.02, 5.00) with (1.16, -348.45) force +[05/24/2026 06:12:27] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:12:27] launching puck at (-0.44, -4.98) with (30.75, 347.09) force +[05/24/2026 06:12:33] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:12:33] launching puck at (-4.82, 1.34) with (335.67, -93.51) force +[05/24/2026 06:12:39] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:12:39] launching puck at (-4.99, -0.32) with (347.74, 22.33) force +[05/24/2026 06:12:40] Red goal scored, red score is now 3 +[05/24/2026 06:12:41] Dedicated match PATCH success: 200 {"ok":true,"id":91} +[05/24/2026 06:12:42] Dedicated match winner PATCH success: 200 {"ok":true,"id":91,"winner_id":3,"economy":{"entry_fee_rc":32,"rc_prize":52,"participant_cc":100}} +[05/24/2026 06:12:51] Rematch requested +[05/24/2026 06:12:56] Rematch was confirmed, closing in 5 secs. new room : +[05/24/2026 06:12:56] {"ok":true,"entry_fee":42,"rc_prize":68,"for_red":{"Players":[{"Name":"warlock2","LastSeen":1779603176373,"l10_wins":2,"l10_losses":4,"UserId":3,"rc":0.0},{"Name":"Echo","LastSeen":1779603176373,"l10_wins":2,"l10_losses":1,"UserId":12,"rc":0.0}],"GameName":"soccar","Port":26719,"InitTime":1779603176373,"instance_started":true,"match_id":93,"entry_fee":42,"rc_prize":68,"your_team":"red"},"for_blue":{"Players":[{"Name":"warlock2","LastSeen":1779603176373,"l10_wins":2,"l10_losses":4,"UserId":3,"rc":0.0},{"Name":"Echo","LastSeen":1779603176373,"l10_wins":2,"l10_losses":1,"UserId":12,"rc":0.0}],"GameName":"soccar","Port":26719,"InitTime":1779603176373,"instance_started":true,"match_id":93,"entry_fee":42,"rc_prize":68,"your_team":"blue"},"your_team":""} +[05/24/2026 06:12:56] Mirror server: client disconnected (connId=720376747) +[05/24/2026 06:12:56] Active player connections: 1 +[05/24/2026 06:12:56] Mirror server: client disconnected (connId=954096705) +[05/24/2026 06:12:56] Active player connections: 0 +[05/24/2026 06:13:01] Server will be closed due to no players in, 60 +[05/24/2026 06:13:11] Server will be closed due to no players in, 50 +[05/24/2026 06:13:21] Server will be closed due to no players in, 40 +[05/24/2026 06:13:31] Server will be closed due to no players in, 30 +[05/24/2026 06:13:41] Server will be closed due to no players in, 20 +[05/24/2026 06:13:51] Server will be closed due to no players in, 10 +[05/24/2026 06:14:01] All players left, exiting +[05/24/2026 06:14:02] Dedicated match PATCH success: 200 {"ok":true,"id":91} diff --git a/games/soccar/soccar_Data/Logs/92.txt b/games/soccar/soccar_Data/Logs/92.txt new file mode 100644 index 0000000..055c9a3 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/92.txt @@ -0,0 +1,109 @@ +[05/24/2026 06:12:00] Starting server at port 26197 +[05/24/2026 06:12:00] Mirror server exception logging enabled +[05/24/2026 06:12:00] Failed to fetch red and blue names, isServer? +[05/24/2026 06:12:00] Starting auto close watchdog +[05/24/2026 06:12:00] Active player connections: 0 +[05/24/2026 06:12:04] Active player connections: 1 +[05/24/2026 06:12:04] Active player connections: 2 +[05/24/2026 06:12:04] Game started On Server +[05/24/2026 06:12:04] Client 15 set team to Red +[05/24/2026 06:12:04] Client 16 set team to Blue +[05/24/2026 06:12:05] Dedicated match PATCH success: 200 {"ok":true,"id":92} +[05/24/2026 06:12:05] Dedicated match PATCH success: 200 {"ok":true,"id":92} +[05/24/2026 06:12:09] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:12:09] launching puck at (-0.07, -5.00) with (5.22, 348.41) force +[05/24/2026 06:12:13] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:12:13] launching puck at (0.10, 5.00) with (-7.27, -348.38) force +[05/24/2026 06:12:19] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:12:19] launching puck at (1.87, -4.64) with (-130.60, 323.05) force +[05/24/2026 06:12:25] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:12:25] launching puck at (0.58, 4.97) with (-40.10, -346.14) force +[05/24/2026 06:12:25] Blue goal scored, blue score is now 1 +[05/24/2026 06:12:31] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:12:31] launching puck at (0.08, -5.00) with (-5.34, 348.41) force +[05/24/2026 06:12:37] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:12:37] launching puck at (0.79, 4.94) with (-54.89, -344.10) force +[05/24/2026 06:12:42] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:12:42] launching puck at (1.98, -4.59) with (-137.68, 320.10) force +[05/24/2026 06:12:47] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:12:47] launching puck at (4.16, 2.78) with (-289.58, -193.81) force +[05/24/2026 06:12:52] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:12:52] launching puck at (1.86, -4.64) with (-129.67, 323.43) force +[05/24/2026 06:12:53] Red goal scored, red score is now 1 +[05/24/2026 06:13:02] force = 70 * 0.5495939 = 38.47157 +[05/24/2026 06:13:02] launching puck at (-0.07, -1.79) with (2.81, 68.88) force +[05/24/2026 06:13:07] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:13:07] launching puck at (0.07, -5.00) with (-4.75, 348.42) force +[05/24/2026 06:13:12] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:13:12] launching puck at (4.80, 1.39) with (-334.65, -97.09) force +[05/24/2026 06:13:19] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:13:19] launching puck at (1.13, -4.87) with (-78.67, 339.46) force +[05/24/2026 06:13:24] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:13:24] launching puck at (2.00, 4.58) with (-139.33, -319.39) force +[05/24/2026 06:13:30] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:13:30] launching puck at (4.97, 0.51) with (-346.64, -35.50) force +[05/24/2026 06:13:35] force = 70 * 0.4733156 = 33.13209 +[05/24/2026 06:13:35] launching puck at (0.09, -1.45) with (-3.12, 47.90) force +[05/24/2026 06:13:41] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:13:41] launching puck at (0.49, 4.98) with (-34.31, -346.76) force +[05/24/2026 06:13:49] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:13:49] launching puck at (0.56, 4.97) with (-38.70, -346.30) force +[05/24/2026 06:13:55] force = 70 * 0.8355693 = 58.48985 +[05/24/2026 06:13:55] launching puck at (-3.36, 0.65) with (196.81, -37.79) force +[05/24/2026 06:14:04] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:14:04] launching puck at (-2.07, 4.55) with (144.06, -317.28) force +[05/24/2026 06:14:11] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:14:11] launching puck at (-4.92, 0.89) with (342.84, -62.27) force +[05/24/2026 06:14:15] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:14:15] launching puck at (1.84, 4.65) with (-128.00, -324.09) force +[05/24/2026 06:14:21] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:14:21] launching puck at (-4.58, 2.00) with (319.31, -139.50) force +[05/24/2026 06:14:32] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:14:32] launching puck at (-3.61, 3.46) with (251.50, -241.18) force +[05/24/2026 06:14:38] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:14:38] launching puck at (-1.44, -4.79) with (100.11, 333.76) force +[05/24/2026 06:14:45] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:14:45] launching puck at (0.27, -4.99) with (-18.63, 347.95) force +[05/24/2026 06:14:52] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:14:52] launching puck at (-4.32, -2.51) with (301.23, 175.16) force +[05/24/2026 06:15:02] force = 70 * 0.9853637 = 68.97546 +[05/24/2026 06:15:02] launching puck at (-2.75, -4.04) with (189.36, 278.87) force +[05/24/2026 06:15:07] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:15:07] launching puck at (-2.07, -4.55) with (144.04, 317.29) force +[05/24/2026 06:15:08] Red goal scored, red score is now 2 +[05/24/2026 06:15:18] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:15:18] launching puck at (-0.01, 5.00) with (0.62, -348.45) force +[05/24/2026 06:15:27] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:15:27] launching puck at (-1.92, -4.62) with (133.72, 321.77) force +[05/24/2026 06:15:34] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:15:34] launching puck at (2.02, 4.57) with (-140.92, -318.69) force +[05/24/2026 06:15:39] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:15:39] launching puck at (-0.77, -4.94) with (53.88, 344.26) force +[05/24/2026 06:15:46] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:15:46] launching puck at (-4.99, -0.37) with (347.48, 26.05) force +[05/24/2026 06:15:50] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:15:50] launching puck at (0.04, -5.00) with (-3.06, 348.44) force +[05/24/2026 06:15:57] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:15:57] launching puck at (-4.69, -1.72) with (327.09, 120.12) force +[05/24/2026 06:16:02] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:16:02] launching puck at (-1.57, -4.75) with (109.63, 330.76) force +[05/24/2026 06:16:13] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:16:13] launching puck at (1.53, -4.76) with (-106.83, 331.67) force +[05/24/2026 06:16:18] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:16:18] launching puck at (1.22, -4.85) with (-85.12, 337.90) force +[05/24/2026 06:16:18] Red goal scored, red score is now 3 +[05/24/2026 06:16:19] Dedicated match PATCH success: 200 {"ok":true,"id":92} +[05/24/2026 06:16:21] Dedicated match winner PATCH success: 200 {"ok":true,"id":92,"winner_id":18,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/24/2026 06:16:25] Rematch requested +[05/24/2026 06:16:29] Mirror server: client disconnected (connId=207068047) +[05/24/2026 06:16:29] Active player connections: 1 +[05/24/2026 06:16:34] Mirror server: client disconnected (connId=224850645) +[05/24/2026 06:16:34] Active player connections: 0 +[05/24/2026 06:16:39] Server will be closed due to no players in, 60 +[05/24/2026 06:16:49] Server will be closed due to no players in, 50 +[05/24/2026 06:16:59] Server will be closed due to no players in, 40 +[05/24/2026 06:17:09] Server will be closed due to no players in, 30 +[05/24/2026 06:17:19] Server will be closed due to no players in, 20 +[05/24/2026 06:17:29] Server will be closed due to no players in, 10 +[05/24/2026 06:17:39] All players left, exiting +[05/24/2026 06:17:39] Dedicated match PATCH success: 200 {"ok":true,"id":92} diff --git a/games/soccar/soccar_Data/Logs/93.txt b/games/soccar/soccar_Data/Logs/93.txt new file mode 100644 index 0000000..490fdf8 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/93.txt @@ -0,0 +1,147 @@ +[05/24/2026 06:12:57] Starting server at port 26719 +[05/24/2026 06:12:57] Mirror server exception logging enabled +[05/24/2026 06:12:57] Failed to fetch red and blue names, isServer? +[05/24/2026 06:12:57] Starting auto close watchdog +[05/24/2026 06:12:57] Active player connections: 0 +[05/24/2026 06:13:01] Active player connections: 2 +[05/24/2026 06:13:01] Game started On Server +[05/24/2026 06:13:01] Client 16 set team to Red +[05/24/2026 06:13:01] Client 15 set team to Blue +[05/24/2026 06:13:02] Dedicated match PATCH success: 200 {"ok":true,"id":93} +[05/24/2026 06:13:02] Dedicated match PATCH success: 200 {"ok":true,"id":93} +[05/24/2026 06:13:04] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:13:04] launching puck at (-0.13, -5.00) with (9.14, 348.33) force +[05/24/2026 06:13:15] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:13:15] launching puck at (4.25, 2.63) with (-296.53, -183.00) force +[05/24/2026 06:13:20] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:13:20] launching puck at (-1.86, -4.64) with (129.57, 323.47) force +[05/24/2026 06:13:27] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:13:27] launching puck at (-4.47, 2.25) with (311.26, -156.65) force +[05/24/2026 06:13:34] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:13:34] launching puck at (2.27, -4.45) with (-158.32, 310.41) force +[05/24/2026 06:13:35] Red goal scored, red score is now 1 +[05/24/2026 06:13:55] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:13:55] launching puck at (0.37, -4.99) with (-25.83, 347.49) force +[05/24/2026 06:14:03] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:14:03] launching puck at (4.28, 2.58) with (-298.61, -179.59) force +[05/24/2026 06:14:08] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:14:08] launching puck at (1.09, -4.88) with (-76.16, 340.03) force +[05/24/2026 06:14:17] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:14:17] launching puck at (3.16, 3.87) with (-220.48, -269.83) force +[05/24/2026 06:14:22] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:14:22] launching puck at (2.70, -4.21) with (-188.16, 293.28) force +[05/24/2026 06:14:29] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:14:29] launching puck at (2.14, 4.52) with (-148.88, -315.04) force +[05/24/2026 06:14:36] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:14:36] launching puck at (2.57, 4.29) with (-178.90, -299.02) force +[05/24/2026 06:14:36] Blue goal scored, blue score is now 1 +[05/24/2026 06:14:42] Client 16 sent emoji emote 1 +[05/24/2026 06:14:43] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:14:43] launching puck at (0.66, -4.96) with (-45.98, 345.41) force +[05/24/2026 06:14:50] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:14:50] launching puck at (0.21, 5.00) with (-14.79, -348.14) force +[05/24/2026 06:14:54] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:14:54] launching puck at (-2.20, -4.49) with (152.97, 313.08) force +[05/24/2026 06:15:01] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:15:01] launching puck at (-3.07, 3.95) with (213.62, -275.29) force +[05/24/2026 06:15:16] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:15:16] launching puck at (-3.42, -3.64) with (238.57, 253.98) force +[05/24/2026 06:15:23] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:15:23] launching puck at (-3.09, 3.93) with (215.22, -274.04) force +[05/24/2026 06:15:27] force = 70 * 0.98619 = 69.03329 +[05/24/2026 06:15:27] launching puck at (-3.47, -3.45) with (239.64, 238.35) force +[05/24/2026 06:15:39] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:15:39] launching puck at (-4.83, 1.29) with (336.69, -89.76) force +[05/24/2026 06:15:44] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:15:44] launching puck at (-4.91, -0.95) with (342.05, 66.47) force +[05/24/2026 06:15:50] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:15:50] launching puck at (0.03, 5.00) with (-2.04, -348.45) force +[05/24/2026 06:15:54] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:15:54] launching puck at (-4.10, 2.87) with (285.48, -199.80) force +[05/24/2026 06:16:01] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:16:01] launching puck at (-0.01, 5.00) with (0.36, -348.45) force +[05/24/2026 06:16:06] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:16:06] launching puck at (-1.09, 4.88) with (75.97, -340.07) force +[05/24/2026 06:16:17] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:16:17] launching puck at (-0.71, -4.95) with (49.68, 344.89) force +[05/24/2026 06:16:23] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:16:23] launching puck at (-3.13, -3.90) with (218.28, 271.62) force +[05/24/2026 06:16:31] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:16:31] launching puck at (0.61, 4.96) with (-42.71, -345.83) force +[05/24/2026 06:16:36] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:16:36] launching puck at (-0.14, 5.00) with (9.99, -348.31) force +[05/24/2026 06:16:45] force = 70 * 0.8395498 = 58.76849 +[05/24/2026 06:16:45] launching puck at (3.19, 1.34) with (-187.35, -78.75) force +[05/24/2026 06:16:50] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:16:50] launching puck at (4.90, -1.01) with (-341.30, 70.23) force +[05/24/2026 06:16:59] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:16:59] launching puck at (0.50, 4.97) with (-34.99, -346.69) force +[05/24/2026 06:17:11] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:17:11] launching puck at (3.32, 3.73) with (-231.69, -260.27) force +[05/24/2026 06:17:15] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:17:15] launching puck at (0.66, 4.96) with (-46.23, -345.37) force +[05/24/2026 06:17:16] Blue goal scored, blue score is now 2 +[05/24/2026 06:17:18] Client 16 sent emoji emote 1 +[05/24/2026 06:17:26] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:17:26] launching puck at (-0.62, -4.96) with (42.87, 345.81) force +[05/24/2026 06:17:37] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:17:37] launching puck at (-4.62, 1.92) with (321.68, -133.96) force +[05/24/2026 06:17:42] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:17:42] launching puck at (-2.21, -4.49) with (154.02, 312.57) force +[05/24/2026 06:17:50] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:17:50] launching puck at (2.48, 4.34) with (-172.70, -302.65) force +[05/24/2026 06:17:58] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:17:58] launching puck at (4.99, -0.33) with (-347.67, 23.34) force +[05/24/2026 06:18:05] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:18:05] launching puck at (1.57, 4.75) with (-109.62, -330.76) force +[05/24/2026 06:18:09] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:18:09] launching puck at (4.92, 0.88) with (-343.04, -61.19) force +[05/24/2026 06:18:16] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:18:16] launching puck at (1.32, 4.82) with (-91.73, -336.16) force +[05/24/2026 06:18:21] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:18:21] launching puck at (4.98, 0.50) with (-346.74, -34.53) force +[05/24/2026 06:18:27] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:18:27] launching puck at (2.91, 4.06) with (-202.96, -283.25) force +[05/24/2026 06:18:35] Client 15 sent emoji emote 4 +[05/24/2026 06:18:38] force = 70 * 0.8723267 = 61.06287 +[05/24/2026 06:18:38] launching puck at (3.49, -1.34) with (-212.83, 81.92) force +[05/24/2026 06:18:43] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:18:43] launching puck at (-4.45, -2.28) with (309.96, 159.19) force +[05/24/2026 06:18:48] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:18:48] launching puck at (2.53, -4.31) with (-176.25, 300.59) force +[05/24/2026 06:18:48] Red goal scored, red score is now 2 +[05/24/2026 06:18:56] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:18:56] launching puck at (0.00, 5.00) with (0.10, -348.45) force +[05/24/2026 06:19:02] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:19:02] launching puck at (3.27, 3.78) with (-227.70, -263.77) force +[05/24/2026 06:19:09] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:19:09] launching puck at (0.19, 5.00) with (-12.94, -348.21) force +[05/24/2026 06:19:14] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:19:14] launching puck at (4.45, -2.29) with (-309.89, 159.34) force +[05/24/2026 06:19:22] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:19:22] launching puck at (-2.96, 4.03) with (206.42, -280.73) force +[05/24/2026 06:19:26] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:19:26] launching puck at (1.21, -4.85) with (-84.55, 338.04) force +[05/24/2026 06:19:35] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:19:35] launching puck at (-1.14, -4.87) with (79.31, 339.31) force +[05/24/2026 06:19:39] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:19:39] launching puck at (2.36, -4.41) with (-164.22, 307.33) force +[05/24/2026 06:19:46] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:19:46] launching puck at (1.94, 4.61) with (-134.97, -321.25) force +[05/24/2026 06:19:47] Blue goal scored, blue score is now 3 +[05/24/2026 06:19:47] Dedicated match PATCH success: 200 {"ok":true,"id":93} +[05/24/2026 06:19:48] Dedicated match winner PATCH success: 200 {"ok":true,"id":93,"winner_id":12,"economy":{"entry_fee_rc":42,"rc_prize":68,"participant_cc":100}} +[05/24/2026 06:19:49] Client 16 sent text emote GG +[05/24/2026 06:19:55] Rematch requested +[05/24/2026 06:20:00] Mirror server: client disconnected (connId=954097127) +[05/24/2026 06:20:00] Active player connections: 1 +[05/24/2026 06:20:08] Mirror server: client disconnected (connId=720385344) +[05/24/2026 06:20:08] Active player connections: 0 +[05/24/2026 06:20:13] Server will be closed due to no players in, 60 +[05/24/2026 06:20:23] Server will be closed due to no players in, 50 +[05/24/2026 06:20:33] Server will be closed due to no players in, 40 +[05/24/2026 06:20:43] Server will be closed due to no players in, 30 +[05/24/2026 06:20:53] Server will be closed due to no players in, 20 +[05/24/2026 06:21:03] Server will be closed due to no players in, 10 +[05/24/2026 06:21:13] All players left, exiting +[05/24/2026 06:21:14] Dedicated match PATCH success: 200 {"ok":true,"id":93} diff --git a/games/soccar/soccar_Data/Logs/94.txt b/games/soccar/soccar_Data/Logs/94.txt new file mode 100644 index 0000000..4208253 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/94.txt @@ -0,0 +1,78 @@ +[05/24/2026 06:14:46] Starting server at port 26236 +[05/24/2026 06:14:46] Mirror server exception logging enabled +[05/24/2026 06:14:46] Failed to fetch red and blue names, isServer? +[05/24/2026 06:14:46] Starting auto close watchdog +[05/24/2026 06:14:46] Active player connections: 0 +[05/24/2026 06:14:49] Active player connections: 1 +[05/24/2026 06:14:50] Client 15 set team to Blue +[05/24/2026 06:14:50] Active player connections: 2 +[05/24/2026 06:14:50] Game started On Server +[05/24/2026 06:14:50] Client 16 set team to Red +[05/24/2026 06:14:50] Dedicated match PATCH success: 200 {"ok":true,"id":94} +[05/24/2026 06:14:50] Dedicated match PATCH success: 200 {"ok":true,"id":94} +[05/24/2026 06:14:53] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:14:53] launching puck at (-1.22, -4.85) with (84.86, 337.96) force +[05/24/2026 06:14:57] force = 70 * 0.973061 = 68.11427 +[05/24/2026 06:14:57] launching puck at (2.32, 4.15) with (-157.95, -282.45) force +[05/24/2026 06:15:03] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:15:03] launching puck at (2.75, -4.18) with (-191.30, 291.24) force +[05/24/2026 06:15:08] force = 70 * 0.9876131 = 69.13292 +[05/24/2026 06:15:08] launching puck at (1.53, 4.67) with (-105.77, -322.67) force +[05/24/2026 06:15:14] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:15:14] launching puck at (2.49, 4.33) with (-173.71, -302.07) force +[05/24/2026 06:15:15] Blue goal scored, blue score is now 1 +[05/24/2026 06:15:19] Client 16 sent emoji emote 0 +[05/24/2026 06:15:24] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:15:24] launching puck at (-0.08, -5.00) with (5.66, 348.41) force +[05/24/2026 06:15:29] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:15:29] launching puck at (-0.40, 4.98) with (28.05, -347.32) force +[05/24/2026 06:15:34] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:15:34] launching puck at (1.67, -4.71) with (-116.21, 328.50) force +[05/24/2026 06:15:39] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:15:39] launching puck at (1.81, 4.66) with (-126.16, -324.81) force +[05/24/2026 06:15:46] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:15:46] launching puck at (4.32, -2.52) with (-301.05, 175.47) force +[05/24/2026 06:15:51] force = 70 * 0.9109098 = 63.76368 +[05/24/2026 06:15:51] launching puck at (-3.90, 1.27) with (248.38, -80.78) force +[05/24/2026 06:15:57] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:15:57] launching puck at (-4.71, -1.67) with (328.55, 116.09) force +[05/24/2026 06:16:01] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:16:01] launching puck at (2.24, 4.47) with (-156.17, -311.49) force +[05/24/2026 06:16:08] force = 70 * 0.9227825 = 64.59478 +[05/24/2026 06:16:08] launching puck at (-1.49, 3.94) with (96.33, -254.67) force +[05/24/2026 06:16:12] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:16:12] launching puck at (4.03, 2.96) with (-280.87, -206.23) force +[05/24/2026 06:16:28] force = 70 * 0.5931463 = 41.52024 +[05/24/2026 06:16:28] launching puck at (1.24, 1.57) with (-51.56, -65.36) force +[05/24/2026 06:16:30] Client 15 sent emoji emote 0 +[05/24/2026 06:16:37] force = 70 * 0.881339 = 61.69373 +[05/24/2026 06:16:37] launching puck at (-3.09, 2.23) with (190.91, -137.72) force +[05/24/2026 06:16:44] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:16:44] launching puck at (-4.94, -0.76) with (344.38, 53.11) force +[05/24/2026 06:16:54] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:16:54] launching puck at (2.89, 4.08) with (-201.53, -284.26) force +[05/24/2026 06:16:55] Blue goal scored, blue score is now 2 +[05/24/2026 06:17:02] Client 15 sent emoji emote 5 +[05/24/2026 06:17:02] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:17:02] launching puck at (0.63, -4.96) with (-43.92, 345.67) force +[05/24/2026 06:17:07] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:17:07] launching puck at (3.08, 3.94) with (-214.59, -274.54) force +[05/24/2026 06:17:13] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:17:13] launching puck at (4.93, 0.82) with (-343.77, -56.94) force +[05/24/2026 06:17:19] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:17:19] launching puck at (0.69, 4.95) with (-48.23, -345.10) force +[05/24/2026 06:17:19] Blue goal scored, blue score is now 3 +[05/24/2026 06:17:20] Dedicated match PATCH success: 200 {"ok":true,"id":94} +[05/24/2026 06:17:21] Dedicated match winner PATCH success: 200 {"ok":true,"id":94,"winner_id":15,"economy":{"entry_fee_rc":230,"rc_prize":380,"participant_cc":100}} +[05/24/2026 06:17:27] Mirror server: client disconnected (connId=1761029446) +[05/24/2026 06:17:27] Active player connections: 1 +[05/24/2026 06:17:50] Mirror server: client disconnected (connId=2006107978) +[05/24/2026 06:17:50] Active player connections: 0 +[05/24/2026 06:17:54] Server will be closed due to no players in, 60 +[05/24/2026 06:18:04] Server will be closed due to no players in, 50 +[05/24/2026 06:18:14] Server will be closed due to no players in, 40 +[05/24/2026 06:18:24] Server will be closed due to no players in, 30 +[05/24/2026 06:18:34] Server will be closed due to no players in, 20 +[05/24/2026 06:18:44] Server will be closed due to no players in, 10 +[05/24/2026 06:18:54] All players left, exiting +[05/24/2026 06:18:55] Dedicated match PATCH success: 200 {"ok":true,"id":94} diff --git a/games/soccar/soccar_Data/Logs/95.txt b/games/soccar/soccar_Data/Logs/95.txt new file mode 100644 index 0000000..8c5bfe0 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/95.txt @@ -0,0 +1,83 @@ +[05/24/2026 06:17:35] Starting server at port 26138 +[05/24/2026 06:17:35] Mirror server exception logging enabled +[05/24/2026 06:17:35] Failed to fetch red and blue names, isServer? +[05/24/2026 06:17:35] Starting auto close watchdog +[05/24/2026 06:17:35] Active player connections: 0 +[05/24/2026 06:17:38] Active player connections: 1 +[05/24/2026 06:17:38] Client 15 set team to Blue +[05/24/2026 06:17:39] Dedicated match PATCH success: 200 {"ok":true,"id":95} +[05/24/2026 06:17:39] Active player connections: 2 +[05/24/2026 06:17:39] Game started On Server +[05/24/2026 06:17:39] Client 16 set team to Red +[05/24/2026 06:17:39] Dedicated match PATCH success: 200 {"ok":true,"id":95} +[05/24/2026 06:17:46] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:17:46] launching puck at (0.13, -5.00) with (-8.99, 348.34) force +[05/24/2026 06:17:52] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:17:52] launching puck at (1.61, 4.73) with (-112.10, -329.93) force +[05/24/2026 06:17:57] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:17:57] launching puck at (2.60, -4.27) with (-181.15, 297.67) force +[05/24/2026 06:18:03] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:18:03] launching puck at (-0.34, 4.99) with (23.92, -347.63) force +[05/24/2026 06:18:09] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:18:09] launching puck at (4.63, 1.88) with (-322.93, -130.91) force +[05/24/2026 06:18:16] force = 70 * 0.9351124 = 65.45786 +[05/24/2026 06:18:16] launching puck at (-1.20, 4.17) with (78.77, -273.10) force +[05/24/2026 06:18:16] Blue goal scored, blue score is now 1 +[05/24/2026 06:18:21] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:18:21] launching puck at (0.15, -5.00) with (-10.80, 348.29) force +[05/24/2026 06:18:26] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:18:26] launching puck at (-3.53, 3.54) with (246.07, -246.71) force +[05/24/2026 06:18:34] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:18:34] launching puck at (4.17, 2.77) with (-290.27, -192.77) force +[05/24/2026 06:18:41] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:18:41] launching puck at (0.11, 5.00) with (-7.79, -348.37) force +[05/24/2026 06:18:50] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:18:50] launching puck at (3.42, 3.64) with (-238.68, -253.87) force +[05/24/2026 06:18:56] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:18:56] launching puck at (2.24, 4.47) with (-156.11, -311.53) force +[05/24/2026 06:18:57] Blue goal scored, blue score is now 2 +[05/24/2026 06:19:03] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:19:03] launching puck at (0.07, -5.00) with (-4.75, 348.42) force +[05/24/2026 06:19:12] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:19:12] launching puck at (3.11, 3.91) with (-217.08, -272.57) force +[05/24/2026 06:19:17] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:19:17] launching puck at (0.54, -4.97) with (-37.75, 346.40) force +[05/24/2026 06:19:24] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:19:24] launching puck at (-0.99, 4.90) with (69.09, -341.53) force +[05/24/2026 06:19:30] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:19:30] launching puck at (2.44, -4.37) with (-169.84, 304.26) force +[05/24/2026 06:19:37] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:19:37] launching puck at (-3.37, 3.70) with (234.70, -257.56) force +[05/24/2026 06:19:42] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:19:42] launching puck at (1.41, -4.80) with (-98.49, 334.24) force +[05/24/2026 06:19:49] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:19:49] launching puck at (-3.14, 3.89) with (218.95, -271.08) force +[05/24/2026 06:19:55] force = 70 * 0.8945715 = 62.62001 +[05/24/2026 06:19:55] launching puck at (-3.57, -1.66) with (223.53, 104.18) force +[05/24/2026 06:20:01] force = 70 * 0.9006938 = 63.04856 +[05/24/2026 06:20:01] launching puck at (-3.52, 1.89) with (221.96, -119.29) force +[05/24/2026 06:20:06] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:20:06] launching puck at (1.69, -4.71) with (-117.49, 328.05) force +[05/24/2026 06:20:13] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:20:13] launching puck at (-2.49, 4.33) with (173.88, -301.97) force +[05/24/2026 06:20:20] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:20:20] launching puck at (-2.90, 4.07) with (202.17, -283.81) force +[05/24/2026 06:20:26] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:20:26] launching puck at (2.82, 4.13) with (-196.54, -287.73) force +[05/24/2026 06:20:26] Blue goal scored, blue score is now 3 +[05/24/2026 06:20:26] Dedicated match PATCH success: 200 {"ok":true,"id":95} +[05/24/2026 06:20:28] Dedicated match winner PATCH success: 200 {"ok":true,"id":95,"winner_id":14,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/24/2026 06:20:33] Rematch requested +[05/24/2026 06:20:37] Rematch was confirmed, closing in 5 secs. new room : +[05/24/2026 06:20:37] {"ok":true,"entry_fee":99,"rc_prize":164,"for_red":{"Players":[{"Name":"Modisi","LastSeen":1779603637775,"l10_wins":2,"l10_losses":2,"UserId":18,"rc":0.0},{"Name":"SebastianMCS","LastSeen":1779603637775,"l10_wins":2,"l10_losses":3,"UserId":14,"rc":0.0}],"GameName":"soccar","Port":26311,"InitTime":1779603637775,"instance_started":true,"match_id":97,"entry_fee":99,"rc_prize":164,"your_team":"red"},"for_blue":{"Players":[{"Name":"Modisi","LastSeen":1779603637775,"l10_wins":2,"l10_losses":2,"UserId":18,"rc":0.0},{"Name":"SebastianMCS","LastSeen":1779603637775,"l10_wins":2,"l10_losses":3,"UserId":14,"rc":0.0}],"GameName":"soccar","Port":26311,"InitTime":1779603637775,"instance_started":true,"match_id":97,"entry_fee":99,"rc_prize":164,"your_team":"blue"},"your_team":""} +[05/24/2026 06:20:38] Mirror server: client disconnected (connId=1761037187) +[05/24/2026 06:20:38] Mirror server: client disconnected (connId=207068063) +[05/24/2026 06:20:38] Active player connections: 0 +[05/24/2026 06:20:43] Server will be closed due to no players in, 60 +[05/24/2026 06:20:52] Server will be closed due to no players in, 50 +[05/24/2026 06:21:02] Server will be closed due to no players in, 40 +[05/24/2026 06:21:12] Server will be closed due to no players in, 30 +[05/24/2026 06:21:22] Server will be closed due to no players in, 20 +[05/24/2026 06:21:32] Server will be closed due to no players in, 10 +[05/24/2026 06:21:42] All players left, exiting +[05/24/2026 06:21:43] Dedicated match PATCH success: 200 {"ok":true,"id":95} diff --git a/games/soccar/soccar_Data/Logs/96.txt b/games/soccar/soccar_Data/Logs/96.txt new file mode 100644 index 0000000..4e533dc --- /dev/null +++ b/games/soccar/soccar_Data/Logs/96.txt @@ -0,0 +1,159 @@ +[05/24/2026 06:18:08] Starting server at port 26130 +[05/24/2026 06:18:08] Mirror server exception logging enabled +[05/24/2026 06:18:08] Failed to fetch red and blue names, isServer? +[05/24/2026 06:18:08] Starting auto close watchdog +[05/24/2026 06:18:08] Active player connections: 0 +[05/24/2026 06:18:11] Active player connections: 1 +[05/24/2026 06:18:11] Client 15 set team to Blue +[05/24/2026 06:18:11] Dedicated match PATCH success: 200 {"ok":true,"id":96} +[05/24/2026 06:18:12] Active player connections: 2 +[05/24/2026 06:18:12] Game started On Server +[05/24/2026 06:18:12] Client 16 set team to Red +[05/24/2026 06:18:12] Dedicated match PATCH success: 200 {"ok":true,"id":96} +[05/24/2026 06:18:16] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:18:16] launching puck at (0.10, -5.00) with (-7.18, 348.38) force +[05/24/2026 06:18:21] Client 16 sent emoji emote 0 +[05/24/2026 06:18:21] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:18:21] launching puck at (1.21, 4.85) with (-84.42, -338.07) force +[05/24/2026 06:18:33] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:18:33] launching puck at (-0.84, -4.93) with (58.70, 343.47) force +[05/24/2026 06:18:36] Client 16 sent text emote What a save! +[05/24/2026 06:18:39] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:18:39] launching puck at (-3.79, 3.27) with (263.86, -227.59) force +[05/24/2026 06:18:45] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:18:45] launching puck at (-3.49, -3.58) with (243.42, 249.33) force +[05/24/2026 06:18:51] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:18:51] launching puck at (-2.01, -4.58) with (140.11, 319.04) force +[05/24/2026 06:18:56] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:18:56] launching puck at (-4.92, -0.89) with (342.94, 61.76) force +[05/24/2026 06:19:00] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:19:00] launching puck at (2.04, -4.56) with (-142.37, 318.04) force +[05/24/2026 06:19:06] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:19:06] launching puck at (-4.88, -1.07) with (340.36, 74.65) force +[05/24/2026 06:19:09] Client 16 sent text emote Oops +[05/24/2026 06:19:13] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:19:13] launching puck at (4.47, -2.24) with (-311.46, 156.25) force +[05/24/2026 06:19:17] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:19:17] launching puck at (-0.14, 5.00) with (9.92, -348.31) force +[05/24/2026 06:19:23] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:19:23] launching puck at (-0.05, -5.00) with (3.32, 348.44) force +[05/24/2026 06:19:23] Red goal scored, red score is now 1 +[05/24/2026 06:19:26] Client 15 sent emoji emote 0 +[05/24/2026 06:19:27] Client 16 sent emoji emote 2 +[05/24/2026 06:19:29] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:19:29] launching puck at (-0.10, 5.00) with (6.84, -348.39) force +[05/24/2026 06:19:35] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:19:35] launching puck at (-0.50, -4.98) with (34.61, 346.73) force +[05/24/2026 06:19:42] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:19:42] launching puck at (-1.13, 4.87) with (78.98, -339.39) force +[05/24/2026 06:19:54] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:19:54] launching puck at (-4.20, -2.71) with (292.69, 189.08) force +[05/24/2026 06:20:00] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:20:00] launching puck at (-0.53, 4.97) with (37.02, -346.48) force +[05/24/2026 06:20:09] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:20:09] launching puck at (-2.43, -4.37) with (169.13, 304.66) force +[05/24/2026 06:20:15] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:20:15] launching puck at (-1.72, 4.70) with (119.60, -327.28) force +[05/24/2026 06:20:19] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:20:19] launching puck at (-2.33, 4.42) with (162.66, -308.16) force +[05/24/2026 06:20:25] force = 70 * 0.6835981 = 47.85187 +[05/24/2026 06:20:25] launching puck at (1.97, 1.44) with (-94.29, -69.13) force +[05/24/2026 06:20:31] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:20:31] launching puck at (0.72, -4.95) with (-50.29, 344.81) force +[05/24/2026 06:20:36] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:20:36] launching puck at (2.84, 4.11) with (-198.12, -286.65) force +[05/24/2026 06:20:48] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:20:48] launching puck at (4.12, -2.83) with (-287.16, 197.38) force +[05/24/2026 06:20:53] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:20:53] launching puck at (4.83, -1.29) with (-336.61, 90.09) force +[05/24/2026 06:21:03] Client 15 sent emoji emote 5 +[05/24/2026 06:21:04] force = 70 * 0.9012936 = 63.09055 +[05/24/2026 06:21:04] launching puck at (0.63, 3.95) with (-39.73, -249.37) force +[05/24/2026 06:21:13] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:21:13] launching puck at (4.36, -2.45) with (-303.60, 171.01) force +[05/24/2026 06:21:18] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:21:18] launching puck at (1.89, -4.63) with (-131.87, 322.54) force +[05/24/2026 06:21:23] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:21:23] launching puck at (0.03, 5.00) with (-2.29, -348.45) force +[05/24/2026 06:21:28] force = 70 * 0.9885297 = 69.19707 +[05/24/2026 06:21:29] launching puck at (3.76, -3.18) with (-259.91, 220.10) force +[05/24/2026 06:21:29] Red goal scored, red score is now 2 +[05/24/2026 06:21:32] Client 15 sent emoji emote 1 +[05/24/2026 06:21:35] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:21:35] launching puck at (0.17, 5.00) with (-11.70, -348.26) force +[05/24/2026 06:21:36] Client 16 sent emoji emote 2 +[05/24/2026 06:21:39] Client 16 sent emoji emote 3 +[05/24/2026 06:21:46] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:21:46] launching puck at (1.28, -4.83) with (-89.19, 336.84) force +[05/24/2026 06:21:52] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:21:52] launching puck at (2.80, 4.15) with (-194.80, -288.92) force +[05/24/2026 06:22:03] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:22:03] launching puck at (4.99, 0.32) with (-347.76, -22.02) force +[05/24/2026 06:22:09] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:22:09] launching puck at (1.71, 4.70) with (-119.41, -327.35) force +[05/24/2026 06:22:18] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:22:18] launching puck at (-4.99, 0.32) with (347.74, -22.32) force +[05/24/2026 06:22:23] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:22:23] launching puck at (-0.30, 4.99) with (20.90, -347.83) force +[05/24/2026 06:22:29] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:22:29] launching puck at (-4.77, -1.49) with (332.71, 103.57) force +[05/24/2026 06:22:36] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:22:36] launching puck at (-4.99, -0.24) with (348.04, 16.93) force +[05/24/2026 06:22:40] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:22:40] launching puck at (-0.96, 4.91) with (67.16, -341.92) force +[05/24/2026 06:22:47] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:22:47] launching puck at (1.96, 4.60) with (-136.94, -320.42) force +[05/24/2026 06:22:47] Blue goal scored, blue score is now 1 +[05/24/2026 06:22:50] Client 15 sent emoji emote 0 +[05/24/2026 06:22:52] Client 16 sent text emote Nice shot! +[05/24/2026 06:22:55] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:22:55] launching puck at (0.02, -5.00) with (-1.14, 348.45) force +[05/24/2026 06:22:58] Client 16 sent text emote well played +[05/24/2026 06:23:01] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:23:01] launching puck at (1.03, 4.89) with (-71.56, -341.03) force +[05/24/2026 06:23:07] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:23:07] launching puck at (-4.99, 0.26) with (347.99, -17.95) force +[05/24/2026 06:23:13] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:23:13] launching puck at (-3.61, -3.46) with (251.48, 241.20) force +[05/24/2026 06:23:22] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:23:22] launching puck at (-1.28, -4.83) with (89.27, 336.82) force +[05/24/2026 06:23:27] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:23:27] launching puck at (-3.47, 3.60) with (241.50, -251.20) force +[05/24/2026 06:23:32] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:23:32] launching puck at (-4.75, -1.55) with (331.37, 107.76) force +[05/24/2026 06:23:36] Client 16 sent emoji emote 4 +[05/24/2026 06:23:37] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:23:37] launching puck at (-4.54, 2.10) with (316.11, -146.60) force +[05/24/2026 06:23:38] Blue goal scored, blue score is now 2 +[05/24/2026 06:23:41] Client 15 sent emoji emote 0 +[05/24/2026 06:23:41] Client 16 sent text emote Nice shot! +[05/24/2026 06:23:44] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:23:44] launching puck at (0.07, -5.00) with (-4.74, 348.42) force +[05/24/2026 06:23:49] Client 16 sent emoji emote 0 +[05/24/2026 06:23:49] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:23:49] launching puck at (0.88, 4.92) with (-61.30, -343.02) force +[05/24/2026 06:23:55] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:23:55] launching puck at (-2.02, -4.57) with (140.64, 318.81) force +[05/24/2026 06:24:00] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:24:00] launching puck at (-0.07, 5.00) with (5.19, -348.41) force +[05/24/2026 06:24:07] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:24:07] launching puck at (1.30, -4.83) with (-90.95, 336.38) force +[05/24/2026 06:24:08] Red goal scored, red score is now 3 +[05/24/2026 06:24:08] Dedicated match PATCH success: 200 {"ok":true,"id":96} +[05/24/2026 06:24:10] Dedicated match winner PATCH success: 200 {"ok":true,"id":96,"winner_id":17,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/24/2026 06:24:10] Client 16 sent text emote GG +[05/24/2026 06:24:14] Rematch requested +[05/24/2026 06:24:24] Rematch was confirmed, closing in 5 secs. new room : +[05/24/2026 06:24:24] {"ok":true,"entry_fee":364,"rc_prize":604,"for_red":{"Players":[{"Name":"Choel","LastSeen":1779603864142,"l10_wins":2,"l10_losses":2,"UserId":17,"rc":0.0},{"Name":"anne123","LastSeen":1779603864142,"l10_wins":2,"l10_losses":3,"UserId":15,"rc":0.0}],"GameName":"soccar","Port":26003,"InitTime":1779603864142,"instance_started":true,"match_id":99,"entry_fee":364,"rc_prize":604,"your_team":"red"},"for_blue":{"Players":[{"Name":"Choel","LastSeen":1779603864142,"l10_wins":2,"l10_losses":2,"UserId":17,"rc":0.0},{"Name":"anne123","LastSeen":1779603864142,"l10_wins":2,"l10_losses":3,"UserId":15,"rc":0.0}],"GameName":"soccar","Port":26003,"InitTime":1779603864142,"instance_started":true,"match_id":99,"entry_fee":364,"rc_prize":604,"your_team":"blue"},"your_team":""} +[05/24/2026 06:24:24] Mirror server: client disconnected (connId=2006118924) +[05/24/2026 06:24:24] Active player connections: 1 +[05/24/2026 06:24:24] Mirror server: client disconnected (connId=224824753) +[05/24/2026 06:24:24] Active player connections: 0 +[05/24/2026 06:24:29] Server will be closed due to no players in, 60 +[05/24/2026 06:24:39] Server will be closed due to no players in, 50 +[05/24/2026 06:24:49] Server will be closed due to no players in, 40 +[05/24/2026 06:24:59] Server will be closed due to no players in, 30 +[05/24/2026 06:25:09] Server will be closed due to no players in, 20 +[05/24/2026 06:25:19] Server will be closed due to no players in, 10 +[05/24/2026 06:25:29] All players left, exiting +[05/24/2026 06:25:29] Dedicated match PATCH success: 200 {"ok":true,"id":96} diff --git a/games/soccar/soccar_Data/Logs/97.txt b/games/soccar/soccar_Data/Logs/97.txt new file mode 100644 index 0000000..0247866 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/97.txt @@ -0,0 +1,160 @@ +[05/24/2026 06:20:39] Starting server at port 26311 +[05/24/2026 06:20:39] Mirror server exception logging enabled +[05/24/2026 06:20:39] Failed to fetch red and blue names, isServer? +[05/24/2026 06:20:39] Starting auto close watchdog +[05/24/2026 06:20:39] Active player connections: 0 +[05/24/2026 06:20:42] Active player connections: 1 +[05/24/2026 06:20:42] Active player connections: 2 +[05/24/2026 06:20:42] Game started On Server +[05/24/2026 06:20:42] Client 15 set team to Blue +[05/24/2026 06:20:43] Client 16 set team to Red +[05/24/2026 06:20:43] Dedicated match PATCH success: 200 {"ok":true,"id":97} +[05/24/2026 06:20:43] Dedicated match PATCH success: 200 {"ok":true,"id":97} +[05/24/2026 06:20:44] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:20:44] launching puck at (0.12, -5.00) with (-8.20, 348.36) force +[05/24/2026 06:20:49] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:20:49] launching puck at (0.78, 4.94) with (-54.47, -344.17) force +[05/24/2026 06:20:55] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:20:55] launching puck at (2.82, -4.13) with (-196.71, 287.62) force +[05/24/2026 06:21:01] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:21:01] launching puck at (4.68, 1.76) with (-326.10, -122.80) force +[05/24/2026 06:21:06] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:21:06] launching puck at (-2.33, -4.42) with (162.58, 308.20) force +[05/24/2026 06:21:11] force = 70 * 0.9717494 = 68.02246 +[05/24/2026 06:21:11] launching puck at (-4.25, -2.10) with (288.93, 142.59) force +[05/24/2026 06:21:17] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:21:17] launching puck at (4.20, -2.71) with (-292.88, 188.78) force +[05/24/2026 06:21:24] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:21:24] launching puck at (1.73, -4.69) with (-120.48, 326.96) force +[05/24/2026 06:21:29] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:21:29] launching puck at (0.38, -4.99) with (-26.66, 347.43) force +[05/24/2026 06:21:34] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:21:34] launching puck at (-0.41, -4.98) with (28.83, 347.26) force +[05/24/2026 06:21:39] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:21:39] launching puck at (-1.96, -4.60) with (136.31, 320.68) force +[05/24/2026 06:21:44] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:21:44] launching puck at (-2.17, 4.50) with (151.31, -313.89) force +[05/24/2026 06:21:50] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:21:50] launching puck at (-4.59, -1.98) with (319.86, 138.23) force +[05/24/2026 06:21:56] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:21:56] launching puck at (-0.05, 5.00) with (3.78, -348.43) force +[05/24/2026 06:22:02] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:22:02] launching puck at (3.77, -3.29) with (-262.53, 229.13) force +[05/24/2026 06:22:09] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:22:09] launching puck at (4.88, 1.11) with (-339.79, -77.22) force +[05/24/2026 06:22:14] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:22:14] launching puck at (1.67, 4.71) with (-116.19, -328.51) force +[05/24/2026 06:22:20] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:22:20] launching puck at (-1.26, 4.84) with (87.55, -337.28) force +[05/24/2026 06:22:26] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:22:26] launching puck at (3.24, -3.81) with (-225.54, 265.61) force +[05/24/2026 06:22:32] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:22:32] launching puck at (2.19, 4.49) with (-152.96, -313.09) force +[05/24/2026 06:22:38] force = 70 * 0.9711753 = 67.98227 +[05/24/2026 06:22:38] launching puck at (3.41, 3.28) with (-231.98, -222.71) force +[05/24/2026 06:22:47] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:22:47] launching puck at (2.22, 4.48) with (-154.50, -312.33) force +[05/24/2026 06:22:52] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:22:52] launching puck at (-1.34, -4.82) with (93.29, 335.73) force +[05/24/2026 06:22:59] force = 70 * 0.9878774 = 69.15141 +[05/24/2026 06:22:59] launching puck at (4.24, 2.48) with (-293.24, -171.81) force +[05/24/2026 06:23:06] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:23:06] launching puck at (-0.90, 4.92) with (62.86, -342.74) force +[05/24/2026 06:23:13] force = 70 * 0.9600211 = 67.20148 +[05/24/2026 06:23:13] launching puck at (-4.61, -0.09) with (309.63, 5.90) force +[05/24/2026 06:23:18] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:23:18] launching puck at (-4.50, -2.18) with (313.58, 151.95) force +[05/24/2026 06:23:25] force = 70 * 0.9809972 = 68.66981 +[05/24/2026 06:23:25] launching puck at (-0.41, -4.82) with (28.03, 331.08) force +[05/24/2026 06:23:31] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:23:31] launching puck at (-3.06, -3.96) with (212.93, 275.83) force +[05/24/2026 06:23:36] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:23:36] launching puck at (-1.05, -4.89) with (73.05, 340.71) force +[05/24/2026 06:23:44] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:23:44] launching puck at (1.21, 4.85) with (-84.60, -338.03) force +[05/24/2026 06:23:51] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:23:51] launching puck at (-0.86, -4.93) with (59.77, 343.29) force +[05/24/2026 06:23:58] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:23:58] launching puck at (-2.05, -4.56) with (142.74, 317.88) force +[05/24/2026 06:23:58] Red goal scored, red score is now 1 +[05/24/2026 06:24:06] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:24:06] launching puck at (-0.02, 5.00) with (1.38, -348.45) force +[05/24/2026 06:24:17] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:24:17] launching puck at (4.00, 3.00) with (-278.82, -209.00) force +[05/24/2026 06:24:24] force = 70 * 0.9333687 = 65.33581 +[05/24/2026 06:24:24] launching puck at (2.59, 3.46) with (-169.53, -226.00) force +[05/24/2026 06:24:25] Blue goal scored, blue score is now 1 +[05/24/2026 06:24:32] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:24:32] launching puck at (-0.04, -5.00) with (2.69, 348.44) force +[05/24/2026 06:24:44] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:24:44] launching puck at (-3.78, 3.27) with (263.64, -227.85) force +[05/24/2026 06:24:50] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:24:50] launching puck at (-0.08, -5.00) with (5.85, 348.40) force +[05/24/2026 06:24:57] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:24:57] launching puck at (-1.11, -4.88) with (77.16, 339.80) force +[05/24/2026 06:25:02] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:25:02] launching puck at (2.16, -4.51) with (-150.85, 314.11) force +[05/24/2026 06:25:09] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:25:09] launching puck at (1.00, -4.90) with (-69.61, 341.43) force +[05/24/2026 06:25:14] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:25:14] launching puck at (2.08, -4.55) with (-144.97, 316.86) force +[05/24/2026 06:25:21] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:25:21] launching puck at (-3.71, 3.36) with (258.23, -233.96) force +[05/24/2026 06:25:28] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:25:28] launching puck at (-4.05, -2.93) with (282.42, 204.10) force +[05/24/2026 06:25:36] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:25:36] launching puck at (4.49, 2.19) with (-313.18, -152.77) force +[05/24/2026 06:25:42] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:25:42] launching puck at (2.71, -4.20) with (-188.72, 292.93) force +[05/24/2026 06:25:49] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:25:49] launching puck at (3.22, 3.83) with (-224.11, -266.82) force +[05/24/2026 06:25:57] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:25:57] launching puck at (0.71, -4.95) with (-49.20, 344.96) force +[05/24/2026 06:26:04] force = 70 * 0.8238655 = 57.67058 +[05/24/2026 06:26:04] launching puck at (1.98, -2.69) with (-113.96, 154.94) force +[05/24/2026 06:26:12] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:26:12] launching puck at (2.70, -4.21) with (-188.04, 293.36) force +[05/24/2026 06:26:18] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:26:18] launching puck at (-2.06, -4.56) with (143.35, 317.60) force +[05/24/2026 06:26:23] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:26:23] launching puck at (1.23, -4.85) with (-85.70, 337.75) force +[05/24/2026 06:26:24] Red goal scored, red score is now 2 +[05/24/2026 06:26:31] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:26:31] launching puck at (-1.57, 4.75) with (109.50, -330.80) force +[05/24/2026 06:26:36] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:26:36] launching puck at (-2.27, -4.45) with (158.52, 310.31) force +[05/24/2026 06:26:44] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:26:44] launching puck at (-1.90, 4.63) with (132.33, -322.35) force +[05/24/2026 06:26:49] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:26:49] launching puck at (3.75, -3.30) with (-261.57, 230.21) force +[05/24/2026 06:26:55] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:26:55] launching puck at (4.79, 1.42) with (-334.02, -99.26) force +[05/24/2026 06:27:01] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:27:01] launching puck at (-0.97, -4.91) with (67.35, 341.88) force +[05/24/2026 06:27:06] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:27:06] launching puck at (-0.17, 5.00) with (11.59, -348.26) force +[05/24/2026 06:27:13] force = 70 * 0.9258505 = 64.80953 +[05/24/2026 06:27:13] launching puck at (-3.33, 2.64) with (215.54, -171.13) force +[05/24/2026 06:27:18] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:27:18] launching puck at (-1.95, 4.61) with (135.70, -320.95) force +[05/24/2026 06:27:23] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:27:23] launching puck at (-1.96, -4.60) with (136.72, 320.51) force +[05/24/2026 06:27:30] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:27:30] launching puck at (-4.49, 2.19) with (313.20, -152.72) force +[05/24/2026 06:27:34] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:27:34] launching puck at (-0.46, -4.98) with (32.12, 346.97) force +[05/24/2026 06:27:34] Red goal scored, red score is now 3 +[05/24/2026 06:27:34] Dedicated match PATCH success: 200 {"ok":true,"id":97} +[05/24/2026 06:27:36] Dedicated match winner PATCH success: 200 {"ok":true,"id":97,"winner_id":18,"economy":{"entry_fee_rc":99,"rc_prize":164,"participant_cc":100}} +[05/24/2026 06:28:00] Mirror server: client disconnected (connId=1761031563) +[05/24/2026 06:28:00] Active player connections: 1 +[05/24/2026 06:28:05] Mirror server: client disconnected (connId=207068052) +[05/24/2026 06:28:05] Active player connections: 0 +[05/24/2026 06:28:10] Server will be closed due to no players in, 60 +[05/24/2026 06:28:20] Server will be closed due to no players in, 50 +[05/24/2026 06:28:30] Server will be closed due to no players in, 40 +[05/24/2026 06:28:40] Server will be closed due to no players in, 30 +[05/24/2026 06:28:50] Server will be closed due to no players in, 20 +[05/24/2026 06:29:00] Server will be closed due to no players in, 10 +[05/24/2026 06:29:10] All players left, exiting +[05/24/2026 06:29:10] Dedicated match PATCH success: 200 {"ok":true,"id":97} diff --git a/games/soccar/soccar_Data/Logs/98.txt b/games/soccar/soccar_Data/Logs/98.txt new file mode 100644 index 0000000..8bb4929 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/98.txt @@ -0,0 +1,203 @@ +[05/24/2026 06:20:44] Starting server at port 26081 +[05/24/2026 06:20:44] Mirror server exception logging enabled +[05/24/2026 06:20:44] Failed to fetch red and blue names, isServer? +[05/24/2026 06:20:44] Starting auto close watchdog +[05/24/2026 06:20:44] Active player connections: 0 +[05/24/2026 06:20:46] Active player connections: 1 +[05/24/2026 06:20:46] Client 15 set team to Blue +[05/24/2026 06:20:46] Dedicated match PATCH success: 200 {"ok":true,"id":98} +[05/24/2026 06:20:47] Active player connections: 2 +[05/24/2026 06:20:47] Game started On Server +[05/24/2026 06:20:48] Client 16 set team to Red +[05/24/2026 06:20:48] Dedicated match PATCH success: 200 {"ok":true,"id":98} +[05/24/2026 06:20:52] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:20:52] launching puck at (-0.13, -5.00) with (8.80, 348.34) force +[05/24/2026 06:20:58] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:20:58] launching puck at (-1.74, 4.69) with (121.20, -326.70) force +[05/24/2026 06:21:03] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:21:03] launching puck at (-4.04, -2.94) with (281.67, 205.13) force +[05/24/2026 06:21:09] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:21:09] launching puck at (0.71, 4.95) with (-49.16, -344.97) force +[05/24/2026 06:21:15] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:21:15] launching puck at (1.87, -4.64) with (-130.61, 323.05) force +[05/24/2026 06:21:23] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:21:23] launching puck at (1.20, 4.85) with (-83.64, -338.27) force +[05/24/2026 06:21:29] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:21:29] launching puck at (0.45, 4.98) with (-31.14, -347.06) force +[05/24/2026 06:21:35] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:21:35] launching puck at (-0.01, 5.00) with (0.71, -348.45) force +[05/24/2026 06:21:40] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:21:40] launching puck at (1.80, -4.67) with (-125.24, 325.17) force +[05/24/2026 06:21:45] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:21:45] launching puck at (4.88, 1.09) with (-340.00, -76.29) force +[05/24/2026 06:21:53] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:21:53] launching puck at (1.52, 4.76) with (-106.23, -331.87) force +[05/24/2026 06:21:57] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:21:57] launching puck at (0.66, 4.96) with (-45.72, -345.44) force +[05/24/2026 06:22:02] force = 70 * 0.9424387 = 65.97071 +[05/24/2026 06:22:02] launching puck at (2.85, -3.37) with (-188.32, 222.56) force +[05/24/2026 06:22:06] Client 16 sent emoji emote 1 +[05/24/2026 06:22:06] force = 70 * 0.6934412 = 48.54089 +[05/24/2026 06:22:06] launching puck at (-1.06, 2.26) with (51.27, -109.78) force +[05/24/2026 06:22:11] force = 70 * 0.9755441 = 68.28809 +[05/24/2026 06:22:11] launching puck at (-4.57, -1.39) with (312.21, 94.88) force +[05/24/2026 06:22:17] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:22:17] launching puck at (-0.75, 4.94) with (52.46, -344.48) force +[05/24/2026 06:22:18] Blue goal scored, blue score is now 1 +[05/24/2026 06:22:21] Client 15 sent emoji emote 2 +[05/24/2026 06:22:24] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:22:24] launching puck at (-0.05, -5.00) with (3.60, 348.43) force +[05/24/2026 06:22:29] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:22:29] launching puck at (-2.01, 4.58) with (139.86, -319.15) force +[05/24/2026 06:22:36] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:22:36] launching puck at (1.39, -4.80) with (-96.86, 334.72) force +[05/24/2026 06:22:40] Client 16 sent emoji emote 1 +[05/24/2026 06:22:40] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:22:40] launching puck at (-0.30, 4.99) with (21.05, -347.82) force +[05/24/2026 06:22:46] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:22:46] launching puck at (1.63, -4.73) with (-113.54, 329.44) force +[05/24/2026 06:22:47] Red goal scored, red score is now 1 +[05/24/2026 06:22:49] Client 15 sent emoji emote 1 +[05/24/2026 06:22:49] Client 16 sent emoji emote 2 +[05/24/2026 06:22:53] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:22:53] launching puck at (-0.99, 4.90) with (69.06, -341.54) force +[05/24/2026 06:22:58] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:22:58] launching puck at (3.05, -3.96) with (-212.30, 276.32) force +[05/24/2026 06:23:03] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:23:03] launching puck at (2.90, -4.07) with (-201.92, 283.99) force +[05/24/2026 06:23:08] Client 15 sent emoji emote 4 +[05/24/2026 06:23:09] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:23:09] launching puck at (4.57, 2.04) with (-318.29, -141.82) force +[05/24/2026 06:23:14] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:23:14] launching puck at (1.84, -4.65) with (-128.44, 323.92) force +[05/24/2026 06:23:23] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:23:23] launching puck at (1.44, -4.79) with (-100.50, 333.65) force +[05/24/2026 06:23:27] Client 16 sent emoji emote 1 +[05/24/2026 06:23:27] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:23:27] launching puck at (-2.48, -4.34) with (172.98, 302.49) force +[05/24/2026 06:23:31] Client 15 sent emoji emote 3 +[05/24/2026 06:23:33] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:23:33] launching puck at (0.52, 4.97) with (-36.53, -346.53) force +[05/24/2026 06:23:39] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:23:39] launching puck at (4.68, 1.75) with (-326.34, -122.16) force +[05/24/2026 06:23:43] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:23:43] launching puck at (-0.11, -5.00) with (7.59, 348.37) force +[05/24/2026 06:23:48] force = 70 * 0.8346499 = 58.42549 +[05/24/2026 06:23:48] launching puck at (-3.41, -0.20) with (199.41, 11.88) force +[05/24/2026 06:23:56] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:23:56] launching puck at (-4.99, -0.37) with (347.49, 25.87) force +[05/24/2026 06:24:00] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:24:00] launching puck at (2.63, 4.25) with (-183.15, -296.44) force +[05/24/2026 06:24:05] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:24:05] launching puck at (4.52, -2.14) with (-314.90, 149.20) force +[05/24/2026 06:24:12] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:24:12] launching puck at (4.29, -2.56) with (-299.12, 178.74) force +[05/24/2026 06:24:19] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:24:19] launching puck at (3.06, -3.96) with (-213.15, 275.66) force +[05/24/2026 06:24:22] Client 16 sent emoji emote 1 +[05/24/2026 06:24:24] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:24:24] launching puck at (4.98, 0.49) with (-346.78, -34.11) force +[05/24/2026 06:24:27] Client 15 sent emoji emote 3 +[05/24/2026 06:24:29] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:24:29] launching puck at (4.89, -1.04) with (-340.76, 72.82) force +[05/24/2026 06:24:31] Client 16 sent emoji emote 1 +[05/24/2026 06:24:35] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:24:35] launching puck at (5.00, -0.19) with (-348.20, 13.35) force +[05/24/2026 06:24:42] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:24:42] launching puck at (3.45, -3.62) with (-240.15, 252.49) force +[05/24/2026 06:24:46] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:24:46] launching puck at (-4.80, -1.39) with (334.73, 96.83) force +[05/24/2026 06:24:53] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:24:53] launching puck at (4.22, -2.69) with (-293.87, 187.24) force +[05/24/2026 06:24:54] Red goal scored, red score is now 2 +[05/24/2026 06:24:56] Client 15 sent emoji emote 1 +[05/24/2026 06:24:57] Client 16 sent emoji emote 0 +[05/24/2026 06:24:59] Client 16 sent emoji emote 0 +[05/24/2026 06:25:02] force = 70 * 0.4955686 = 34.6898 +[05/24/2026 06:25:02] launching puck at (-0.21, -1.52) with (7.39, 52.78) force +[05/24/2026 06:25:06] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:25:06] launching puck at (0.19, -5.00) with (-12.91, 348.21) force +[05/24/2026 06:25:18] force = 70 * 0.8759902 = 61.31931 +[05/24/2026 06:25:18] launching puck at (3.41, 1.61) with (-208.96, -98.50) force +[05/24/2026 06:25:25] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:25:25] launching puck at (0.08, 5.00) with (-5.91, -348.40) force +[05/24/2026 06:25:29] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:25:29] launching puck at (-0.40, 4.98) with (27.79, -347.34) force +[05/24/2026 06:25:33] Client 15 sent emoji emote 2 +[05/24/2026 06:25:35] Client 16 sent emoji emote 1 +[05/24/2026 06:25:38] Client 15 sent emoji emote 0 +[05/24/2026 06:25:40] Client 15 sent emoji emote 5 +[05/24/2026 06:25:42] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:25:42] launching puck at (4.99, 0.29) with (-347.85, -20.43) force +[05/24/2026 06:25:47] Client 16 sent emoji emote 4 +[05/24/2026 06:25:47] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:25:47] launching puck at (-1.06, 4.89) with (73.91, -340.52) force +[05/24/2026 06:25:47] Blue goal scored, blue score is now 2 +[05/24/2026 06:25:48] Client 16 sent emoji emote 4 +[05/24/2026 06:25:50] Client 15 sent emoji emote 0 +[05/24/2026 06:25:53] Client 15 sent text emote What a save! +[05/24/2026 06:25:54] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:25:54] launching puck at (0.28, -4.99) with (-19.18, 347.92) force +[05/24/2026 06:25:59] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:25:59] launching puck at (-4.45, 2.27) with (310.34, -158.46) force +[05/24/2026 06:26:05] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:26:05] launching puck at (1.00, -4.90) with (-69.93, 341.36) force +[05/24/2026 06:26:09] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:26:09] launching puck at (1.90, -4.63) with (-132.08, 322.45) force +[05/24/2026 06:26:16] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:26:16] launching puck at (2.29, -4.45) with (-159.27, 309.92) force +[05/24/2026 06:26:19] Client 16 sent emoji emote 4 +[05/24/2026 06:26:20] Client 16 sent emoji emote 4 +[05/24/2026 06:26:21] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:26:21] launching puck at (0.58, 4.97) with (-40.07, -346.14) force +[05/24/2026 06:26:22] Client 16 sent emoji emote 4 +[05/24/2026 06:26:26] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:26:26] launching puck at (-3.15, -3.89) with (219.34, 270.76) force +[05/24/2026 06:26:32] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:26:32] launching puck at (-0.79, 4.94) with (54.91, -344.10) force +[05/24/2026 06:26:37] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:26:37] launching puck at (-4.58, -2.00) with (319.44, 139.20) force +[05/24/2026 06:26:44] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:26:44] launching puck at (-2.41, 4.38) with (167.63, -305.48) force +[05/24/2026 06:26:50] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:26:50] launching puck at (1.39, 4.80) with (-97.06, -334.66) force +[05/24/2026 06:26:55] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:26:55] launching puck at (0.26, 4.99) with (-17.94, -347.99) force +[05/24/2026 06:26:58] Client 15 sent emoji emote 4 +[05/24/2026 06:26:58] Client 16 sent emoji emote 0 +[05/24/2026 06:27:01] Client 15 sent emoji emote 4 +[05/24/2026 06:27:03] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:27:03] launching puck at (-4.33, -2.49) with (302.09, 173.67) force +[05/24/2026 06:27:09] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:27:09] launching puck at (4.79, -1.43) with (-333.96, 99.45) force +[05/24/2026 06:27:15] force = 70 * 0.8239666 = 57.67766 +[05/24/2026 06:27:15] launching puck at (-3.34, -0.07) with (192.36, 4.33) force +[05/24/2026 06:27:19] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:27:19] launching puck at (0.04, -5.00) with (-2.80, 348.44) force +[05/24/2026 06:27:25] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:27:25] launching puck at (1.41, -4.80) with (-98.40, 334.27) force +[05/24/2026 06:27:28] Client 16 sent emoji emote 1 +[05/24/2026 06:27:29] force = 70 * 0.9029715 = 63.208 +[05/24/2026 06:27:29] launching puck at (3.99, -0.51) with (-251.99, 31.96) force +[05/24/2026 06:27:30] Client 16 sent emoji emote 1 +[05/24/2026 06:27:30] Red goal scored, red score is now 3 +[05/24/2026 06:27:31] Dedicated match PATCH success: 200 {"ok":true,"id":98} +[05/24/2026 06:27:32] Client 15 sent emoji emote 4 +[05/24/2026 06:27:32] Client 16 sent emoji emote 4 +[05/24/2026 06:27:33] Dedicated match winner PATCH success: 200 {"ok":true,"id":98,"winner_id":13,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}} +[05/24/2026 06:27:34] Client 16 sent emoji emote 0 +[05/24/2026 06:27:37] Rematch requested +[05/24/2026 06:27:42] Rematch was confirmed, closing in 5 secs. new room : +[05/24/2026 06:27:42] {"ok":true,"entry_fee":11,"rc_prize":18,"for_red":{"Players":[{"Name":"peach","LastSeen":1779604062368,"l10_wins":4,"l10_losses":0,"UserId":13,"rc":0.0},{"Name":"warlock2","LastSeen":1779604062368,"l10_wins":2,"l10_losses":6,"UserId":3,"rc":0.0}],"GameName":"soccar","Port":26467,"InitTime":1779604062368,"instance_started":true,"match_id":100,"entry_fee":11,"rc_prize":18,"your_team":"red"},"for_blue":{"Players":[{"Name":"peach","LastSeen":1779604062368,"l10_wins":4,"l10_losses":0,"UserId":13,"rc":0.0},{"Name":"warlock2","LastSeen":1779604062368,"l10_wins":2,"l10_losses":6,"UserId":3,"rc":0.0}],"GameName":"soccar","Port":26467,"InitTime":1779604062368,"instance_started":true,"match_id":100,"entry_fee":11,"rc_prize":18,"your_team":"blue"},"your_team":""} +[05/24/2026 06:27:42] Mirror server: client disconnected (connId=720399316) +[05/24/2026 06:27:42] Active player connections: 1 +[05/24/2026 06:27:42] Mirror server: client disconnected (connId=-1479578213) +[05/24/2026 06:27:42] Active player connections: 0 +[05/24/2026 06:27:47] Server will be closed due to no players in, 60 +[05/24/2026 06:27:57] Server will be closed due to no players in, 50 +[05/24/2026 06:28:07] Server will be closed due to no players in, 40 +[05/24/2026 06:28:17] Server will be closed due to no players in, 30 +[05/24/2026 06:28:27] Server will be closed due to no players in, 20 +[05/24/2026 06:28:37] Server will be closed due to no players in, 10 +[05/24/2026 06:28:47] All players left, exiting +[05/24/2026 06:28:48] Dedicated match PATCH success: 200 {"ok":true,"id":98} diff --git a/games/soccar/soccar_Data/Logs/99.txt b/games/soccar/soccar_Data/Logs/99.txt new file mode 100644 index 0000000..86293b6 --- /dev/null +++ b/games/soccar/soccar_Data/Logs/99.txt @@ -0,0 +1,102 @@ +[05/24/2026 06:24:25] Starting server at port 26003 +[05/24/2026 06:24:25] Mirror server exception logging enabled +[05/24/2026 06:24:25] Failed to fetch red and blue names, isServer? +[05/24/2026 06:24:25] Starting auto close watchdog +[05/24/2026 06:24:25] Active player connections: 0 +[05/24/2026 06:24:28] Active player connections: 1 +[05/24/2026 06:24:29] Client 15 set team to Blue +[05/24/2026 06:24:29] Active player connections: 2 +[05/24/2026 06:24:29] Game started On Server +[05/24/2026 06:24:29] Client 16 set team to Red +[05/24/2026 06:24:29] Dedicated match PATCH success: 200 {"ok":true,"id":99} +[05/24/2026 06:24:29] Dedicated match PATCH success: 200 {"ok":true,"id":99} +[05/24/2026 06:24:31] Client 16 sent emoji emote 3 +[05/24/2026 06:24:32] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:24:32] launching puck at (0.05, -5.00) with (-3.27, 348.44) force +[05/24/2026 06:24:34] Client 15 sent emoji emote 5 +[05/24/2026 06:24:38] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:24:38] launching puck at (2.06, 4.55) with (-143.86, -317.37) force +[05/24/2026 06:24:46] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:24:46] launching puck at (2.96, -4.03) with (-206.03, 281.01) force +[05/24/2026 06:24:53] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:24:53] launching puck at (-4.95, 0.73) with (344.77, -50.55) force +[05/24/2026 06:25:02] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:25:02] launching puck at (4.44, -2.29) with (-309.73, 159.64) force +[05/24/2026 06:25:07] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:25:07] launching puck at (2.17, 4.51) with (-151.00, -314.04) force +[05/24/2026 06:25:14] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:25:14] launching puck at (-1.49, 4.77) with (103.78, -332.64) force +[05/24/2026 06:25:20] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:25:20] launching puck at (-4.48, 2.22) with (312.28, -154.60) force +[05/24/2026 06:25:28] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:25:28] launching puck at (0.24, -4.99) with (-16.80, 348.05) force +[05/24/2026 06:25:33] Client 16 sent emoji emote 4 +[05/24/2026 06:25:33] Client 15 sent emoji emote 4 +[05/24/2026 06:25:37] Client 16 sent emoji emote 0 +[05/24/2026 06:25:38] force = 70 * 0.8004513 = 56.03159 +[05/24/2026 06:25:38] launching puck at (3.16, 0.13) with (-177.00, -7.53) force +[05/24/2026 06:25:42] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:25:42] launching puck at (0.85, -4.93) with (-59.56, 343.32) force +[05/24/2026 06:25:42] Red goal scored, red score is now 1 +[05/24/2026 06:25:45] Client 15 sent emoji emote 0 +[05/24/2026 06:25:48] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:25:48] launching puck at (-0.02, 5.00) with (1.60, -348.45) force +[05/24/2026 06:25:54] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:25:54] launching puck at (2.64, 4.24) with (-184.27, -295.74) force +[05/24/2026 06:26:01] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:26:01] launching puck at (1.82, 4.66) with (-126.61, -324.64) force +[05/24/2026 06:26:02] Blue goal scored, blue score is now 1 +[05/24/2026 06:26:04] Client 16 sent text emote WOW +[05/24/2026 06:26:07] Client 16 sent text emote Nice shot! +[05/24/2026 06:26:07] Client 15 sent emoji emote 0 +[05/24/2026 06:26:08] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:26:08] launching puck at (0.02, -5.00) with (-1.05, 348.45) force +[05/24/2026 06:26:18] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:26:18] launching puck at (-3.09, -3.93) with (215.28, 274.00) force +[05/24/2026 06:26:28] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:26:28] launching puck at (-1.82, -4.66) with (126.89, 324.53) force +[05/24/2026 06:26:35] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:26:35] launching puck at (0.82, -4.93) with (-57.28, 343.71) force +[05/24/2026 06:26:41] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:26:41] launching puck at (1.65, -4.72) with (-115.28, 328.83) force +[05/24/2026 06:26:41] Red goal scored, red score is now 2 +[05/24/2026 06:26:44] Client 15 sent emoji emote 0 +[05/24/2026 06:26:47] Client 16 sent emoji emote 0 +[05/24/2026 06:26:48] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:26:48] launching puck at (0.05, 5.00) with (-3.77, -348.43) force +[05/24/2026 06:26:48] Client 16 sent emoji emote 5 +[05/24/2026 06:26:54] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:26:54] launching puck at (-4.71, -1.69) with (328.03, 117.55) force +[05/24/2026 06:27:00] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:27:00] launching puck at (1.18, 4.86) with (-82.11, -338.64) force +[05/24/2026 06:27:05] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:27:05] launching puck at (4.80, 1.40) with (-334.53, -97.52) force +[05/24/2026 06:27:11] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:27:11] launching puck at (3.27, 3.79) with (-227.57, -263.88) force +[05/24/2026 06:27:18] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:27:18] launching puck at (4.15, -2.79) with (-289.35, 194.15) force +[05/24/2026 06:27:26] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:27:26] launching puck at (4.44, 2.29) with (-309.72, -159.66) force +[05/24/2026 06:27:37] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:27:37] launching puck at (-0.93, -4.91) with (64.51, 342.43) force +[05/24/2026 06:27:43] force = 70 * 0.9586579 = 67.10605 +[05/24/2026 06:27:43] launching puck at (4.58, -0.29) with (-307.63, 19.49) force +[05/24/2026 06:27:49] force = 70 * 0.9955804 = 69.69063 +[05/24/2026 06:27:49] launching puck at (-1.61, -4.73) with (112.50, 329.79) force +[05/24/2026 06:27:50] Red goal scored, red score is now 3 +[05/24/2026 06:27:50] Dedicated match PATCH success: 200 {"ok":true,"id":99} +[05/24/2026 06:27:52] Dedicated match winner PATCH success: 200 {"ok":true,"id":99,"winner_id":17,"economy":{"entry_fee_rc":364,"rc_prize":604,"participant_cc":100}} +[05/24/2026 06:27:53] Client 16 sent text emote GG +[05/24/2026 06:27:55] Client 15 sent text emote well played +[05/24/2026 06:27:59] Mirror server: client disconnected (connId=2006088253) +[05/24/2026 06:27:59] Active player connections: 1 +[05/24/2026 06:28:15] Mirror server: client disconnected (connId=224847805) +[05/24/2026 06:28:15] Active player connections: 0 +[05/24/2026 06:28:20] Server will be closed due to no players in, 60 +[05/24/2026 06:28:30] Server will be closed due to no players in, 50 +[05/24/2026 06:28:40] Server will be closed due to no players in, 40 +[05/24/2026 06:28:50] Server will be closed due to no players in, 30 +[05/24/2026 06:29:00] Server will be closed due to no players in, 20 +[05/24/2026 06:29:10] Server will be closed due to no players in, 10 +[05/24/2026 06:29:20] All players left, exiting +[05/24/2026 06:29:21] Dedicated match PATCH success: 200 {"ok":true,"id":99} diff --git a/games/soccar/soccar_Data/Managed/Assembly-CSharp-firstpass.dll b/games/soccar/soccar_Data/Managed/Assembly-CSharp-firstpass.dll index bcfe1d2..de11070 100644 Binary files a/games/soccar/soccar_Data/Managed/Assembly-CSharp-firstpass.dll and b/games/soccar/soccar_Data/Managed/Assembly-CSharp-firstpass.dll differ diff --git a/games/soccar/soccar_Data/Managed/Assembly-CSharp.dll b/games/soccar/soccar_Data/Managed/Assembly-CSharp.dll index 3bea085..ce21523 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/Managed/CFXRDemo.dll b/games/soccar/soccar_Data/Managed/CFXRDemo.dll index ebd11af..fbbb6eb 100644 Binary files a/games/soccar/soccar_Data/Managed/CFXRDemo.dll and b/games/soccar/soccar_Data/Managed/CFXRDemo.dll differ diff --git a/games/soccar/soccar_Data/Managed/CFXRRuntime.dll b/games/soccar/soccar_Data/Managed/CFXRRuntime.dll index ada1738..5bddeba 100644 Binary files a/games/soccar/soccar_Data/Managed/CFXRRuntime.dll and b/games/soccar/soccar_Data/Managed/CFXRRuntime.dll differ diff --git a/games/soccar/soccar_Data/Managed/KinoBloom.Runtime.dll b/games/soccar/soccar_Data/Managed/KinoBloom.Runtime.dll index 7a1b480..81f4044 100644 Binary files a/games/soccar/soccar_Data/Managed/KinoBloom.Runtime.dll and b/games/soccar/soccar_Data/Managed/KinoBloom.Runtime.dll differ diff --git a/games/soccar/soccar_Data/Managed/Mirror.Authenticators.dll b/games/soccar/soccar_Data/Managed/Mirror.Authenticators.dll index 9577a3b..3a62caa 100644 Binary files a/games/soccar/soccar_Data/Managed/Mirror.Authenticators.dll and b/games/soccar/soccar_Data/Managed/Mirror.Authenticators.dll differ diff --git a/games/soccar/soccar_Data/Managed/Mirror.Components.dll b/games/soccar/soccar_Data/Managed/Mirror.Components.dll index e8e73b6..472998e 100644 Binary files a/games/soccar/soccar_Data/Managed/Mirror.Components.dll and b/games/soccar/soccar_Data/Managed/Mirror.Components.dll differ diff --git a/games/soccar/soccar_Data/Managed/Mirror.Transports.dll b/games/soccar/soccar_Data/Managed/Mirror.Transports.dll index b47b69a..ea07204 100644 Binary files a/games/soccar/soccar_Data/Managed/Mirror.Transports.dll and b/games/soccar/soccar_Data/Managed/Mirror.Transports.dll differ diff --git a/games/soccar/soccar_Data/Managed/Mirror.dll b/games/soccar/soccar_Data/Managed/Mirror.dll index 169223d..2b1c23c 100644 Binary files a/games/soccar/soccar_Data/Managed/Mirror.dll and b/games/soccar/soccar_Data/Managed/Mirror.dll differ diff --git a/games/soccar/soccar_Data/Managed/SimpleWebTransport.dll b/games/soccar/soccar_Data/Managed/SimpleWebTransport.dll index 8f0070b..3365bb2 100644 Binary files a/games/soccar/soccar_Data/Managed/SimpleWebTransport.dll and b/games/soccar/soccar_Data/Managed/SimpleWebTransport.dll differ diff --git a/games/soccar/soccar_Data/Managed/Telepathy.dll b/games/soccar/soccar_Data/Managed/Telepathy.dll index c58ad58..0babe13 100644 Binary files a/games/soccar/soccar_Data/Managed/Telepathy.dll and b/games/soccar/soccar_Data/Managed/Telepathy.dll differ diff --git a/games/soccar/soccar_Data/Managed/Unity.2D.Animation.Runtime.dll b/games/soccar/soccar_Data/Managed/Unity.2D.Animation.Runtime.dll index 05d1f4e..647d0db 100644 Binary files a/games/soccar/soccar_Data/Managed/Unity.2D.Animation.Runtime.dll and b/games/soccar/soccar_Data/Managed/Unity.2D.Animation.Runtime.dll differ diff --git a/games/soccar/soccar_Data/Managed/Unity.2D.Common.Runtime.dll b/games/soccar/soccar_Data/Managed/Unity.2D.Common.Runtime.dll index 4218475..cd46143 100644 Binary files a/games/soccar/soccar_Data/Managed/Unity.2D.Common.Runtime.dll and b/games/soccar/soccar_Data/Managed/Unity.2D.Common.Runtime.dll differ diff --git a/games/soccar/soccar_Data/Managed/Unity.2D.IK.Runtime.dll b/games/soccar/soccar_Data/Managed/Unity.2D.IK.Runtime.dll index 05acdc3..1dc36dc 100644 Binary files a/games/soccar/soccar_Data/Managed/Unity.2D.IK.Runtime.dll and b/games/soccar/soccar_Data/Managed/Unity.2D.IK.Runtime.dll differ diff --git a/games/soccar/soccar_Data/Managed/Unity.2D.PixelPerfect.dll b/games/soccar/soccar_Data/Managed/Unity.2D.PixelPerfect.dll index fa933b8..9747890 100644 Binary files a/games/soccar/soccar_Data/Managed/Unity.2D.PixelPerfect.dll and b/games/soccar/soccar_Data/Managed/Unity.2D.PixelPerfect.dll differ diff --git a/games/soccar/soccar_Data/Managed/Unity.2D.SpriteShape.Runtime.dll b/games/soccar/soccar_Data/Managed/Unity.2D.SpriteShape.Runtime.dll index bcde1e0..3966b1d 100644 Binary files a/games/soccar/soccar_Data/Managed/Unity.2D.SpriteShape.Runtime.dll and b/games/soccar/soccar_Data/Managed/Unity.2D.SpriteShape.Runtime.dll differ diff --git a/games/soccar/soccar_Data/Managed/Unity.2D.Tilemap.Extras.dll b/games/soccar/soccar_Data/Managed/Unity.2D.Tilemap.Extras.dll index 2976255..07765a1 100644 Binary files a/games/soccar/soccar_Data/Managed/Unity.2D.Tilemap.Extras.dll and b/games/soccar/soccar_Data/Managed/Unity.2D.Tilemap.Extras.dll differ diff --git a/games/soccar/soccar_Data/Managed/Unity.Collections.dll b/games/soccar/soccar_Data/Managed/Unity.Collections.dll index 5331ee9..5a4fc26 100644 Binary files a/games/soccar/soccar_Data/Managed/Unity.Collections.dll and b/games/soccar/soccar_Data/Managed/Unity.Collections.dll differ diff --git a/games/soccar/soccar_Data/Managed/Unity.InputSystem.ForUI.dll b/games/soccar/soccar_Data/Managed/Unity.InputSystem.ForUI.dll index 5def771..bf55981 100644 Binary files a/games/soccar/soccar_Data/Managed/Unity.InputSystem.ForUI.dll and b/games/soccar/soccar_Data/Managed/Unity.InputSystem.ForUI.dll differ diff --git a/games/soccar/soccar_Data/Managed/Unity.InputSystem.dll b/games/soccar/soccar_Data/Managed/Unity.InputSystem.dll index 1b46cc1..8da599c 100644 Binary files a/games/soccar/soccar_Data/Managed/Unity.InputSystem.dll and b/games/soccar/soccar_Data/Managed/Unity.InputSystem.dll differ diff --git a/games/soccar/soccar_Data/Managed/Unity.InternalAPIEngineBridge.001.dll b/games/soccar/soccar_Data/Managed/Unity.InternalAPIEngineBridge.001.dll index 78f83e0..b1b4c14 100644 Binary files a/games/soccar/soccar_Data/Managed/Unity.InternalAPIEngineBridge.001.dll and b/games/soccar/soccar_Data/Managed/Unity.InternalAPIEngineBridge.001.dll differ diff --git a/games/soccar/soccar_Data/Managed/Unity.Mathematics.dll b/games/soccar/soccar_Data/Managed/Unity.Mathematics.dll index feb6b66..078cf03 100644 Binary files a/games/soccar/soccar_Data/Managed/Unity.Mathematics.dll and b/games/soccar/soccar_Data/Managed/Unity.Mathematics.dll differ diff --git a/games/soccar/soccar_Data/Managed/Unity.RenderPipeline.Universal.ShaderLibrary.dll b/games/soccar/soccar_Data/Managed/Unity.RenderPipeline.Universal.ShaderLibrary.dll index a25b63c..48373a6 100644 Binary files a/games/soccar/soccar_Data/Managed/Unity.RenderPipeline.Universal.ShaderLibrary.dll and b/games/soccar/soccar_Data/Managed/Unity.RenderPipeline.Universal.ShaderLibrary.dll differ diff --git a/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.Core.Runtime.Shared.dll b/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.Core.Runtime.Shared.dll index 865e6c5..2ce6990 100644 Binary files a/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.Core.Runtime.Shared.dll and b/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.Core.Runtime.Shared.dll differ diff --git a/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.Core.Runtime.dll b/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.Core.Runtime.dll index 1890a0b..647fd3d 100644 Binary files a/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.Core.Runtime.dll and b/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.Core.Runtime.dll differ diff --git a/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.Core.ShaderLibrary.dll b/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.Core.ShaderLibrary.dll index aa886cb..15b86e5 100644 Binary files a/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.Core.ShaderLibrary.dll and b/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.Core.ShaderLibrary.dll differ diff --git a/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.GPUDriven.Runtime.dll b/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.GPUDriven.Runtime.dll index d24eba9..aa5c068 100644 Binary files a/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.GPUDriven.Runtime.dll and b/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.GPUDriven.Runtime.dll differ diff --git a/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll b/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll index 3338670..950d499 100644 Binary files a/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll and b/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll differ diff --git a/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.Universal.2D.Runtime.dll b/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.Universal.2D.Runtime.dll index af37242..fbffbde 100644 Binary files a/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.Universal.2D.Runtime.dll and b/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.Universal.2D.Runtime.dll differ diff --git a/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.Universal.Config.Runtime.dll b/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.Universal.Config.Runtime.dll index 1b61f86..bc4d034 100644 Binary files a/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.Universal.Config.Runtime.dll and b/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.Universal.Config.Runtime.dll differ diff --git a/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.Universal.Runtime.dll b/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.Universal.Runtime.dll index b0db0fa..bc55c2d 100644 Binary files a/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.Universal.Runtime.dll and b/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.Universal.Runtime.dll differ diff --git a/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.Universal.Shaders.dll b/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.Universal.Shaders.dll index 7793137..aa2af83 100644 Binary files a/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.Universal.Shaders.dll and b/games/soccar/soccar_Data/Managed/Unity.RenderPipelines.Universal.Shaders.dll differ diff --git a/games/soccar/soccar_Data/Managed/Unity.Rendering.LightTransport.Runtime.dll b/games/soccar/soccar_Data/Managed/Unity.Rendering.LightTransport.Runtime.dll index a14f996..cf769a4 100644 Binary files a/games/soccar/soccar_Data/Managed/Unity.Rendering.LightTransport.Runtime.dll and b/games/soccar/soccar_Data/Managed/Unity.Rendering.LightTransport.Runtime.dll differ diff --git a/games/soccar/soccar_Data/Managed/Unity.TextMeshPro.dll b/games/soccar/soccar_Data/Managed/Unity.TextMeshPro.dll index 54d6fe4..14cb689 100644 Binary files a/games/soccar/soccar_Data/Managed/Unity.TextMeshPro.dll and b/games/soccar/soccar_Data/Managed/Unity.TextMeshPro.dll differ diff --git a/games/soccar/soccar_Data/Managed/Unity.Timeline.dll b/games/soccar/soccar_Data/Managed/Unity.Timeline.dll index 9c20598..b1888ab 100644 Binary files a/games/soccar/soccar_Data/Managed/Unity.Timeline.dll and b/games/soccar/soccar_Data/Managed/Unity.Timeline.dll differ diff --git a/games/soccar/soccar_Data/Managed/UnityEngine.UI.dll b/games/soccar/soccar_Data/Managed/UnityEngine.UI.dll index 5a635bf..518c822 100644 Binary files a/games/soccar/soccar_Data/Managed/UnityEngine.UI.dll and b/games/soccar/soccar_Data/Managed/UnityEngine.UI.dll differ diff --git a/games/soccar/soccar_Data/Managed/kcp2k.dll b/games/soccar/soccar_Data/Managed/kcp2k.dll index 819c717..d4ceb3e 100644 Binary files a/games/soccar/soccar_Data/Managed/kcp2k.dll and b/games/soccar/soccar_Data/Managed/kcp2k.dll differ diff --git a/games/soccar/soccar_Data/RuntimeInitializeOnLoads.json b/games/soccar/soccar_Data/RuntimeInitializeOnLoads.json index efe8c2d..1e0301e 100644 --- a/games/soccar/soccar_Data/RuntimeInitializeOnLoads.json +++ b/games/soccar/soccar_Data/RuntimeInitializeOnLoads.json @@ -1 +1 @@ -{"root":[{"assemblyName":"DOTween","nameSpace":"DG.Tweening","className":"DOTween","methodName":"RuntimeOnLoad","loadTypes":1,"isUnityClass":false},{"assemblyName":"Assembly-CSharp","nameSpace":"Mirror","className":"GeneratedNetworkCode","methodName":"InitReadWriters","loadTypes":1,"isUnityClass":false},{"assemblyName":"Mirror.Authenticators","nameSpace":"Mirror","className":"GeneratedNetworkCode","methodName":"InitReadWriters","loadTypes":1,"isUnityClass":false},{"assemblyName":"Mirror.Components","nameSpace":"Mirror","className":"GeneratedNetworkCode","methodName":"InitReadWriters","loadTypes":1,"isUnityClass":false},{"assemblyName":"Mirror","nameSpace":"Mirror","className":"NetworkClient","methodName":"Shutdown","loadTypes":1,"isUnityClass":false},{"assemblyName":"Mirror","nameSpace":"Mirror","className":"NetworkDiagnostics","methodName":"ResetStatics","loadTypes":0,"isUnityClass":false},{"assemblyName":"Mirror","nameSpace":"Mirror","className":"NetworkIdentity","methodName":"ResetStatics","loadTypes":1,"isUnityClass":false},{"assemblyName":"Mirror","nameSpace":"Mirror","className":"NetworkLoop","methodName":"ResetStatics","loadTypes":1,"isUnityClass":false},{"assemblyName":"Mirror","nameSpace":"Mirror","className":"NetworkLoop","methodName":"RuntimeInitializeOnLoad","loadTypes":1,"isUnityClass":false},{"assemblyName":"Mirror","nameSpace":"Mirror","className":"NetworkManager","methodName":"ResetStatics","loadTypes":1,"isUnityClass":false},{"assemblyName":"Mirror","nameSpace":"Mirror","className":"NetworkServer","methodName":"Shutdown","loadTypes":1,"isUnityClass":false},{"assemblyName":"Mirror","nameSpace":"Mirror","className":"NetworkTime","methodName":"ResetStatics","loadTypes":0,"isUnityClass":false},{"assemblyName":"Mirror","nameSpace":"Mirror","className":"ThreadLog","methodName":"Initialize","loadTypes":1,"isUnityClass":false},{"assemblyName":"Mirror","nameSpace":"Mirror","className":"GeneratedNetworkCode","methodName":"InitReadWriters","loadTypes":1,"isUnityClass":false},{"assemblyName":"Mirror.Examples","nameSpace":"Mirror.Examples.MultipleMatch","className":"CanvasController","methodName":"ResetStatics","loadTypes":1,"isUnityClass":false},{"assemblyName":"Mirror.Examples","nameSpace":"Mirror.Examples.Chat","className":"ChatAuthenticator","methodName":"ResetStatics","loadTypes":0,"isUnityClass":false},{"assemblyName":"Mirror.Examples","nameSpace":"Mirror","className":"GeneratedNetworkCode","methodName":"InitReadWriters","loadTypes":1,"isUnityClass":false},{"assemblyName":"Unity.2D.Animation.Runtime","nameSpace":"UnityEngine.U2D.Animation","className":"GpuDeformationSystem","methodName":"CreateFallbackBuffer","loadTypes":0,"isUnityClass":true},{"assemblyName":"Unity.2D.Animation.Runtime","nameSpace":"","className":"__JobReflectionRegistrationOutput__12640072059193112690","methodName":"EarlyInit","loadTypes":2,"isUnityClass":true},{"assemblyName":"Unity.2D.Animation.Runtime","nameSpace":"","className":"$BurstDirectCallInitializer","methodName":"Initialize","loadTypes":2,"isUnityClass":true},{"assemblyName":"Unity.2D.SpriteShape.Runtime","nameSpace":"","className":"$BurstDirectCallInitializer","methodName":"Initialize","loadTypes":2,"isUnityClass":true},{"assemblyName":"Unity.Burst","nameSpace":"","className":"$BurstDirectCallInitializer","methodName":"Initialize","loadTypes":2,"isUnityClass":true},{"assemblyName":"Unity.Collections","nameSpace":"","className":"__JobReflectionRegistrationOutput__1652832624114795843","methodName":"EarlyInit","loadTypes":2,"isUnityClass":true},{"assemblyName":"Unity.Collections","nameSpace":"","className":"$BurstDirectCallInitializer","methodName":"Initialize","loadTypes":2,"isUnityClass":true},{"assemblyName":"Unity.InputSystem","nameSpace":"UnityEngine.InputSystem","className":"InputSystem","methodName":"RunInitializeInPlayer","loadTypes":4,"isUnityClass":true},{"assemblyName":"Unity.InputSystem","nameSpace":"UnityEngine.InputSystem","className":"InputSystem","methodName":"RunInitialUpdate","loadTypes":1,"isUnityClass":true},{"assemblyName":"Unity.InputSystem","nameSpace":"UnityEngine.InputSystem.UI","className":"InputSystemUIInputModule","methodName":"ResetDefaultActions","loadTypes":4,"isUnityClass":true},{"assemblyName":"Unity.InputSystem.ForUI","nameSpace":"UnityEngine.InputSystem.Plugins.InputForUI","className":"InputSystemProvider","methodName":"Bootstrap","loadTypes":4,"isUnityClass":true},{"assemblyName":"Unity.Rendering.LightTransport.Runtime","nameSpace":"","className":"__JobReflectionRegistrationOutput__16164947281921951637","methodName":"EarlyInit","loadTypes":2,"isUnityClass":true},{"assemblyName":"Unity.RenderPipelines.Core.Runtime","nameSpace":"UnityEngine.Experimental.Rendering","className":"XRSystem","methodName":"XRSystemInit","loadTypes":3,"isUnityClass":true},{"assemblyName":"Unity.RenderPipelines.Core.Runtime","nameSpace":"UnityEngine.Rendering","className":"DebugUpdater","methodName":"RuntimeInit","loadTypes":0,"isUnityClass":true},{"assemblyName":"Unity.RenderPipelines.GPUDriven.Runtime","nameSpace":"","className":"__JobReflectionRegistrationOutput__15867191014387474753","methodName":"EarlyInit","loadTypes":2,"isUnityClass":true},{"assemblyName":"Unity.RenderPipelines.GPUDriven.Runtime","nameSpace":"","className":"$BurstDirectCallInitializer","methodName":"Initialize","loadTypes":2,"isUnityClass":true},{"assemblyName":"Unity.RenderPipelines.Universal.2D.Runtime","nameSpace":"","className":"$BurstDirectCallInitializer","methodName":"Initialize","loadTypes":2,"isUnityClass":true},{"assemblyName":"Unity.VisualScripting.Core","nameSpace":"Unity.VisualScripting","className":"RuntimeVSUsageUtility","methodName":"RuntimeInitializeOnLoadBeforeSceneLoad","loadTypes":1,"isUnityClass":true}]} +{"root":[{"assemblyName":"DOTween","nameSpace":"DG.Tweening","className":"DOTween","methodName":"RuntimeOnLoad","loadTypes":1,"isUnityClass":false},{"assemblyName":"Assembly-CSharp","nameSpace":"Mirror","className":"GeneratedNetworkCode","methodName":"InitReadWriters","loadTypes":1,"isUnityClass":false},{"assemblyName":"Mirror.Authenticators","nameSpace":"Mirror","className":"GeneratedNetworkCode","methodName":"InitReadWriters","loadTypes":1,"isUnityClass":false},{"assemblyName":"Mirror.Components","nameSpace":"Mirror","className":"GeneratedNetworkCode","methodName":"InitReadWriters","loadTypes":1,"isUnityClass":false},{"assemblyName":"Mirror","nameSpace":"Mirror","className":"NetworkClient","methodName":"Shutdown","loadTypes":1,"isUnityClass":false},{"assemblyName":"Mirror","nameSpace":"Mirror","className":"NetworkDiagnostics","methodName":"ResetStatics","loadTypes":0,"isUnityClass":false},{"assemblyName":"Mirror","nameSpace":"Mirror","className":"NetworkIdentity","methodName":"ResetStatics","loadTypes":1,"isUnityClass":false},{"assemblyName":"Mirror","nameSpace":"Mirror","className":"NetworkLoop","methodName":"ResetStatics","loadTypes":1,"isUnityClass":false},{"assemblyName":"Mirror","nameSpace":"Mirror","className":"NetworkLoop","methodName":"RuntimeInitializeOnLoad","loadTypes":1,"isUnityClass":false},{"assemblyName":"Mirror","nameSpace":"Mirror","className":"NetworkManager","methodName":"ResetStatics","loadTypes":1,"isUnityClass":false},{"assemblyName":"Mirror","nameSpace":"Mirror","className":"NetworkServer","methodName":"Shutdown","loadTypes":1,"isUnityClass":false},{"assemblyName":"Mirror","nameSpace":"Mirror","className":"NetworkTime","methodName":"ResetStatics","loadTypes":0,"isUnityClass":false},{"assemblyName":"Mirror","nameSpace":"Mirror","className":"ThreadLog","methodName":"Initialize","loadTypes":1,"isUnityClass":false},{"assemblyName":"Mirror","nameSpace":"Mirror","className":"GeneratedNetworkCode","methodName":"InitReadWriters","loadTypes":1,"isUnityClass":false},{"assemblyName":"Unity.2D.Animation.Runtime","nameSpace":"UnityEngine.U2D.Animation","className":"GpuDeformationSystem","methodName":"CreateFallbackBuffer","loadTypes":0,"isUnityClass":true},{"assemblyName":"Unity.2D.Animation.Runtime","nameSpace":"","className":"__JobReflectionRegistrationOutput__12640072059193112690","methodName":"EarlyInit","loadTypes":2,"isUnityClass":true},{"assemblyName":"Unity.2D.Animation.Runtime","nameSpace":"","className":"$BurstDirectCallInitializer","methodName":"Initialize","loadTypes":2,"isUnityClass":true},{"assemblyName":"Unity.2D.SpriteShape.Runtime","nameSpace":"","className":"$BurstDirectCallInitializer","methodName":"Initialize","loadTypes":2,"isUnityClass":true},{"assemblyName":"Unity.Burst","nameSpace":"","className":"$BurstDirectCallInitializer","methodName":"Initialize","loadTypes":2,"isUnityClass":true},{"assemblyName":"Unity.Collections","nameSpace":"","className":"__JobReflectionRegistrationOutput__1652832624114795843","methodName":"EarlyInit","loadTypes":2,"isUnityClass":true},{"assemblyName":"Unity.Collections","nameSpace":"","className":"$BurstDirectCallInitializer","methodName":"Initialize","loadTypes":2,"isUnityClass":true},{"assemblyName":"Unity.InputSystem","nameSpace":"UnityEngine.InputSystem","className":"InputSystem","methodName":"RunInitializeInPlayer","loadTypes":4,"isUnityClass":true},{"assemblyName":"Unity.InputSystem","nameSpace":"UnityEngine.InputSystem","className":"InputSystem","methodName":"RunInitialUpdate","loadTypes":1,"isUnityClass":true},{"assemblyName":"Unity.InputSystem","nameSpace":"UnityEngine.InputSystem.UI","className":"InputSystemUIInputModule","methodName":"ResetDefaultActions","loadTypes":4,"isUnityClass":true},{"assemblyName":"Unity.InputSystem.ForUI","nameSpace":"UnityEngine.InputSystem.Plugins.InputForUI","className":"InputSystemProvider","methodName":"Bootstrap","loadTypes":4,"isUnityClass":true},{"assemblyName":"Unity.Rendering.LightTransport.Runtime","nameSpace":"","className":"__JobReflectionRegistrationOutput__16164947281921951637","methodName":"EarlyInit","loadTypes":2,"isUnityClass":true},{"assemblyName":"Unity.RenderPipelines.Core.Runtime","nameSpace":"UnityEngine.Experimental.Rendering","className":"XRSystem","methodName":"XRSystemInit","loadTypes":3,"isUnityClass":true},{"assemblyName":"Unity.RenderPipelines.Core.Runtime","nameSpace":"UnityEngine.Rendering","className":"DebugUpdater","methodName":"RuntimeInit","loadTypes":0,"isUnityClass":true},{"assemblyName":"Unity.RenderPipelines.GPUDriven.Runtime","nameSpace":"","className":"__JobReflectionRegistrationOutput__15867191014387474753","methodName":"EarlyInit","loadTypes":2,"isUnityClass":true},{"assemblyName":"Unity.RenderPipelines.GPUDriven.Runtime","nameSpace":"","className":"$BurstDirectCallInitializer","methodName":"Initialize","loadTypes":2,"isUnityClass":true},{"assemblyName":"Unity.RenderPipelines.Universal.2D.Runtime","nameSpace":"","className":"$BurstDirectCallInitializer","methodName":"Initialize","loadTypes":2,"isUnityClass":true}]} diff --git a/games/soccar/soccar_Data/ScriptingAssemblies.json b/games/soccar/soccar_Data/ScriptingAssemblies.json index 65f36fd..e218a13 100644 --- a/games/soccar/soccar_Data/ScriptingAssemblies.json +++ b/games/soccar/soccar_Data/ScriptingAssemblies.json @@ -1 +1 @@ -{"names":["UnityEngine.dll","UnityEngine.AIModule.dll","UnityEngine.AccessibilityModule.dll","UnityEngine.AndroidJNIModule.dll","UnityEngine.AnimationModule.dll","UnityEngine.AssetBundleModule.dll","UnityEngine.AudioModule.dll","UnityEngine.ClothModule.dll","UnityEngine.ClusterInputModule.dll","UnityEngine.ClusterRendererModule.dll","UnityEngine.ContentLoadModule.dll","UnityEngine.CoreModule.dll","UnityEngine.CrashReportingModule.dll","UnityEngine.DSPGraphModule.dll","UnityEngine.DirectorModule.dll","UnityEngine.GIModule.dll","UnityEngine.GameCenterModule.dll","UnityEngine.GraphicsStateCollectionSerializerModule.dll","UnityEngine.GridModule.dll","UnityEngine.HierarchyCoreModule.dll","UnityEngine.HotReloadModule.dll","UnityEngine.IMGUIModule.dll","UnityEngine.ImageConversionModule.dll","UnityEngine.InputModule.dll","UnityEngine.InputForUIModule.dll","UnityEngine.InputLegacyModule.dll","UnityEngine.JSONSerializeModule.dll","UnityEngine.LocalizationModule.dll","UnityEngine.MarshallingModule.dll","UnityEngine.MultiplayerModule.dll","UnityEngine.ParticleSystemModule.dll","UnityEngine.PerformanceReportingModule.dll","UnityEngine.PhysicsModule.dll","UnityEngine.Physics2DModule.dll","UnityEngine.PropertiesModule.dll","UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","UnityEngine.ScreenCaptureModule.dll","UnityEngine.ShaderVariantAnalyticsModule.dll","UnityEngine.SharedInternalsModule.dll","UnityEngine.SpriteMaskModule.dll","UnityEngine.SpriteShapeModule.dll","UnityEngine.StreamingModule.dll","UnityEngine.SubstanceModule.dll","UnityEngine.SubsystemsModule.dll","UnityEngine.TLSModule.dll","UnityEngine.TerrainModule.dll","UnityEngine.TerrainPhysicsModule.dll","UnityEngine.TextCoreFontEngineModule.dll","UnityEngine.TextCoreTextEngineModule.dll","UnityEngine.TextRenderingModule.dll","UnityEngine.TilemapModule.dll","UnityEngine.UIModule.dll","UnityEngine.UIElementsModule.dll","UnityEngine.UmbraModule.dll","UnityEngine.UnityAnalyticsModule.dll","UnityEngine.UnityAnalyticsCommonModule.dll","UnityEngine.UnityConnectModule.dll","UnityEngine.UnityCurlModule.dll","UnityEngine.UnityTestProtocolModule.dll","UnityEngine.UnityWebRequestModule.dll","UnityEngine.UnityWebRequestAssetBundleModule.dll","UnityEngine.UnityWebRequestAudioModule.dll","UnityEngine.UnityWebRequestTextureModule.dll","UnityEngine.UnityWebRequestWWWModule.dll","UnityEngine.VFXModule.dll","UnityEngine.VRModule.dll","UnityEngine.VehiclesModule.dll","UnityEngine.VideoModule.dll","UnityEngine.VirtualTexturingModule.dll","UnityEngine.WindModule.dll","UnityEngine.XRModule.dll","Assembly-CSharp-firstpass.dll","Assembly-CSharp.dll","CFXRDemo.dll","CFXRRuntime.dll","kcp2k.dll","KinoBloom.Runtime.dll","Mirror.Authenticators.dll","Mirror.Components.dll","Mirror.dll","Mirror.Examples.dll","Mirror.Transports.dll","SimpleWebTransport.dll","Telepathy.dll","Unity.2D.Animation.Runtime.dll","Unity.2D.Common.Runtime.dll","Unity.2D.IK.Runtime.dll","Unity.2D.PixelPerfect.dll","Unity.2D.SpriteShape.Runtime.dll","Unity.2D.Tilemap.Extras.dll","Unity.Burst.dll","Unity.Collections.dll","Unity.InputSystem.dll","Unity.InputSystem.ForUI.dll","Unity.InternalAPIEngineBridge.001.dll","Unity.Mathematics.dll","Unity.Multiplayer.Center.Common.dll","Unity.Rendering.LightTransport.Runtime.dll","Unity.RenderPipeline.Universal.ShaderLibrary.dll","Unity.RenderPipelines.Core.Runtime.dll","Unity.RenderPipelines.Core.Runtime.Shared.dll","Unity.RenderPipelines.Core.ShaderLibrary.dll","Unity.RenderPipelines.GPUDriven.Runtime.dll","Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll","Unity.RenderPipelines.Universal.2D.Runtime.dll","Unity.RenderPipelines.Universal.Config.Runtime.dll","Unity.RenderPipelines.Universal.Runtime.dll","Unity.RenderPipelines.Universal.Shaders.dll","Unity.TextMeshPro.dll","Unity.Timeline.dll","Unity.VisualScripting.Core.dll","Unity.VisualScripting.Flow.dll","Unity.VisualScripting.State.dll","UnityEngine.UI.dll","Unity.Collections.LowLevel.ILSupport.dll","Mirror.BouncyCastle.Cryptography.dll","DOTween.dll","Unity.VisualScripting.Antlr3.Runtime.dll","Unity.Burst.Unsafe.dll","Newtonsoft.Json.dll"],"types":[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16]} \ No newline at end of file +{"names":["UnityEngine.dll","UnityEngine.AIModule.dll","UnityEngine.AccessibilityModule.dll","UnityEngine.AndroidJNIModule.dll","UnityEngine.AnimationModule.dll","UnityEngine.AssetBundleModule.dll","UnityEngine.AudioModule.dll","UnityEngine.ClothModule.dll","UnityEngine.ClusterInputModule.dll","UnityEngine.ClusterRendererModule.dll","UnityEngine.ContentLoadModule.dll","UnityEngine.CoreModule.dll","UnityEngine.CrashReportingModule.dll","UnityEngine.DSPGraphModule.dll","UnityEngine.DirectorModule.dll","UnityEngine.GIModule.dll","UnityEngine.GameCenterModule.dll","UnityEngine.GraphicsStateCollectionSerializerModule.dll","UnityEngine.GridModule.dll","UnityEngine.HierarchyCoreModule.dll","UnityEngine.HotReloadModule.dll","UnityEngine.IMGUIModule.dll","UnityEngine.ImageConversionModule.dll","UnityEngine.InputModule.dll","UnityEngine.InputForUIModule.dll","UnityEngine.InputLegacyModule.dll","UnityEngine.JSONSerializeModule.dll","UnityEngine.LocalizationModule.dll","UnityEngine.MarshallingModule.dll","UnityEngine.MultiplayerModule.dll","UnityEngine.ParticleSystemModule.dll","UnityEngine.PerformanceReportingModule.dll","UnityEngine.PhysicsModule.dll","UnityEngine.Physics2DModule.dll","UnityEngine.PropertiesModule.dll","UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","UnityEngine.ScreenCaptureModule.dll","UnityEngine.ShaderVariantAnalyticsModule.dll","UnityEngine.SharedInternalsModule.dll","UnityEngine.SpriteMaskModule.dll","UnityEngine.SpriteShapeModule.dll","UnityEngine.StreamingModule.dll","UnityEngine.SubstanceModule.dll","UnityEngine.SubsystemsModule.dll","UnityEngine.TLSModule.dll","UnityEngine.TerrainModule.dll","UnityEngine.TerrainPhysicsModule.dll","UnityEngine.TextCoreFontEngineModule.dll","UnityEngine.TextCoreTextEngineModule.dll","UnityEngine.TextRenderingModule.dll","UnityEngine.TilemapModule.dll","UnityEngine.UIModule.dll","UnityEngine.UIElementsModule.dll","UnityEngine.UmbraModule.dll","UnityEngine.UnityAnalyticsModule.dll","UnityEngine.UnityAnalyticsCommonModule.dll","UnityEngine.UnityConnectModule.dll","UnityEngine.UnityCurlModule.dll","UnityEngine.UnityTestProtocolModule.dll","UnityEngine.UnityWebRequestModule.dll","UnityEngine.UnityWebRequestAssetBundleModule.dll","UnityEngine.UnityWebRequestAudioModule.dll","UnityEngine.UnityWebRequestTextureModule.dll","UnityEngine.UnityWebRequestWWWModule.dll","UnityEngine.VFXModule.dll","UnityEngine.VRModule.dll","UnityEngine.VehiclesModule.dll","UnityEngine.VideoModule.dll","UnityEngine.VirtualTexturingModule.dll","UnityEngine.WindModule.dll","UnityEngine.XRModule.dll","Assembly-CSharp-firstpass.dll","Assembly-CSharp.dll","CFXRDemo.dll","CFXRRuntime.dll","kcp2k.dll","KinoBloom.Runtime.dll","Mirror.Authenticators.dll","Mirror.Components.dll","Mirror.dll","Mirror.Transports.dll","SimpleWebTransport.dll","Telepathy.dll","Unity.2D.Animation.Runtime.dll","Unity.2D.Common.Runtime.dll","Unity.2D.IK.Runtime.dll","Unity.2D.PixelPerfect.dll","Unity.2D.SpriteShape.Runtime.dll","Unity.2D.Tilemap.Extras.dll","Unity.Burst.dll","Unity.Collections.dll","Unity.InputSystem.dll","Unity.InputSystem.ForUI.dll","Unity.InternalAPIEngineBridge.001.dll","Unity.Mathematics.dll","Unity.Rendering.LightTransport.Runtime.dll","Unity.RenderPipeline.Universal.ShaderLibrary.dll","Unity.RenderPipelines.Core.Runtime.dll","Unity.RenderPipelines.Core.Runtime.Shared.dll","Unity.RenderPipelines.Core.ShaderLibrary.dll","Unity.RenderPipelines.GPUDriven.Runtime.dll","Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll","Unity.RenderPipelines.Universal.2D.Runtime.dll","Unity.RenderPipelines.Universal.Config.Runtime.dll","Unity.RenderPipelines.Universal.Runtime.dll","Unity.RenderPipelines.Universal.Shaders.dll","Unity.TextMeshPro.dll","Unity.Timeline.dll","UnityEngine.UI.dll","Unity.Collections.LowLevel.ILSupport.dll","Mirror.BouncyCastle.Cryptography.dll","DOTween.dll","Unity.Burst.Unsafe.dll","Newtonsoft.Json.dll"],"types":[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16]} \ No newline at end of file diff --git a/games/soccar/soccar_Data/boot.config b/games/soccar/soccar_Data/boot.config index 0c2f325..af873b3 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=b73fb3f37c2e40d6824bba105a8d5264 +build-guid=6f7e6f2a24214892992556d21043ad91 diff --git a/games/soccar/soccar_Data/globalgamemanagers b/games/soccar/soccar_Data/globalgamemanagers index 2ef0f03..a1a91cf 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 cc7efd9..943a16d 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 8e725c5..b2f6457 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 ffecf1e..919a62e 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 5c8d33d..38ad7ea 100644 Binary files a/games/soccar/soccar_Data/sharedassets0.assets and b/games/soccar/soccar_Data/sharedassets0.assets differ diff --git a/games/soccar/soccar_Data/sharedassets0.resource b/games/soccar/soccar_Data/sharedassets0.resource index 20e0a93..672d47b 100644 Binary files a/games/soccar/soccar_Data/sharedassets0.resource and b/games/soccar/soccar_Data/sharedassets0.resource differ diff --git a/matches.ts b/matches.ts index 0411420..86d2d0c 100644 --- a/matches.ts +++ b/matches.ts @@ -9,8 +9,9 @@ export const MATCH_ENTRY_FEE_RC = 21; const SETTINGS_KEY_ENTRY_FEE = 'entry_fee'; const SETTINGS_KEY_BET_FEE = 'bet_fee'; +const SYSTEM_ACCOUNT_ID = 1; -/** Fallback when `public.settings` has no `bet_fee` row or value is invalid (percent of prize pool taken as server fee). */ +/** Fallback when `public.settings` has no `bet_fee` row or value is invalid (percent applied to each player's entry). */ export const DEFAULT_BET_FEE_PERCENT = 10; /** RC entry fee for normal matchmaking (not rematches): `public.settings` row `key = entry_fee`, `value` integer string. */ @@ -30,7 +31,22 @@ export async function getDefaultMatchEntryFeeRc(settings: Settings): Promise> { + if (!supabaseConfigured(settings)) return {}; + const supabase = createSupabase(settings); + const { data, error } = await supabase.from('settings').select('key, value'); + if (error || !data) return {}; + const out: Record = {}; + for (const row of data as { key?: unknown; value?: unknown }[]) { + if (typeof row.key === 'string' && typeof row.value === 'string') { + out[row.key] = row.value; + } + } + return out; +} + +/** Server fee percent of each player's entry (`bet_fee`): `public.settings` row `key = bet_fee`, `value` integer 0–100. */ export async function getBetFeePercentFromSettings(settings: Settings): Promise { if (!supabaseConfigured(settings)) return DEFAULT_BET_FEE_PERCENT; const supabase = createSupabase(settings); @@ -54,13 +70,13 @@ export type InsertMatchForNewRoomResult = { }; /** - * `prize_pool = entry_fee * 2`, `server_fee = ceil(prize_pool * betFeePercent / 100)`, returns `prize_pool - server_fee`. - * `betFeePercent` comes from `public.settings` key `bet_fee` (default {@link DEFAULT_BET_FEE_PERCENT}). + * Winner's net RC = both entries minus per-player fees. + * `fee_each = ceil(entry_fee * betFeePercent / 100)`, prize = `(entry_fee - fee_each) * 2` = `entry_fee * 2 - fee_each * 2`. + * Matches ledger rows: each player pays `fee_each` to system (`entry_fee`) and holds `entry_fee - fee_each`. */ export function computeRcPrizeFromEntryFee(entryFee: number, betFeePercent: number = DEFAULT_BET_FEE_PERCENT): number { - const prizePool = entryFee * 2; - const serverFee = Math.ceil((prizePool * betFeePercent) / 100); - return prizePool - serverFee; + const feeEach = Math.ceil((entryFee * betFeePercent) / 100); + return entryFee * 2 - feeEach * 2; } /** Added to each player's CC when a winner is recorded (default if `matches.prize_cc` is null). */ const MATCH_PARTICIPANT_CC_REWARD = 100; @@ -211,11 +227,12 @@ function coerceNonNegativeInt(v: unknown): number | null { } /** - * Each player pays `entry_fee` RC; winner receives RC prize after `betFeePercent` server cut; each gets `prizeCc` CC. + * Each player pays `entry_fee` RC; winner receives net RC after `betFeePercent` taken from **each** entry; each gets `prizeCc` CC. * Idempotent callers should set winner only once. */ async function applyMatchWinnerEconomy( supabase: SupabaseClient, + matchId: number, userRed: number | null, userBlue: number | null, winnerId: number, @@ -228,21 +245,73 @@ async function applyMatchWinnerEconomy( const rcPrize = computeRcPrizeFromEntryFee(entryFee, betFeePercent); - const { data: rows, error: selErr } = await supabase.from('users').select('id, rc, cc').in('id', ids); + const lookupIds = [...new Set([...ids, SYSTEM_ACCOUNT_ID])]; + const { data: rows, error: selErr } = await supabase.from('users').select('id, rc, cc').in('id', lookupIds); if (selErr) return selErr.message; - if (!rows || rows.length !== ids.length) return 'One or more players not found in users'; + if (!rows || rows.length !== lookupIds.length) return 'One or more users not found in users'; + const byId = new Map(); for (const row of rows) { const uid = coerceId((row as { id: unknown }).id); if (uid == null) continue; - const baseRc = Number((row as { rc: unknown }).rc ?? 0); - const baseCc = Number((row as { cc: unknown }).cc ?? 0); + byId.set(uid, { + rc: Number((row as { rc: unknown }).rc ?? 0), + cc: Number((row as { cc: unknown }).cc ?? 0), + }); + } + if (!byId.has(SYSTEM_ACCOUNT_ID)) return 'System account not found'; + + let totalEntryCollected = 0; + + for (const uid of ids) { + const base = byId.get(uid); + if (!base) return `Player ${uid} not found in users`; + const baseRc = base.rc; + const baseCc = base.cc; let newRc = baseRc - entryFee; if (uid === winnerId) newRc += rcPrize; const newCc = baseCc + prizeCc; const { error: upErr } = await supabase.from('users').update({ rc: newRc, cc: newCc }).eq('id', uid); if (upErr) return upErr.message; + totalEntryCollected += entryFee; } + + const system = byId.get(SYSTEM_ACCOUNT_ID)!; + const systemNewRc = system.rc + totalEntryCollected - rcPrize; + const { error: systemUpErr } = await supabase + .from('users') + .update({ rc: systemNewRc }) + .eq('id', SYSTEM_ACCOUNT_ID); + if (systemUpErr) return systemUpErr.message; + + const perPlayerBetFee = Math.ceil((entryFee * betFeePercent) / 100); + const perPlayerHold = entryFee - perPlayerBetFee; + const txRows: Array<{ from: number; to: number; amount: number; remarks: string; match_id: number }> = []; + for (const uid of ids) { + txRows.push({ + from: uid, + to: SYSTEM_ACCOUNT_ID, + amount: perPlayerHold, + remarks: 'entry_hold', + match_id: matchId, + }); + txRows.push({ + from: uid, + to: SYSTEM_ACCOUNT_ID, + amount: perPlayerBetFee, + remarks: 'entry_fee', + match_id: matchId, + }); + } + txRows.push({ + from: SYSTEM_ACCOUNT_ID, + to: winnerId, + amount: rcPrize, + remarks: 'reward', + match_id: matchId, + }); + const { error: txErr } = await supabase.from('transactions').insert(txRows); + if (txErr) return txErr.message; return null; } @@ -521,6 +590,7 @@ export function registerMatchRoutes( const payErr = await applyMatchWinnerEconomy( supabase, + matchId, userRed, userBlue, winnerId, diff --git a/schemas/alter_users_add_email.sql b/schemas/alter_users_add_email.sql new file mode 100644 index 0000000..efa46be --- /dev/null +++ b/schemas/alter_users_add_email.sql @@ -0,0 +1,9 @@ +-- Registration email. Run in Supabase Dashboard → SQL Editor. +-- Application stores normalized (trimmed, lower-case) addresses. + +alter table public.users + add column if not exists email text null; + +create unique index if not exists users_email_unique + on public.users (email) + where email is not null; diff --git a/schemas/alter_users_rc_bigint.sql b/schemas/alter_users_rc_bigint.sql new file mode 100644 index 0000000..49572d2 --- /dev/null +++ b/schemas/alter_users_rc_bigint.sql @@ -0,0 +1,8 @@ +-- `users.rc` as type `real` is IEEE float32: above ~1e7, consecutive values are spaced +-- by more than 1 (and by hundreds at ~4e9), so debits like -20 do not change the stored value. +-- Run this in Supabase SQL before relying on `purchase_rc` or large RC balances. +-- +-- After this, re-apply public.purchase_rc from schemas/rpc_purchase_rc.sql (no ::real casts). + +alter table public.users + alter column rc type bigint using round(coalesce(rc, 0))::bigint; diff --git a/schemas/ledger_idea.md b/schemas/ledger_idea.md new file mode 100644 index 0000000..26121b7 --- /dev/null +++ b/schemas/ledger_idea.md @@ -0,0 +1,45 @@ +I have introduced a new table called transactions, @schemas/table_transactions.md + +I need all RC related transactions logged in here. This is to keep track of all purchases of RC, spendings of RC and withdrawals of RC in track. + +I have added my first record with remarks of 'supply',to acc id:1. a large sum. + +All purchases of RC (in purchases rc api endpoint) will be deducted from acc id:1 and given to the requested user. + +During reward distribution, Record the bet fee going to the acc id:1 and prize going to the winner seperately. and set match_id on reward distribution . + +Heres how a RC purchase record would look like + +from: 1 +to: requested_user_id +amount: requested_amount +remarks: purchase + + +Heres how a reward distribution would look like. + +from a single players POV (there are 2 players per match). +PS: bet fee is usually 10%, stored in settings table +entry record 1/2 + +from: user_id +to: 1 +amount: entry fee - bet fee +remarks: entry_hold +match_id: match_id + +entry record 2/2 + +from: user_id +to: 1 +amount: bet fee +remarks: entry_fee +match_id: match_id + +And for giving the reward. + +from: 1 +to: winner_user_id +amount: (already calculated properly) +remarks: reward +match_id: match_id \ No newline at end of file diff --git a/schemas/rpc_purchase_rc.sql b/schemas/rpc_purchase_rc.sql new file mode 100644 index 0000000..99204f3 --- /dev/null +++ b/schemas/rpc_purchase_rc.sql @@ -0,0 +1,66 @@ +-- One-shot: run in Supabase Dashboard → SQL Editor **after** schemas/alter_users_rc_bigint.sql +-- (requires `users.rc` bigint so large balances support small debits/credits). +-- Atomically debits RC from supply user id 1, credits the buyer, inserts `transactions`. +-- SECURITY DEFINER avoids RLS/trigger edge cases on direct `users` updates from the API. + +create or replace function public.purchase_rc(p_buyer_id bigint, p_amount bigint) +returns jsonb +language plpgsql +security definer +set search_path = public +as $$ +declare + v_supply bigint := 1; +begin + if p_buyer_id is null or p_buyer_id < 1 then + raise exception 'invalid_buyer'; + end if; + if p_amount is null or p_amount <= 0 then + raise exception 'invalid_amount'; + end if; + + -- Same account: net balance must stay the same; only log for audit. + if p_buyer_id = v_supply then + insert into public.transactions ("from", "to", amount, remarks) + values (v_supply, v_supply, p_amount, 'purchase'); + return ( + select to_jsonb(t) + from ( + select id, username, cc, rc, created_at, last_logged_at + from public.users + where id = p_buyer_id + ) t + ); + end if; + + update public.users + set rc = coalesce(rc, 0) - p_amount + where id = v_supply + and coalesce(rc, 0) >= p_amount; + if not found then + raise exception 'insufficient_supply'; + end if; + + update public.users + set rc = coalesce(rc, 0) + p_amount + where id = p_buyer_id; + if not found then + raise exception 'buyer_not_found'; + end if; + + insert into public.transactions ("from", "to", amount, remarks) + values (v_supply, p_buyer_id, p_amount, 'purchase'); + + return ( + select to_jsonb(t) + from ( + select id, username, cc, rc, created_at, last_logged_at + from public.users + where id = p_buyer_id + ) t + ); +end; +$$; + +revoke all on function public.purchase_rc(bigint, bigint) from public; +grant execute on function public.purchase_rc(bigint, bigint) to service_role; diff --git a/schemas/table_transactions.md b/schemas/table_transactions.md new file mode 100644 index 0000000..781c330 --- /dev/null +++ b/schemas/table_transactions.md @@ -0,0 +1,13 @@ +create table public.transactions ( + id bigint generated by default as identity not null, + created_at timestamp with time zone not null default now(), + "from" bigint null, + "to" bigint null, + amount bigint not null default '4'::bigint, + remarks character varying null, + match_id bigint null, + constraint transactions_pkey primary key (id), + constraint transactions_from_fkey foreign KEY ("from") references users (id), + constraint transactions_match_id_fkey foreign KEY (match_id) references matches (id), + constraint transactions_to_fkey foreign KEY ("to") references users (id) +) TABLESPACE pg_default; \ No newline at end of file diff --git a/schemas/table_users.md b/schemas/table_users.md index 7bc6705..d1c1f3f 100644 --- a/schemas/table_users.md +++ b/schemas/table_users.md @@ -2,6 +2,7 @@ create table public.users ( id bigint generated by default as identity not null, created_at timestamp with time zone not null default now(), username text null, + email text null, password text null, cc real null default '0'::real, rc real null default '0'::real, diff --git a/types.ts b/types.ts index 0444b38..cae216b 100644 --- a/types.ts +++ b/types.ts @@ -49,7 +49,7 @@ export interface Room { match_id?: number; /** RC entry fee for this match (matches `public.matches.entry_fee`). */ entry_fee?: number; - /** Net RC prize pool for the winner after server fee (derived from `entry_fee`). */ + /** Net RC to the winner after per-entry bet fee (derived from `entry_fee` and settings `bet_fee`). */ rc_prize?: number; /** Only on GET / responses: authenticated user’s team (Players[0]=red, Players[1]=blue) */ your_team?: 'red' | 'blue' | null;