big test rc
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
+339
-45
@@ -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<string, unknown>): 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<string, unknown>);
|
||||
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<string, unknown>),
|
||||
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<string, unknown>) });
|
||||
};
|
||||
|
||||
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<string, unknown>);
|
||||
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<string, unknown>),
|
||||
});
|
||||
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<string, unknown>);
|
||||
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,
|
||||
});
|
||||
});
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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 <ae8b89cbcb38426988721626ff73e0d6>:0
|
||||
at NetPlayer.InvokeUserCode_CmdOnPointerDown__Vector2 (Mirror.NetworkBehaviour obj, Mirror.NetworkReader reader, Mirror.NetworkConnectionToClient senderConnection) [0x00022] in <ae8b89cbcb38426988721626ff73e0d6>: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].<WrapHandler>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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
@@ -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}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user