Compare commits
10
Commits
37934c3d84
..
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3d063af9ae | ||
|
|
b933f09187 | ||
|
|
b6ecf6ad7c | ||
|
|
b70233395f | ||
|
|
c7d89471ef | ||
|
|
04b3463b19 | ||
|
|
a09b33e158 | ||
|
|
b104d35a9d | ||
|
|
146510ddeb | ||
|
|
2432062db8 |
@@ -6,9 +6,30 @@ import { authenticateMatchmakingRequest, registerAuthRoutes } from './auth_bridg
|
|||||||
import {
|
import {
|
||||||
getPlayerLast10MatchRecord,
|
getPlayerLast10MatchRecord,
|
||||||
insertMatchForNewRoom,
|
insertMatchForNewRoom,
|
||||||
|
insertRematchMatch,
|
||||||
|
loadUsernamesForUserPair,
|
||||||
|
computeRcPrizeFromEntryFee,
|
||||||
|
getBetFeePercentFromSettings,
|
||||||
|
getDefaultMatchEntryFeeRc,
|
||||||
|
getSettingsTableDict,
|
||||||
|
MATCH_ENTRY_FEE_RC,
|
||||||
registerMatchRoutes,
|
registerMatchRoutes,
|
||||||
|
getAdminMmrLeaderboard,
|
||||||
updateMatchUserBlue,
|
updateMatchUserBlue,
|
||||||
|
type CreateRematchRoomFn,
|
||||||
|
type OnMatchSettledFn,
|
||||||
|
type OnBothPlayersConnectedFn,
|
||||||
|
type MatchRoomSuccessEnvelope,
|
||||||
} from './matches';
|
} from './matches';
|
||||||
|
import {
|
||||||
|
initServerLog,
|
||||||
|
logInfo,
|
||||||
|
logDebug,
|
||||||
|
logVerbose,
|
||||||
|
recordHistory,
|
||||||
|
readHistoryTail,
|
||||||
|
readLogTail,
|
||||||
|
} from './server_log';
|
||||||
|
|
||||||
const version = "v1.0";
|
const version = "v1.0";
|
||||||
console.log("Starting Cupid Matchmaker for unity " + version);
|
console.log("Starting Cupid Matchmaker for unity " + version);
|
||||||
@@ -29,6 +50,10 @@ app.use((req, res, next) => {
|
|||||||
|
|
||||||
const queueGraceTime = 2000;
|
const queueGraceTime = 2000;
|
||||||
|
|
||||||
|
function isPlayerExpired(player: Player): boolean {
|
||||||
|
return Date.now() - player.LastSeen > queueGraceTime;
|
||||||
|
}
|
||||||
|
|
||||||
// Read settings
|
// Read settings
|
||||||
const settings = ReadSettings();
|
const settings = ReadSettings();
|
||||||
if (settings == null) {
|
if (settings == null) {
|
||||||
@@ -40,6 +65,9 @@ if (settings == null) {
|
|||||||
const typedSettings = settings as Settings;
|
const typedSettings = settings as Settings;
|
||||||
const logLevel = typedSettings.log_level;
|
const logLevel = typedSettings.log_level;
|
||||||
|
|
||||||
|
initServerLog(typedSettings.log_directory?.trim() || 'logs');
|
||||||
|
recordHistory('Matchmaker started');
|
||||||
|
|
||||||
const configuredGame = typedSettings.games?.[0];
|
const configuredGame = typedSettings.games?.[0];
|
||||||
if (!configuredGame?.exe) {
|
if (!configuredGame?.exe) {
|
||||||
console.error("settings.json must include at least one game entry with exe");
|
console.error("settings.json must include at least one game entry with exe");
|
||||||
@@ -47,31 +75,223 @@ if (!configuredGame?.exe) {
|
|||||||
}
|
}
|
||||||
const gameName = configuredGame.name || "game";
|
const gameName = configuredGame.name || "game";
|
||||||
|
|
||||||
LogVerbose(typedSettings);
|
logVerbose(logLevel, typedSettings);
|
||||||
|
|
||||||
registerAuthRoutes(app, typedSettings);
|
registerAuthRoutes(app, typedSettings);
|
||||||
registerMatchRoutes(app, typedSettings);
|
|
||||||
|
|
||||||
let Rooms: Room[] = [];
|
let Rooms: Room[] = [];
|
||||||
let Queue: QueueEntry[] = [];
|
let Queue: QueueEntry[] = [];
|
||||||
|
const reopenInFlightPorts = new Set<number>();
|
||||||
|
|
||||||
app.get('/settings', (req: Request, res: Response) => {
|
/** One matchmaking mutation at a time — GET / awaited work used to overlap and both players created separate rooms. */
|
||||||
|
let matchmakerExclusive = Promise.resolve();
|
||||||
|
function runMatchmakerExclusive<T>(fn: () => Promise<T>): Promise<T> {
|
||||||
|
const run = matchmakerExclusive.then(() => fn());
|
||||||
|
matchmakerExclusive = run.then(
|
||||||
|
() => undefined,
|
||||||
|
() => undefined,
|
||||||
|
);
|
||||||
|
return run;
|
||||||
|
}
|
||||||
|
|
||||||
|
function removeUserFromQueue(userId: number): void {
|
||||||
|
for (let i = Queue.length - 1; i >= 0; i--) {
|
||||||
|
if (Queue[i].UserId === userId) Queue.splice(i, 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function removeRoomByMatchId(matchId: number): void {
|
||||||
|
const index = Rooms.findIndex((room) => room.match_id === matchId);
|
||||||
|
if (index < 0) return;
|
||||||
|
const room = Rooms[index]!;
|
||||||
|
const names = room.Players.map((p) => p.Name).join(', ');
|
||||||
|
Rooms.splice(index, 1);
|
||||||
|
logInfo('Room removed after match settled', { match_id: matchId, port: room.Port });
|
||||||
|
recordHistory(
|
||||||
|
`Room on port ${room.Port} removed (match ${matchId} settled) — had: ${names || 'nobody'}`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const onMatchSettled: OnMatchSettledFn = async (matchId) => {
|
||||||
|
await runMatchmakerExclusive(async () => {
|
||||||
|
removeRoomByMatchId(matchId);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
function markRoomBothConnected(matchId: number): void {
|
||||||
|
const room = Rooms.find((r) => r.match_id === matchId);
|
||||||
|
if (!room || room.both_connected) return;
|
||||||
|
room.both_connected = true;
|
||||||
|
logInfo('Both players connected to match', { match_id: matchId, port: room.Port });
|
||||||
|
recordHistory(`Both players connected on port ${room.Port} (match ${matchId})`);
|
||||||
|
}
|
||||||
|
|
||||||
|
const onBothPlayersConnected: OnBothPlayersConnectedFn = async (matchId) => {
|
||||||
|
await runMatchmakerExclusive(async () => {
|
||||||
|
markRoomBothConnected(matchId);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/** GET / JSON only: same order as match DB — first joined = red, second = blue. Always includes `entry_fee`. */
|
||||||
|
function roomResponseForViewer(room: Room, viewerUserId: number, betFeePercent: number): Room {
|
||||||
|
const idx = room.Players.findIndex((p) => p.UserId === viewerUserId);
|
||||||
|
const your_team: 'red' | 'blue' | null = idx === 0 ? 'red' : idx === 1 ? 'blue' : null;
|
||||||
|
const entry_fee = room.entry_fee ?? MATCH_ENTRY_FEE_RC;
|
||||||
|
const rc_prize = computeRcPrizeFromEntryFee(entry_fee, betFeePercent);
|
||||||
|
return { ...room, entry_fee, rc_prize, your_team };
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Same envelope as `POST /internal/rematch` success: both sides when seated, else `null` for open slot. */
|
||||||
|
function roomMatchSuccessEnvelope(room: Room, betFeePercent: number): MatchRoomSuccessEnvelope {
|
||||||
|
const entry_fee = room.entry_fee ?? MATCH_ENTRY_FEE_RC;
|
||||||
|
const rc_prize = computeRcPrizeFromEntryFee(entry_fee, betFeePercent);
|
||||||
|
const redId = room.Players[0]?.UserId;
|
||||||
|
const blueId = room.Players[1]?.UserId;
|
||||||
|
return {
|
||||||
|
ok: true,
|
||||||
|
entry_fee,
|
||||||
|
rc_prize,
|
||||||
|
for_red: redId != null ? roomResponseForViewer(room, redId, betFeePercent) : null,
|
||||||
|
for_blue: blueId != null ? roomResponseForViewer(room, blueId, betFeePercent) : null,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
const createRematchRoom: CreateRematchRoomFn = async ({ userRedId, userBlueId, entryFee }) => {
|
||||||
|
return runMatchmakerExclusive(async () => {
|
||||||
|
const betFeePercent = await getBetFeePercentFromSettings(typedSettings);
|
||||||
|
const names = await loadUsernamesForUserPair(typedSettings, userRedId, userBlueId);
|
||||||
|
if (!names) {
|
||||||
|
return { ok: false, status: 404, error: 'One or both players not found' };
|
||||||
|
}
|
||||||
|
|
||||||
|
for (const room of Rooms) {
|
||||||
|
room.Players = room.Players.filter((p) => p.UserId !== userRedId && p.UserId !== userBlueId);
|
||||||
|
}
|
||||||
|
for (let i = Rooms.length - 1; i >= 0; i--) {
|
||||||
|
if (Rooms[i]!.Players.length === 0) {
|
||||||
|
Rooms.splice(i, 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
removeUserFromQueue(userRedId);
|
||||||
|
removeUserFromQueue(userBlueId);
|
||||||
|
|
||||||
|
const matchId = await insertRematchMatch(typedSettings, userRedId, userBlueId, entryFee);
|
||||||
|
if (matchId == null) {
|
||||||
|
return { ok: false, status: 500, error: 'Failed to create match row' };
|
||||||
|
}
|
||||||
|
|
||||||
|
const newPort = GetRandomPort(typedSettings.port_range_min, typedSettings.port_range_max);
|
||||||
|
const [l10Red, l10Blue] = await Promise.all([
|
||||||
|
getPlayerLast10MatchRecord(typedSettings, userRedId),
|
||||||
|
getPlayerLast10MatchRecord(typedSettings, userBlueId),
|
||||||
|
]);
|
||||||
|
|
||||||
|
const redName = names.nameById.get(userRedId)!;
|
||||||
|
const blueName = names.nameById.get(userBlueId)!;
|
||||||
|
|
||||||
|
const newRoom: Room = {
|
||||||
|
Players: [
|
||||||
|
{ Name: redName, LastSeen: Date.now(), UserId: userRedId, ...l10Red },
|
||||||
|
{ Name: blueName, LastSeen: Date.now(), UserId: userBlueId, ...l10Blue },
|
||||||
|
],
|
||||||
|
GameName: gameName,
|
||||||
|
Port: newPort,
|
||||||
|
InitTime: Date.now(),
|
||||||
|
entry_fee: entryFee,
|
||||||
|
match_id: matchId,
|
||||||
|
instance_started: true,
|
||||||
|
};
|
||||||
|
Rooms.push(newRoom);
|
||||||
|
OpenGameInstance(configuredGame.exe, newRoom.Port, newRoom.match_id);
|
||||||
|
recordHistory(
|
||||||
|
`Rematch room port ${newPort} match ${matchId} — ${redName} vs ${blueName} (entry_fee ${entryFee})`
|
||||||
|
);
|
||||||
|
|
||||||
|
return roomMatchSuccessEnvelope(newRoom, betFeePercent);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
registerMatchRoutes(app, typedSettings, { createRematchRoom, onMatchSettled, onBothPlayersConnected });
|
||||||
|
|
||||||
|
app.get('/settings', async (req: Request, res: Response) => {
|
||||||
if (req.query.password !== typedSettings.password) {
|
if (req.query.password !== typedSettings.password) {
|
||||||
res.send("403 Unauthorized");
|
res.send("403 Unauthorized");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
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 = {
|
const m_settings = {
|
||||||
minimum_players: typedSettings.minimum_players,
|
minimum_players: typedSettings.minimum_players,
|
||||||
maximum_players: typedSettings.maximum_players,
|
maximum_players: typedSettings.maximum_players,
|
||||||
waiting_time: typedSettings.waiting_time,
|
waiting_time: typedSettings.waiting_time,
|
||||||
port_range_min: typedSettings.port_range_min,
|
port_range_min: typedSettings.port_range_min,
|
||||||
port_range_max: typedSettings.port_range_max,
|
port_range_max: typedSettings.port_range_max,
|
||||||
games: typedSettings.games
|
games: typedSettings.games,
|
||||||
|
entry_fee,
|
||||||
|
bet_fee,
|
||||||
|
rc_prize,
|
||||||
|
table_settings,
|
||||||
};
|
};
|
||||||
console.log(m_settings);
|
logInfo(m_settings);
|
||||||
res.send(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);
|
||||||
|
if (!Number.isFinite(n) || n < 1) return defaultLines;
|
||||||
|
return Math.min(n, cap);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Raw log file tail (same content rules as console: respects log_level for debug/verbose). */
|
||||||
|
app.get('/admin/logs', (req: Request, res: Response) => {
|
||||||
|
if (req.query.password !== typedSettings.password) {
|
||||||
|
res.status(403).send('403 Unauthorized');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const lines = parseAdminLinesParam(req.query.lines, 2000, 20000);
|
||||||
|
const text = readLogTail(lines, 4 * 1024 * 1024);
|
||||||
|
res.type('text/plain; charset=utf-8').send(text);
|
||||||
|
});
|
||||||
|
|
||||||
|
/** Brief action timeline (JSON). */
|
||||||
|
app.get('/admin/history', (req: Request, res: Response) => {
|
||||||
|
if (req.query.password !== typedSettings.password) {
|
||||||
|
res.status(403).send('403 Unauthorized');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const lines = parseAdminLinesParam(req.query.lines, 500, 5000);
|
||||||
|
const raw = readHistoryTail(lines, 512 * 1024);
|
||||||
|
const entries = raw.map((line) => {
|
||||||
|
const tab = line.indexOf('\t');
|
||||||
|
if (tab === -1) return { at: '', message: line };
|
||||||
|
return { at: line.slice(0, tab), message: line.slice(tab + 1) };
|
||||||
|
});
|
||||||
|
res.json({ ok: true, entries });
|
||||||
|
});
|
||||||
|
|
||||||
|
/** Hidden MMR leaderboard (not shown to players). */
|
||||||
|
app.get('/admin/mmr', async (req: Request, res: Response) => {
|
||||||
|
if (req.query.password !== typedSettings.password) {
|
||||||
|
res.status(403).send('403 Unauthorized');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const limit = parseAdminLinesParam(req.query.limit, 100, 500);
|
||||||
|
const result = await getAdminMmrLeaderboard(typedSettings, limit);
|
||||||
|
if (!result.ok) {
|
||||||
|
res.status(503).json({ ok: false, error: result.error });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
res.json({ ok: true, players: result.players });
|
||||||
|
});
|
||||||
|
|
||||||
app.get('/', async (req: Request, res: Response) => {
|
app.get('/', async (req: Request, res: Response) => {
|
||||||
const auth = await authenticateMatchmakingRequest(req, typedSettings);
|
const auth = await authenticateMatchmakingRequest(req, typedSettings);
|
||||||
if (!auth.ok) {
|
if (!auth.ok) {
|
||||||
@@ -81,6 +301,9 @@ app.get('/', async (req: Request, res: Response) => {
|
|||||||
const { userId, username } = auth.user;
|
const { userId, username } = auth.user;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
await runMatchmakerExclusive(async () => {
|
||||||
|
|
||||||
|
const betFeePercent = await getBetFeePercentFromSettings(typedSettings);
|
||||||
|
|
||||||
// Check query
|
// Check query
|
||||||
let joinedRoom: Room | null = null;
|
let joinedRoom: Room | null = null;
|
||||||
@@ -96,7 +319,8 @@ app.get('/', async (req: Request, res: Response) => {
|
|||||||
if (index > -1) {
|
if (index > -1) {
|
||||||
Queue.splice(index, 1);
|
Queue.splice(index, 1);
|
||||||
}
|
}
|
||||||
Log(`Player ${element.Name} is afk, removing.`);
|
logInfo(`Player ${element.Name} is afk, removing.`);
|
||||||
|
recordHistory(`${element.Name} removed from queue (AFK)`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@@ -108,8 +332,12 @@ app.get('/', async (req: Request, res: Response) => {
|
|||||||
let roomValid = true;
|
let roomValid = true;
|
||||||
if (Date.now() - element.InitTime > typedSettings.waiting_time) {
|
if (Date.now() - element.InitTime > typedSettings.waiting_time) {
|
||||||
// This room is expired
|
// This room is expired
|
||||||
LogDebug("This room is expired, Removing now");
|
logDebug(logLevel, 'This room is expired, Removing now');
|
||||||
LogDebug(element);
|
logDebug(logLevel, element);
|
||||||
|
const expiredNames = element.Players.map((p) => p.Name).join(', ');
|
||||||
|
recordHistory(
|
||||||
|
`Room expired (port ${element.Port}, match id ${element.match_id ?? '—'}) — removed; had: ${expiredNames || 'nobody'}`
|
||||||
|
);
|
||||||
const index = Rooms.indexOf(element);
|
const index = Rooms.indexOf(element);
|
||||||
if (index > -1) {
|
if (index > -1) {
|
||||||
Rooms.splice(index, 1);
|
Rooms.splice(index, 1);
|
||||||
@@ -117,77 +345,139 @@ app.get('/', async (req: Request, res: Response) => {
|
|||||||
roomValid = false;
|
roomValid = false;
|
||||||
}
|
}
|
||||||
if (roomValid) {
|
if (roomValid) {
|
||||||
element.Players.forEach(player => {
|
// In-game players stop GET / heartbeats; do not expire them or reopen the slot.
|
||||||
|
if (!element.instance_started) {
|
||||||
|
element.Players = element.Players.filter((player) => {
|
||||||
|
const expired = isPlayerExpired(player);
|
||||||
|
if (expired) {
|
||||||
|
logInfo(`Player ${player.Name} expired in room ${element.Port}, removing.`);
|
||||||
|
recordHistory(`${player.Name} timed out in room on port ${element.Port} (removed)`);
|
||||||
|
}
|
||||||
|
return !expired;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (element.both_connected) {
|
||||||
|
const seated = element.Players.find((player) => player.UserId === userId);
|
||||||
|
if (seated) {
|
||||||
|
element.Players = element.Players.filter((player) => player.UserId !== userId);
|
||||||
|
logInfo(`${username} left connected match to matchmake again`, {
|
||||||
|
port: element.Port,
|
||||||
|
match_id: element.match_id ?? null,
|
||||||
|
});
|
||||||
|
recordHistory(
|
||||||
|
`${username} left connected match on port ${element.Port} (match id ${element.match_id ?? '—'}) — matchmaking again`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
element.Players.forEach((player) => {
|
||||||
if (player.UserId === userId) {
|
if (player.UserId === userId) {
|
||||||
|
player.LastSeen = Date.now();
|
||||||
joinedRoom = element;
|
joinedRoom = element;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
}
|
||||||
if (element.Players.length === 0) {
|
if (element.Players.length === 0) {
|
||||||
// This room is empty, remove it
|
// This room is empty, remove it
|
||||||
|
|
||||||
const index = Rooms.indexOf(element);
|
const index = Rooms.indexOf(element);
|
||||||
if (index > -1) {
|
if (index > -1) {
|
||||||
Rooms.splice(index, 1);
|
Rooms.splice(index, 1);
|
||||||
|
recordHistory(`Room on port ${element.Port} removed (empty)`);
|
||||||
}
|
}
|
||||||
} else if (element.Players.length < typedSettings.maximum_players && element.GameName === gameName) {
|
} else if (
|
||||||
|
!element.instance_started &&
|
||||||
|
element.Players.length < typedSettings.maximum_players &&
|
||||||
|
element.GameName === gameName
|
||||||
|
) {
|
||||||
possibleRoom = element;
|
possibleRoom = element;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
if (joinedRoom !== null) { // Already in a room. Stopping here
|
if (joinedRoom !== null) { // Already in a room. Stopping here
|
||||||
res.send(roomResponseForViewer(joinedRoom, userId));
|
removeUserFromQueue(userId);
|
||||||
|
res.json(roomMatchSuccessEnvelope(joinedRoom, betFeePercent));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Neither in a room nor in queue, Let's see
|
// Neither in a room nor in queue, Let's see
|
||||||
if (possibleRoom === null) {
|
if (possibleRoom === null) {
|
||||||
if (Queue.length >= typedSettings.minimum_players) {
|
if (Queue.length >= typedSettings.minimum_players) {
|
||||||
|
const insertResult = await insertMatchForNewRoom(typedSettings, userId);
|
||||||
const newPort = GetRandomPort(typedSettings.port_range_min, typedSettings.port_range_max);
|
const newPort = GetRandomPort(typedSettings.port_range_min, typedSettings.port_range_max);
|
||||||
const l10 = await getPlayerLast10MatchRecord(typedSettings, userId);
|
const l10 = await getPlayerLast10MatchRecord(typedSettings, userId);
|
||||||
const newRoom: Room = {
|
const newRoom: Room = {
|
||||||
Players: [{ Name: username, LastSeen: Date.now(), UserId: userId, ...l10 }],
|
Players: [{ Name: username, LastSeen: Date.now(), UserId: userId, ...l10 }],
|
||||||
GameName: gameName,
|
GameName: gameName,
|
||||||
Port: newPort,
|
Port: newPort,
|
||||||
InitTime: Date.now()
|
InitTime: Date.now(),
|
||||||
|
entry_fee: insertResult.entry_fee,
|
||||||
};
|
};
|
||||||
const matchId = await insertMatchForNewRoom(typedSettings, userId);
|
if (insertResult.matchId != null) {
|
||||||
if (matchId != null) {
|
newRoom.match_id = insertResult.matchId;
|
||||||
newRoom.match_id = matchId;
|
|
||||||
}
|
}
|
||||||
Rooms.push(newRoom);
|
Rooms.push(newRoom);
|
||||||
OpenGameInstance(configuredGame.exe, newPort, matchId ?? undefined);
|
removeUserFromQueue(userId);
|
||||||
res.send(roomResponseForViewer(newRoom, userId));
|
logInfo(`${username} seated in room`, {
|
||||||
|
port: newPort,
|
||||||
|
match_id: newRoom.match_id ?? null,
|
||||||
|
instance_started: Boolean(newRoom.instance_started),
|
||||||
|
});
|
||||||
|
recordHistory(
|
||||||
|
`${username} created a room on port ${newPort} (match id ${newRoom.match_id ?? '—'}) — waiting for opponent`
|
||||||
|
);
|
||||||
|
res.json(roomMatchSuccessEnvelope(newRoom, betFeePercent));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// We know possibleRoom is a Room type here since we checked it's not null
|
|
||||||
const room: Room = possibleRoom;
|
const room: Room = possibleRoom;
|
||||||
|
const alreadySeated = room.Players.some((p) => p.UserId === userId);
|
||||||
|
const hasFreeSlot = room.Players.length < typedSettings.maximum_players;
|
||||||
|
if (!room.instance_started && hasFreeSlot && !alreadySeated) {
|
||||||
const l10 = await getPlayerLast10MatchRecord(typedSettings, userId);
|
const l10 = await getPlayerLast10MatchRecord(typedSettings, userId);
|
||||||
room.Players.push({ Name: username, LastSeen: Date.now(), UserId: userId, ...l10 });
|
room.Players.push({ Name: username, LastSeen: Date.now(), UserId: userId, ...l10 });
|
||||||
|
removeUserFromQueue(userId);
|
||||||
if (room.match_id != null) {
|
if (room.match_id != null) {
|
||||||
await updateMatchUserBlue(typedSettings, room.match_id, userId);
|
await updateMatchUserBlue(typedSettings, room.match_id, userId);
|
||||||
}
|
}
|
||||||
res.send(roomResponseForViewer(room, userId));
|
const hasTwoActivePlayers =
|
||||||
|
room.Players.length === 2 && room.Players.every((player) => !isPlayerExpired(player));
|
||||||
|
if (hasTwoActivePlayers && !room.instance_started) {
|
||||||
|
room.instance_started = true;
|
||||||
|
OpenGameInstance(configuredGame.exe, room.Port, room.match_id ?? undefined);
|
||||||
|
const [p0, p1] = room.Players;
|
||||||
|
recordHistory(
|
||||||
|
`new room created with port ${room.Port} and matchId ${room.match_id ?? '—'} for ${p0.Name} and ${p1.Name}`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
logInfo(`${username} seated in room`, {
|
||||||
|
port: room.Port,
|
||||||
|
match_id: room.match_id ?? null,
|
||||||
|
instance_started: Boolean(room.instance_started),
|
||||||
|
});
|
||||||
|
res.json(roomMatchSuccessEnvelope(room, betFeePercent));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Not even got a new room. Back to queue
|
// Not even got a new room. Back to queue
|
||||||
if (!alreadyOnQueue) {
|
if (!alreadyOnQueue) {
|
||||||
const newQueueEntry: QueueEntry = { Name: username, LastSeen: Date.now(), UserId: userId };
|
const newQueueEntry: QueueEntry = { Name: username, LastSeen: Date.now(), UserId: userId };
|
||||||
LogVerbose(newQueueEntry);
|
logVerbose(logLevel, newQueueEntry);
|
||||||
Queue.push(newQueueEntry);
|
Queue.push(newQueueEntry);
|
||||||
|
recordHistory(`${username} started queuing`);
|
||||||
}
|
}
|
||||||
LogVerbose("Rooms");
|
logVerbose(logLevel, 'Rooms');
|
||||||
Rooms.forEach(element => {
|
Rooms.forEach(element => {
|
||||||
LogVerbose(element);
|
logVerbose(logLevel, element);
|
||||||
});
|
});
|
||||||
LogVerbose("Queue");
|
logVerbose(logLevel, 'Queue');
|
||||||
LogVerbose(Queue);
|
logVerbose(logLevel, Queue);
|
||||||
res.send("0");
|
res.send("0");
|
||||||
|
});
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error("Matchmaking error:", err);
|
console.error("Matchmaking error:", err);
|
||||||
res.status(500).send("Internal error");
|
if (!res.headersSent) res.status(500).send("Internal error");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -198,12 +488,23 @@ app.get('/cancel', async (req: Request, res: Response) => {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const { userId } = auth.user;
|
const { userId } = auth.user;
|
||||||
|
|
||||||
|
await runMatchmakerExclusive(async () => {
|
||||||
|
const isInWaitingRoom = Rooms.some(
|
||||||
|
(room) => !room.instance_started && room.Players.some((player) => player.UserId === userId)
|
||||||
|
);
|
||||||
|
if (isInWaitingRoom) {
|
||||||
|
res.status(409).send("Can't cancel while already in a room");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
let foundUser = false;
|
let foundUser = false;
|
||||||
Queue.forEach((element) => {
|
Queue.forEach((element) => {
|
||||||
if (element.UserId === userId) {
|
if (element.UserId === userId) {
|
||||||
const index = Queue.indexOf(element);
|
const index = Queue.indexOf(element);
|
||||||
if (index > -1) {
|
if (index > -1) {
|
||||||
Queue.splice(index, 1);
|
Queue.splice(index, 1);
|
||||||
|
recordHistory(`${element.Name} cancelled queuing`);
|
||||||
}
|
}
|
||||||
res.send("1");
|
res.send("1");
|
||||||
foundUser = true;
|
foundUser = true;
|
||||||
@@ -214,29 +515,66 @@ app.get('/cancel', async (req: Request, res: Response) => {
|
|||||||
res.send("Couldn't find user in the queue");
|
res.send("Couldn't find user in the queue");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
});
|
||||||
|
|
||||||
/** GET / JSON only: same order as match DB — first joined = red, second = blue. */
|
app.get('/reopen', async (req: Request, res: Response) => {
|
||||||
function roomResponseForViewer(room: Room, viewerUserId: number): Room {
|
if (req.query.password !== typedSettings.password) {
|
||||||
const idx = room.Players.findIndex((p) => p.UserId === viewerUserId);
|
res.status(403).send("403 Unauthorized");
|
||||||
const your_team: 'red' | 'blue' | null = idx === 0 ? 'red' : idx === 1 ? 'blue' : null;
|
return;
|
||||||
return { ...room, your_team };
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function Log(msg: any): void {
|
const rawPort = req.query.port;
|
||||||
console.log(msg);
|
const port = typeof rawPort === 'string' ? parseInt(rawPort, 10) : NaN;
|
||||||
|
if (!Number.isInteger(port)) {
|
||||||
|
res.status(400).json({ ok: false, error: "Invalid port" });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (port < typedSettings.port_range_min || port > typedSettings.port_range_max) {
|
||||||
|
res.status(400).json({ ok: false, error: "Port out of configured range" });
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
function LogDebug(msg: any): void {
|
if (reopenInFlightPorts.has(port)) {
|
||||||
if (logLevel > 0) {
|
res.status(409).json({ ok: false, error: "Reopen already in progress for this port" });
|
||||||
console.log(msg);
|
return;
|
||||||
}
|
}
|
||||||
|
reopenInFlightPorts.add(port);
|
||||||
|
|
||||||
|
try {
|
||||||
|
await runMatchmakerExclusive(async () => {
|
||||||
|
const hasRunningInstance = Rooms.some((room) => room.Port === port && room.instance_started);
|
||||||
|
if (hasRunningInstance) {
|
||||||
|
res.status(409).json({ ok: false, error: "A game is already running on this port" });
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
function LogVerbose(msg: any): void {
|
const insertResult = await insertMatchForNewRoom(typedSettings);
|
||||||
if (logLevel > 1) {
|
const newRoom: Room = {
|
||||||
console.log(msg);
|
Players: [],
|
||||||
|
GameName: gameName,
|
||||||
|
Port: port,
|
||||||
|
InitTime: Date.now(),
|
||||||
|
entry_fee: insertResult.entry_fee,
|
||||||
|
instance_started: true,
|
||||||
|
};
|
||||||
|
if (insertResult.matchId != null) {
|
||||||
|
newRoom.match_id = insertResult.matchId;
|
||||||
}
|
}
|
||||||
|
Rooms.push(newRoom);
|
||||||
|
|
||||||
|
OpenGameInstance(configuredGame.exe, newRoom.Port, newRoom.match_id ?? undefined);
|
||||||
|
recordHistory(
|
||||||
|
`Admin reopened game on port ${newRoom.Port} (match id ${newRoom.match_id ?? '—'})`
|
||||||
|
);
|
||||||
|
res.json({ ok: true, port: newRoom.Port, match_id: newRoom.match_id ?? null });
|
||||||
|
});
|
||||||
|
} catch (err) {
|
||||||
|
console.error("Reopen error:", err);
|
||||||
|
res.status(500).json({ ok: false, error: "Internal error" });
|
||||||
|
} finally {
|
||||||
|
reopenInFlightPorts.delete(port);
|
||||||
}
|
}
|
||||||
|
});
|
||||||
|
|
||||||
app.use((err: unknown, _req: Request, res: Response, next: express.NextFunction) => {
|
app.use((err: unknown, _req: Request, res: Response, next: express.NextFunction) => {
|
||||||
const e = err as { status?: number; type?: string };
|
const e = err as { status?: number; type?: string };
|
||||||
@@ -244,7 +582,7 @@ app.use((err: unknown, _req: Request, res: Response, next: express.NextFunction)
|
|||||||
res.status(400).json({
|
res.status(400).json({
|
||||||
ok: false,
|
ok: false,
|
||||||
error:
|
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;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
+555
-101
@@ -3,11 +3,16 @@ import { createClient, SupabaseClient } from '@supabase/supabase-js';
|
|||||||
import * as bcrypt from 'bcrypt';
|
import * as bcrypt from 'bcrypt';
|
||||||
import * as crypto from 'crypto';
|
import * as crypto from 'crypto';
|
||||||
import { Settings } from './types';
|
import { Settings } from './types';
|
||||||
|
import { logDebug, logInfo } from './server_log';
|
||||||
|
|
||||||
const BCRYPT_ROUNDS = 10;
|
const BCRYPT_ROUNDS = 10;
|
||||||
const TOKEN_TTL_SEC = 60 * 60 * 24 * 7; // 7 days
|
const TOKEN_TTL_SEC = 60 * 60 * 24 * 7; // 7 days
|
||||||
|
/** Unity should POST /auth/keepalive every 10s. Session stays active for 3 missed pings. */
|
||||||
|
const SESSION_ACTIVE_MS = 30_000;
|
||||||
const USERNAME_MIN = 2;
|
const USERNAME_MIN = 2;
|
||||||
const PASSWORD_MIN = 6;
|
const PASSWORD_MIN = 6;
|
||||||
|
const EMAIL_MAX = 254;
|
||||||
|
const SYSTEM_ACCOUNT_ID = 1;
|
||||||
|
|
||||||
/** 1 USD = 4 RC (IAP packs) */
|
/** 1 USD = 4 RC (IAP packs) */
|
||||||
export const RC_PER_USD = 4;
|
export const RC_PER_USD = 4;
|
||||||
@@ -26,6 +31,7 @@ function isIapDummyMode(settings: Settings): boolean {
|
|||||||
export interface AuthUserPublic {
|
export interface AuthUserPublic {
|
||||||
id: string;
|
id: string;
|
||||||
username: string;
|
username: string;
|
||||||
|
email: string | null;
|
||||||
cc: number;
|
cc: number;
|
||||||
rc: number;
|
rc: number;
|
||||||
created_at: string;
|
created_at: string;
|
||||||
@@ -51,15 +57,15 @@ export function createSupabase(settings: Settings): SupabaseClient {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function signToken(userId: string, secret: string): string {
|
function signToken(userId: string, sessionId: string, secret: string): string {
|
||||||
const exp = Math.floor(Date.now() / 1000) + TOKEN_TTL_SEC;
|
const exp = Math.floor(Date.now() / 1000) + TOKEN_TTL_SEC;
|
||||||
const payload = JSON.stringify({ sub: userId, exp });
|
const payload = JSON.stringify({ sub: userId, exp, jti: sessionId });
|
||||||
const bodyB64 = Buffer.from(payload, 'utf8').toString('base64url');
|
const bodyB64 = Buffer.from(payload, 'utf8').toString('base64url');
|
||||||
const sig = crypto.createHmac('sha256', secret).update(bodyB64).digest('base64url');
|
const sig = crypto.createHmac('sha256', secret).update(bodyB64).digest('base64url');
|
||||||
return `${bodyB64}.${sig}`;
|
return `${bodyB64}.${sig}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function verifyAuthToken(token: string, secret: string): { userId: string } | null {
|
export function verifyAuthToken(token: string, secret: string): { userId: string; sessionId: string } | null {
|
||||||
const parts = token.split('.');
|
const parts = token.split('.');
|
||||||
if (parts.length !== 2) return null;
|
if (parts.length !== 2) return null;
|
||||||
const [bodyB64, sig] = parts;
|
const [bodyB64, sig] = parts;
|
||||||
@@ -71,15 +77,74 @@ export function verifyAuthToken(token: string, secret: string): { userId: string
|
|||||||
const payload = JSON.parse(Buffer.from(bodyB64, 'base64url').toString('utf8')) as {
|
const payload = JSON.parse(Buffer.from(bodyB64, 'base64url').toString('utf8')) as {
|
||||||
sub?: string;
|
sub?: string;
|
||||||
exp?: number;
|
exp?: number;
|
||||||
|
jti?: string;
|
||||||
};
|
};
|
||||||
if (!payload.sub || typeof payload.exp !== 'number') return null;
|
if (!payload.sub || typeof payload.exp !== 'number') return null;
|
||||||
|
if (typeof payload.jti !== 'string' || payload.jti.length < 1) return null;
|
||||||
if (payload.exp < Math.floor(Date.now() / 1000)) return null;
|
if (payload.exp < Math.floor(Date.now() / 1000)) return null;
|
||||||
return { userId: payload.sub };
|
return { userId: payload.sub, sessionId: payload.jti };
|
||||||
} catch {
|
} catch {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function isSessionActive(lastKeepaliveAt: unknown): boolean {
|
||||||
|
if (lastKeepaliveAt == null || lastKeepaliveAt === '') return false;
|
||||||
|
const ms = Date.parse(String(lastKeepaliveAt));
|
||||||
|
if (!Number.isFinite(ms)) return false;
|
||||||
|
return Date.now() - ms < SESSION_ACTIVE_MS;
|
||||||
|
}
|
||||||
|
|
||||||
|
type AuthSessionOk = {
|
||||||
|
ok: true;
|
||||||
|
supabase: SupabaseClient;
|
||||||
|
userId: string;
|
||||||
|
sessionId: string;
|
||||||
|
row: Record<string, unknown>;
|
||||||
|
};
|
||||||
|
|
||||||
|
type AuthSessionFail = { ok: false; status: number; error: string };
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Verifies Bearer token, loads the user, and requires users.session_id === token jti.
|
||||||
|
*/
|
||||||
|
async function authenticateSession(
|
||||||
|
req: Request,
|
||||||
|
settings: Settings
|
||||||
|
): Promise<AuthSessionOk | AuthSessionFail> {
|
||||||
|
if (!authConfigured(settings)) {
|
||||||
|
return { ok: false, status: 503, error: 'Auth is not configured on the server' };
|
||||||
|
}
|
||||||
|
const token = readBearer(req);
|
||||||
|
if (!token) {
|
||||||
|
return { ok: false, status: 401, error: 'Missing Authorization: Bearer <token>' };
|
||||||
|
}
|
||||||
|
const v = verifyAuthToken(token, settings.auth_jwt_secret!.trim());
|
||||||
|
if (!v) {
|
||||||
|
return { ok: false, status: 401, error: 'Invalid or expired token' };
|
||||||
|
}
|
||||||
|
const supabase = createSupabase(settings);
|
||||||
|
const { data, error } = await supabase
|
||||||
|
.from('users')
|
||||||
|
.select('id, session_id, username, email, cc, rc, created_at, last_logged_at')
|
||||||
|
.eq('id', v.userId)
|
||||||
|
.maybeSingle();
|
||||||
|
if (error || !data) {
|
||||||
|
return { ok: false, status: 404, error: 'User not found' };
|
||||||
|
}
|
||||||
|
const stored = typeof data.session_id === 'string' ? data.session_id : '';
|
||||||
|
if (!stored || stored !== v.sessionId) {
|
||||||
|
return { ok: false, status: 401, error: 'Invalid or expired token' };
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
ok: true,
|
||||||
|
supabase,
|
||||||
|
userId: v.userId,
|
||||||
|
sessionId: v.sessionId,
|
||||||
|
row: data as Record<string, unknown>,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
function readBearer(req: Request): string | null {
|
function readBearer(req: Request): string | null {
|
||||||
const h = req.headers.authorization;
|
const h = req.headers.authorization;
|
||||||
if (!h || typeof h !== 'string') return null;
|
if (!h || typeof h !== 'string') return null;
|
||||||
@@ -87,6 +152,23 @@ function readBearer(req: Request): string | null {
|
|||||||
return m ? m[1]!.trim() : null;
|
return m ? m[1]!.trim() : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function readClientIp(req: Request): string | null {
|
||||||
|
const forwarded = req.headers['x-forwarded-for'];
|
||||||
|
const headerValue = Array.isArray(forwarded) ? forwarded[0] : forwarded;
|
||||||
|
if (typeof headerValue === 'string') {
|
||||||
|
const first = headerValue
|
||||||
|
.split(',')
|
||||||
|
.map((part) => part.trim())
|
||||||
|
.find((part) => part.length > 0);
|
||||||
|
if (first) return first;
|
||||||
|
}
|
||||||
|
if (typeof req.ip === 'string' && req.ip.trim().length > 0) return req.ip.trim();
|
||||||
|
if (typeof req.socket?.remoteAddress === 'string' && req.socket.remoteAddress.trim().length > 0) {
|
||||||
|
return req.socket.remoteAddress.trim();
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
function coerceDbUserId(id: unknown): number | null {
|
function coerceDbUserId(id: unknown): number | null {
|
||||||
if (id == null) return null;
|
if (id == null) return null;
|
||||||
if (typeof id === 'bigint') return Number(id);
|
if (typeof id === 'bigint') return Number(id);
|
||||||
@@ -98,6 +180,50 @@ function coerceDbUserId(id: unknown): number | null {
|
|||||||
return 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 {
|
export interface MatchmakingUser {
|
||||||
userId: number;
|
userId: number;
|
||||||
username: string;
|
username: string;
|
||||||
@@ -111,31 +237,19 @@ export async function authenticateMatchmakingRequest(
|
|||||||
req: Request,
|
req: Request,
|
||||||
settings: Settings
|
settings: Settings
|
||||||
): Promise<{ ok: true; user: MatchmakingUser } | { ok: false; status: number; message: string }> {
|
): Promise<{ ok: true; user: MatchmakingUser } | { ok: false; status: number; message: string }> {
|
||||||
if (!authConfigured(settings)) {
|
const auth = await authenticateSession(req, settings);
|
||||||
return { ok: false, status: 503, message: 'Auth not configured' };
|
if (!auth.ok) {
|
||||||
|
const message = auth.status === 503 ? 'Auth not configured' : auth.error;
|
||||||
|
return { ok: false, status: auth.status, message };
|
||||||
}
|
}
|
||||||
const token = readBearer(req);
|
if (typeof auth.row.username !== 'string' || auth.row.username.length < 2) {
|
||||||
if (!token) {
|
|
||||||
return { ok: false, status: 401, message: 'Missing Authorization: Bearer <token>' };
|
|
||||||
}
|
|
||||||
const v = verifyAuthToken(token, settings.auth_jwt_secret!.trim());
|
|
||||||
if (!v) {
|
|
||||||
return { ok: false, status: 401, message: 'Invalid or expired token' };
|
|
||||||
}
|
|
||||||
const supabase = createSupabase(settings);
|
|
||||||
const { data, error } = await supabase
|
|
||||||
.from('users')
|
|
||||||
.select('id, username')
|
|
||||||
.eq('id', v.userId)
|
|
||||||
.maybeSingle();
|
|
||||||
if (error || !data || typeof data.username !== 'string' || data.username.length < 2) {
|
|
||||||
return { ok: false, status: 404, message: 'User not found' };
|
return { ok: false, status: 404, message: 'User not found' };
|
||||||
}
|
}
|
||||||
const userId = coerceDbUserId(data.id);
|
const userId = coerceDbUserId(auth.row.id);
|
||||||
if (userId == null) {
|
if (userId == null) {
|
||||||
return { ok: false, status: 500, message: 'Invalid user id' };
|
return { ok: false, status: 500, message: 'Invalid user id' };
|
||||||
}
|
}
|
||||||
return { ok: true, user: { userId, username: data.username } };
|
return { ok: true, user: { userId, username: auth.row.username } };
|
||||||
}
|
}
|
||||||
|
|
||||||
export function registerAuthRoutes(app: Express, settings: Settings): void {
|
export function registerAuthRoutes(app: Express, settings: Settings): void {
|
||||||
@@ -146,48 +260,73 @@ export function registerAuthRoutes(app: Express, settings: Settings): void {
|
|||||||
}
|
}
|
||||||
const username = typeof req.body?.username === 'string' ? req.body.username.trim() : '';
|
const username = typeof req.body?.username === 'string' ? req.body.username.trim() : '';
|
||||||
const password = typeof req.body?.password === 'string' ? req.body.password : '';
|
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) {
|
if (username.length < USERNAME_MIN) {
|
||||||
res.status(400).json({ ok: false, error: `Username must be at least ${USERNAME_MIN} characters` });
|
res.status(400).json({ ok: false, error: `Username must be at least ${USERNAME_MIN} characters` });
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (!isValidEmail(email)) {
|
||||||
|
res.status(400).json({ ok: false, error: 'A valid email address is required' });
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (password.length < PASSWORD_MIN) {
|
if (password.length < PASSWORD_MIN) {
|
||||||
res.status(400).json({ ok: false, error: `Password must be at least ${PASSWORD_MIN} characters` });
|
res.status(400).json({ ok: false, error: `Password must be at least ${PASSWORD_MIN} characters` });
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const supabase = createSupabase(settings);
|
const supabase = createSupabase(settings);
|
||||||
const { data: existing } = await supabase.from('users').select('id').eq('username', username).maybeSingle();
|
const [{ data: existingUser }, { data: existingEmail }] = await Promise.all([
|
||||||
if (existing) {
|
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' });
|
res.status(409).json({ ok: false, error: 'Username already taken' });
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (existingEmail) {
|
||||||
|
res.status(409).json({ ok: false, error: 'Email already registered' });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const hash = await bcrypt.hash(password, BCRYPT_ROUNDS);
|
const hash = await bcrypt.hash(password, BCRYPT_ROUNDS);
|
||||||
|
const clientIp = readClientIp(req);
|
||||||
|
const sessionId = crypto.randomUUID();
|
||||||
|
const nowIso = new Date().toISOString();
|
||||||
const { data: row, error } = await supabase
|
const { data: row, error } = await supabase
|
||||||
.from('users')
|
.from('users')
|
||||||
.insert({
|
.insert({
|
||||||
username,
|
username,
|
||||||
|
email,
|
||||||
password: hash,
|
password: hash,
|
||||||
cc: 0,
|
cc: 0,
|
||||||
rc: 0,
|
rc: 0,
|
||||||
|
ip_address: clientIp,
|
||||||
|
session_id: sessionId,
|
||||||
|
last_keepalive_at: nowIso,
|
||||||
|
last_logged_at: nowIso,
|
||||||
})
|
})
|
||||||
.select('id, username, cc, rc, created_at, last_logged_at')
|
.select('id, username, email, cc, rc, created_at, last_logged_at')
|
||||||
.single();
|
.single();
|
||||||
|
|
||||||
if (error || !row) {
|
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' });
|
res.status(500).json({ ok: false, error: error?.message ?? 'Registration failed' });
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const user: AuthUserPublic = {
|
const user = rowToAuthUserPublic(row as Record<string, unknown>);
|
||||||
id: row.id,
|
const token = signToken(user.id, sessionId, settings.auth_jwt_secret!.trim());
|
||||||
username: row.username,
|
|
||||||
cc: row.cc,
|
|
||||||
rc: row.rc,
|
|
||||||
created_at: row.created_at,
|
|
||||||
last_logged_at: row.last_logged_at ?? null,
|
|
||||||
};
|
|
||||||
const token = signToken(user.id, settings.auth_jwt_secret!.trim());
|
|
||||||
res.status(201).json({ ok: true, token, user });
|
res.status(201).json({ ok: true, token, user });
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -206,7 +345,7 @@ export function registerAuthRoutes(app: Express, settings: Settings): void {
|
|||||||
const supabase = createSupabase(settings);
|
const supabase = createSupabase(settings);
|
||||||
const { data: row, error } = await supabase
|
const { data: row, error } = await supabase
|
||||||
.from('users')
|
.from('users')
|
||||||
.select('id, username, password, cc, rc, created_at')
|
.select('id, username, email, password, cc, rc, created_at, session_id, last_keepalive_at')
|
||||||
.eq('username', username)
|
.eq('username', username)
|
||||||
.maybeSingle();
|
.maybeSingle();
|
||||||
|
|
||||||
@@ -221,56 +360,82 @@ export function registerAuthRoutes(app: Express, settings: Settings): void {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const existingSession = typeof row.session_id === 'string' ? row.session_id : '';
|
||||||
|
if (existingSession && isSessionActive(row.last_keepalive_at)) {
|
||||||
|
res.status(409).json({
|
||||||
|
ok: false,
|
||||||
|
error: 'Already logged in on another device',
|
||||||
|
code: 'already_logged_in',
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const sessionId = crypto.randomUUID();
|
||||||
const nowIso = new Date().toISOString();
|
const nowIso = new Date().toISOString();
|
||||||
await supabase.from('users').update({ last_logged_at: nowIso }).eq('id', row.id);
|
const clientIp = readClientIp(req);
|
||||||
|
await supabase
|
||||||
|
.from('users')
|
||||||
|
.update({
|
||||||
|
last_logged_at: nowIso,
|
||||||
|
ip_address: clientIp,
|
||||||
|
session_id: sessionId,
|
||||||
|
last_keepalive_at: nowIso,
|
||||||
|
})
|
||||||
|
.eq('id', row.id);
|
||||||
|
|
||||||
const user: AuthUserPublic = {
|
const user: AuthUserPublic = {
|
||||||
id: row.id,
|
...rowToAuthUserPublic(row as Record<string, unknown>),
|
||||||
username: row.username,
|
|
||||||
cc: row.cc,
|
|
||||||
rc: row.rc,
|
|
||||||
created_at: row.created_at,
|
|
||||||
last_logged_at: nowIso,
|
last_logged_at: nowIso,
|
||||||
};
|
};
|
||||||
const token = signToken(user.id, settings.auth_jwt_secret!.trim());
|
const token = signToken(user.id, sessionId, settings.auth_jwt_secret!.trim());
|
||||||
res.json({ ok: true, token, user });
|
res.json({ ok: true, token, user });
|
||||||
});
|
});
|
||||||
|
|
||||||
|
app.post('/auth/keepalive', async (req: Request, res: Response) => {
|
||||||
|
const auth = await authenticateSession(req, settings);
|
||||||
|
if (!auth.ok) {
|
||||||
|
res.status(auth.status).json({ ok: false, error: auth.error });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const nowIso = new Date().toISOString();
|
||||||
|
const { error } = await auth.supabase
|
||||||
|
.from('users')
|
||||||
|
.update({ last_keepalive_at: nowIso })
|
||||||
|
.eq('id', auth.userId)
|
||||||
|
.eq('session_id', auth.sessionId);
|
||||||
|
if (error) {
|
||||||
|
res.status(500).json({ ok: false, error: error.message ?? 'Keepalive failed' });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
res.json({ ok: true });
|
||||||
|
});
|
||||||
|
|
||||||
|
app.post('/auth/logout', async (req: Request, res: Response) => {
|
||||||
|
const auth = await authenticateSession(req, settings);
|
||||||
|
if (!auth.ok) {
|
||||||
|
res.status(auth.status).json({ ok: false, error: auth.error });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const { error } = await auth.supabase
|
||||||
|
.from('users')
|
||||||
|
.update({ session_id: null, last_keepalive_at: null })
|
||||||
|
.eq('id', auth.userId)
|
||||||
|
.eq('session_id', auth.sessionId);
|
||||||
|
if (error) {
|
||||||
|
res.status(500).json({ ok: false, error: error.message ?? 'Logout failed' });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
res.json({ ok: true });
|
||||||
|
});
|
||||||
|
|
||||||
/** Current user from DB (requires login token). Same behavior as GET /auth/user. */
|
/** Current user from DB (requires login token). Same behavior as GET /auth/user. */
|
||||||
const handleGetCurrentUser = async (req: Request, res: Response) => {
|
const handleGetCurrentUser = async (req: Request, res: Response) => {
|
||||||
if (!authConfigured(settings)) {
|
const auth = await authenticateSession(req, settings);
|
||||||
res.status(503).json({ ok: false, error: 'Auth is not configured on the server' });
|
if (!auth.ok) {
|
||||||
|
res.status(auth.status).json({ ok: false, error: auth.error });
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const token = readBearer(req);
|
res.json({ ok: true, user: rowToAuthUserPublic(auth.row) });
|
||||||
if (!token) {
|
|
||||||
res.status(401).json({ ok: false, error: 'Missing Authorization: Bearer <token>' });
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
const v = verifyAuthToken(token, settings.auth_jwt_secret!.trim());
|
|
||||||
if (!v) {
|
|
||||||
res.status(401).json({ ok: false, error: 'Invalid or expired token' });
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
const supabase = createSupabase(settings);
|
|
||||||
const { data, error } = await supabase
|
|
||||||
.from('users')
|
|
||||||
.select('id, username, 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 });
|
|
||||||
};
|
};
|
||||||
|
|
||||||
app.get('/auth/me', handleGetCurrentUser);
|
app.get('/auth/me', handleGetCurrentUser);
|
||||||
@@ -286,6 +451,60 @@ export function registerAuthRoutes(app: Express, settings: Settings): void {
|
|||||||
res.json({ ok: true, rc_per_usd: RC_PER_USD, packs });
|
res.json({ ok: true, rc_per_usd: RC_PER_USD, packs });
|
||||||
});
|
});
|
||||||
|
|
||||||
|
/** Client reports observed ping for a match. User id comes from login token. */
|
||||||
|
app.post('/auth/ping-report', async (req: Request, res: Response) => {
|
||||||
|
const auth = await authenticateSession(req, settings);
|
||||||
|
if (!auth.ok) {
|
||||||
|
res.status(auth.status).json({ ok: false, error: auth.error });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const body = req.body as Record<string, unknown>;
|
||||||
|
const matchId = coerceDbUserId(body?.match_id);
|
||||||
|
const ping =
|
||||||
|
typeof body?.ping === 'number' && Number.isFinite(body.ping)
|
||||||
|
? Math.trunc(body.ping)
|
||||||
|
: typeof body?.ping === 'string' && /^-?\d+$/.test(body.ping.trim())
|
||||||
|
? parseInt(body.ping.trim(), 10)
|
||||||
|
: null;
|
||||||
|
if (matchId == null || matchId < 1) {
|
||||||
|
res.status(400).json({ ok: false, error: 'match_id must be a positive integer' });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (ping == null || ping < 0) {
|
||||||
|
res.status(400).json({ ok: false, error: 'ping must be a non-negative integer' });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const userId = coerceDbUserId(auth.userId);
|
||||||
|
if (userId == null || userId < 1) {
|
||||||
|
res.status(400).json({ ok: false, error: 'Invalid token user id' });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const ipAddress = readClientIp(req);
|
||||||
|
const { data: inserted, error } = await auth.supabase
|
||||||
|
.from('ping_reports')
|
||||||
|
.insert({
|
||||||
|
user_id: userId,
|
||||||
|
match_id: matchId,
|
||||||
|
ping,
|
||||||
|
ip_address: ipAddress,
|
||||||
|
})
|
||||||
|
.select('id, user_id, match_id, ping, ip_address, created_at')
|
||||||
|
.single();
|
||||||
|
if (error || !inserted) {
|
||||||
|
if (error?.code === '23503') {
|
||||||
|
res.status(404).json({ ok: false, error: 'Referenced user or match not found' });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
res.status(500).json({ ok: false, error: error?.message ?? 'Failed to report ping' });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
res.status(201).json({ ok: true, report: inserted });
|
||||||
|
});
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Dummy IAP: adds RC for a named pack when `iap_dummy_mode` is true in settings.
|
* Dummy IAP: adds RC for a named pack when `iap_dummy_mode` is true in settings.
|
||||||
* Later: same route can require a verified store receipt when dummy mode is off.
|
* Later: same route can require a verified store receipt when dummy mode is off.
|
||||||
@@ -302,16 +521,12 @@ export function registerAuthRoutes(app: Express, settings: Settings): void {
|
|||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const token = readBearer(req);
|
const auth = await authenticateSession(req, settings);
|
||||||
if (!token) {
|
if (!auth.ok) {
|
||||||
res.status(401).json({ ok: false, error: 'Missing Authorization: Bearer <token>' });
|
res.status(auth.status).json({ ok: false, error: auth.error });
|
||||||
return;
|
|
||||||
}
|
|
||||||
const v = verifyAuthToken(token, settings.auth_jwt_secret!.trim());
|
|
||||||
if (!v) {
|
|
||||||
res.status(401).json({ ok: false, error: 'Invalid or expired token' });
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
const supabase = auth.supabase;
|
||||||
const packId = typeof req.body?.pack === 'string' ? req.body.pack.trim() : '';
|
const packId = typeof req.body?.pack === 'string' ? req.body.pack.trim() : '';
|
||||||
const pack = RC_PACKS[packId];
|
const pack = RC_PACKS[packId];
|
||||||
if (!pack) {
|
if (!pack) {
|
||||||
@@ -323,41 +538,280 @@ export function registerAuthRoutes(app: Express, settings: Settings): void {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const supabase = createSupabase(settings);
|
const buyerId = coerceDbUserId(auth.userId);
|
||||||
const { data: row, error: selErr } = await supabase
|
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 auth.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')
|
.from('users')
|
||||||
.select('rc')
|
.select('id, username, email, cc, rc, created_at, last_logged_at')
|
||||||
.eq('id', v.userId)
|
.eq('id', SYSTEM_ACCOUNT_ID)
|
||||||
.maybeSingle();
|
.single();
|
||||||
if (selErr || row === null) {
|
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('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' });
|
res.status(404).json({ ok: false, error: 'User not found' });
|
||||||
return;
|
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
|
const { data: updated, error: upErr } = await supabase
|
||||||
.from('users')
|
.from('users')
|
||||||
.update({ rc: newRc })
|
.update({ rc: targetRc + amount })
|
||||||
.eq('id', v.userId)
|
.eq('id', buyerId)
|
||||||
.select('id, username, cc, rc, created_at, last_logged_at')
|
.select('id, username, email, cc, rc, created_at, last_logged_at')
|
||||||
.single();
|
.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) {
|
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' });
|
res.status(500).json({ ok: false, error: upErr?.message ?? 'Failed to update balance' });
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const user: AuthUserPublic = {
|
const intendedBuyerRc = targetRc + amount;
|
||||||
id: updated.id,
|
const buyerRcStored = roundedStoredRc(updated.rc);
|
||||||
username: updated.username,
|
if (buyerRcStored !== intendedBuyerRc) {
|
||||||
cc: updated.cc,
|
await supabase.from('users').update({ rc: sourceRc }).eq('id', SYSTEM_ACCOUNT_ID);
|
||||||
rc: updated.rc,
|
await supabase.from('users').update({ rc: targetRc }).eq('id', buyerId);
|
||||||
created_at: updated.created_at,
|
logInfo(
|
||||||
last_logged_at: updated.last_logged_at ?? null,
|
'[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({
|
res.json({
|
||||||
ok: true,
|
ok: true,
|
||||||
pack: { id: packId, usd: pack.usd, rc_added: pack.rc },
|
pack: { id: packId, usd: pack.usd, rc_added: amount },
|
||||||
user,
|
user,
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -0,0 +1,180 @@
|
|||||||
|
# Prompt for Unity Cursor — no CC on forfeit (including skip/auto-forfeit)
|
||||||
|
|
||||||
|
Copy everything below the line into Unity Cursor. Do not change join/collect, rematch, hidden MMR display, or player-facing UI.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
You are working in the Kick Kings **dedicated server** Unity project.
|
||||||
|
|
||||||
|
The matchmaker already awards 100 CC only to players still **connected** at settle. That is not enough: a skip-forfeit / auto-forfeit player stays connected, so they still received CC. The API now **also** withholds CC from anyone who forfeited.
|
||||||
|
|
||||||
|
Your only job: on `PATCH /internal/match/{matchId}/winner`, send `forfeit: true` for **every** forfeit path — leave, disconnect, last-disconnect-wins, **and skip/auto-forfeit (two skipped turns)**. Keep `red_connected` / `blue_connected` accurate. Do not infer them from `winner`. Keep the existing header `X-Dedicated-Server-Secret`. Call winner **exactly once** when the outcome is known.
|
||||||
|
|
||||||
|
Do not reimplement CC. The API decides who gets it from the flags you send.
|
||||||
|
|
||||||
|
## Endpoint (unchanged URL)
|
||||||
|
|
||||||
|
`PATCH /internal/match/{matchId}/winner`
|
||||||
|
|
||||||
|
## JSON body (already exists — fix `forfeit` on skip/auto-forfeit)
|
||||||
|
|
||||||
|
Always send all six fields. JSON types must be real booleans and integers (`true` not `"true"`, `3` not `"3"`).
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"winner": "red",
|
||||||
|
"red_connected": true,
|
||||||
|
"blue_connected": true,
|
||||||
|
"red_score": 3,
|
||||||
|
"blue_score": 1,
|
||||||
|
"forfeit": false
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
| Field | Type | Rules |
|
||||||
|
|-------|------|--------|
|
||||||
|
| `winner` | `"red"` or `"blue"` | Winning side. RC prize still goes here. Unchanged. |
|
||||||
|
| `red_connected` | bool | Red still had a live connection at settle. Do **not** infer from `winner`. |
|
||||||
|
| `blue_connected` | bool | Blue still had a live connection at settle. |
|
||||||
|
| `red_score` | int | Rounds/sets red has won (first-to-3). Send on **every** settle. |
|
||||||
|
| `blue_score` | int | Same for blue. |
|
||||||
|
| `forfeit` | bool | `true` for leave, disconnect, last-disconnect-wins, **and skip/auto-forfeit**. `false` **only** for a normal score win. |
|
||||||
|
|
||||||
|
## What changed (this is the bug)
|
||||||
|
|
||||||
|
Previous contract: skip-forfeit sent `forfeit: false` because the skipper was still connected. The API then paid them 100 CC.
|
||||||
|
|
||||||
|
New contract: skip-forfeit / auto-forfeit is still not a disconnect (`*_connected` stays `true` if they are in the match), but it **is** a forfeit. Send `forfeit: true`. The API then pays CC to the connected **non-forfeiting** side only.
|
||||||
|
|
||||||
|
## How the API awards CC (do not reimplement)
|
||||||
|
|
||||||
|
Let `amount` = 100. Do **not** infer connectedness from `winner`. A last-disconnect winner can be disconnected: they get RC, not CC.
|
||||||
|
|
||||||
|
On any forfeit, CC is never paid to the **loser**.
|
||||||
|
|
||||||
|
| `red_connected` | `blue_connected` | `forfeit` | CC credit |
|
||||||
|
|-----------------|------------------|-----------|-----------|
|
||||||
|
| true | true | false | +amount to **both** |
|
||||||
|
| true | true | true | +amount to the **winner only** (skip/auto-forfeit) |
|
||||||
|
| true | false | true | +amount to **red only** |
|
||||||
|
| false | true | true | +amount to **blue only** |
|
||||||
|
| false | false | true | **nobody** |
|
||||||
|
|
||||||
|
RC prize / escrow is unchanged: still paid to `winner`.
|
||||||
|
|
||||||
|
## Connected flags (unchanged meaning)
|
||||||
|
|
||||||
|
Set a side to `false` when:
|
||||||
|
|
||||||
|
- Mirror reports disconnect and reconnect grace expired
|
||||||
|
- That player pressed Leave (even if TCP is still up for a moment)
|
||||||
|
|
||||||
|
`true` = still in the match when you report the outcome.
|
||||||
|
|
||||||
|
Skip-forfeit is **not** a disconnect. If that player is still in the match, keep their `*_connected: true` **and** send `forfeit: true`.
|
||||||
|
|
||||||
|
## What to send in each end condition
|
||||||
|
|
||||||
|
### 1. Normal score win (first to 3)
|
||||||
|
|
||||||
|
Both still in the match. `forfeit: false`. Both get CC.
|
||||||
|
|
||||||
|
```json
|
||||||
|
{ "winner": "red", "red_connected": true, "blue_connected": true, "red_score": 3, "blue_score": 1, "forfeit": false }
|
||||||
|
```
|
||||||
|
|
||||||
|
### 2. One player leaves or disconnects
|
||||||
|
|
||||||
|
Remaining player wins. Leaver `*_connected: false`. `forfeit: true`. Only the remaining connected player gets CC.
|
||||||
|
|
||||||
|
```json
|
||||||
|
{ "winner": "red", "red_connected": true, "blue_connected": false, "red_score": 1, "blue_score": 0, "forfeit": true }
|
||||||
|
```
|
||||||
|
|
||||||
|
### 3. Both disconnect (last-disconnect-wins)
|
||||||
|
|
||||||
|
Last player who disconnected is `winner`. Both `*_connected: false`. `forfeit: true`. Nobody gets CC. RC still goes to `winner`.
|
||||||
|
|
||||||
|
```json
|
||||||
|
{ "winner": "blue", "red_connected": false, "blue_connected": false, "red_score": 0, "blue_score": 2, "forfeit": true }
|
||||||
|
```
|
||||||
|
|
||||||
|
### 4. Skip-forfeit / auto-forfeit (two skipped turns) — this is the change
|
||||||
|
|
||||||
|
Not a disconnect. Keep `*_connected: true` if they are still in the match. Send `forfeit: true`. Winner is whoever the game rules already pick. The skipper (loser) does **not** get CC. The opponent gets CC if connected.
|
||||||
|
|
||||||
|
```json
|
||||||
|
{ "winner": "red", "red_connected": true, "blue_connected": true, "red_score": 1, "blue_score": 0, "forfeit": true }
|
||||||
|
```
|
||||||
|
|
||||||
|
### 5. Process crash / forced shutdown after fees were collected
|
||||||
|
|
||||||
|
Same as remaining-player or last-disconnect. Send accurate `*_connected`, scores, and `forfeit: true` if it was a disconnect/forfeit path. Call winner **before** exit whenever possible.
|
||||||
|
|
||||||
|
Never skip the winner call after collect. Never invent a draw.
|
||||||
|
|
||||||
|
## Success response (use `cc_awarded_*` as today)
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"ok": true,
|
||||||
|
"id": 123,
|
||||||
|
"winner": "red",
|
||||||
|
"winner_id": 456,
|
||||||
|
"already_settled": false,
|
||||||
|
"economy": {
|
||||||
|
"entry_fee_rc": 21,
|
||||||
|
"rc_prize": 34,
|
||||||
|
"participant_cc": 100,
|
||||||
|
"cc_awarded_red": true,
|
||||||
|
"cc_awarded_blue": false
|
||||||
|
},
|
||||||
|
"mmr_delta": 27,
|
||||||
|
"forfeit": true
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
- Keep using `economy.cc_awarded_red` / `cc_awarded_blue` as today.
|
||||||
|
- `mmr_delta` and `forfeit` on the response are for server logs only. **Do not forward them to player clients. Do not show them in UI.**
|
||||||
|
- Honor response `winner` / `winner_id`. On simultaneous Leave/skip, a second `forfeit: true` PATCH returns **200** `already_settled: true` with the **first** settle’s winner, not 409.
|
||||||
|
|
||||||
|
HTTP: 200 = settled, already settled same winner, or a second forfeit that lost the race. 409 = entries not collected, or winner already set to the other side on a **non-forfeit** conflict.
|
||||||
|
|
||||||
|
## Where to change
|
||||||
|
|
||||||
|
Find the dedicated-server method that PATCHes `/internal/match/{id}/winner`.
|
||||||
|
|
||||||
|
Today skip-forfeit / two skipped turns likely sets `forfeit = false` because the player is still connected. Change that path so `forfeit = true`.
|
||||||
|
|
||||||
|
Leave, disconnect, and last-disconnect should already send `forfeit: true`. Do not regress those.
|
||||||
|
|
||||||
|
Payload shape is unchanged:
|
||||||
|
|
||||||
|
```csharp
|
||||||
|
public sealed class WinnerReportBody
|
||||||
|
{
|
||||||
|
public string winner; // "red" | "blue"
|
||||||
|
public bool red_connected;
|
||||||
|
public bool blue_connected;
|
||||||
|
public int red_score;
|
||||||
|
public int blue_score;
|
||||||
|
public bool forfeit;
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## Do not
|
||||||
|
|
||||||
|
- Set `forfeit: false` for skip-forfeit / auto-forfeit
|
||||||
|
- Set `*_connected: false` for skip-forfeit just to kill CC (the player is still in the match; that would also switch hidden MMR to the 20% disconnect path)
|
||||||
|
- Infer `red_connected` / `blue_connected` from who won
|
||||||
|
- Change join PATCH (`red_joined_at` / `blue_joined_at`) or rematch
|
||||||
|
- Show MMR, `mmr_delta`, or CC award flags in player UI unless they are already shown
|
||||||
|
- Skip the winner call after fees were collected
|
||||||
|
|
||||||
|
## Done when
|
||||||
|
|
||||||
|
- [ ] Normal score wins still send `forfeit: false`
|
||||||
|
- [ ] Leave / disconnect / last-disconnect still send `forfeit: true` and `*_connected: false` on leavers
|
||||||
|
- [ ] Skip-forfeit / auto-forfeit sends `forfeit: true` with accurate `*_connected` (usually both `true`)
|
||||||
|
- [ ] Skipper no longer receives CC; opponent still does if connected
|
||||||
|
- [ ] Winner is still always called after fees were collected
|
||||||
@@ -0,0 +1,268 @@
|
|||||||
|
# Unity dedicated server — match lifecycle (escrow + always finish)
|
||||||
|
|
||||||
|
Contract for the Kick Kings dedicated server build against the matchmaker API.
|
||||||
|
Header on all `/internal/*` calls: `X-Dedicated-Server-Secret: <secret from settings>`.
|
||||||
|
|
||||||
|
## Goals
|
||||||
|
|
||||||
|
1. Collect entry fees into a **per-match escrow** only after **both** players are connected.
|
||||||
|
2. Pay the winner (and house fee) **only from that escrow**.
|
||||||
|
3. **Never leave a match unfinished** — always report a winner, including disconnect forfeits.
|
||||||
|
|
||||||
|
## Sequence
|
||||||
|
|
||||||
|
```
|
||||||
|
1. Match row exists (matchmaking or rematch) with match_id, user_red, user_blue, entry_fee
|
||||||
|
2. Red connects → PATCH /internal/match/:matchId { "red_joined_at": "<ISO-8601 UTC>" }
|
||||||
|
3. Blue connects → PATCH /internal/match/:matchId { "blue_joined_at": "<ISO-8601 UTC>" }
|
||||||
|
→ When both join timestamps are set, the API collects entry fees into escrow
|
||||||
|
4. Start the match only after collect succeeds (see responses below)
|
||||||
|
5. Match ends (score / disconnect / crash path) → PATCH /internal/match/:matchId/winner
|
||||||
|
{ "winner": "red" | "blue", "red_connected": true | false, "blue_connected": true | false,
|
||||||
|
"red_score": 0-3, "blue_score": 0-3, "forfeit": true | false }
|
||||||
|
```
|
||||||
|
|
||||||
|
## Join PATCH
|
||||||
|
|
||||||
|
`PATCH /internal/match/:matchId`
|
||||||
|
|
||||||
|
Example bodies:
|
||||||
|
|
||||||
|
```json
|
||||||
|
{ "red_joined_at": "2026-08-12T18:00:00.000Z" }
|
||||||
|
```
|
||||||
|
|
||||||
|
```json
|
||||||
|
{ "blue_joined_at": "2026-08-12T18:00:01.000Z" }
|
||||||
|
```
|
||||||
|
|
||||||
|
### Success when both have joined (collect ran)
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"ok": true,
|
||||||
|
"id": 123,
|
||||||
|
"entries_collected": true,
|
||||||
|
"already_collected": false,
|
||||||
|
"escrow_user_id": 456
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### Success when only one side joined yet
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"ok": true,
|
||||||
|
"id": 123,
|
||||||
|
"entries_collected": false
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### Collect failure (fatal — do not start the match)
|
||||||
|
|
||||||
|
Typical cases:
|
||||||
|
|
||||||
|
| HTTP | Meaning |
|
||||||
|
|------|---------|
|
||||||
|
| 402 | One or both players lack enough RC for `entry_fee` |
|
||||||
|
| 409 | Players/joins incomplete (should not happen if you set both joins) |
|
||||||
|
| 503 | DB / economy RPCs not installed on the server |
|
||||||
|
|
||||||
|
On any non-2xx after the second join, **abort kickoff**, disconnect both clients, and do **not** call winner (fees were not escrowed).
|
||||||
|
|
||||||
|
Idempotent: repeating the join PATCH after a successful collect returns `entries_collected: true` (or `already_collected: true`).
|
||||||
|
|
||||||
|
## Winner PATCH
|
||||||
|
|
||||||
|
`PATCH /internal/match/:matchId/winner`
|
||||||
|
|
||||||
|
`participant_cc` (100 CC) is **not** a join/participation prize for everyone in the match. Award it only to players who **finish the match still connected and did not forfeit**. Players who leave, disconnect, skip-forfeit (auto-forfeit), or forfeit in any other way must not receive it. The opponent who stayed and did not forfeit still gets CC if they were connected.
|
||||||
|
|
||||||
|
RC prize / escrow payout is unchanged: still paid to the reported `winner`.
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"winner": "red",
|
||||||
|
"red_connected": true,
|
||||||
|
"blue_connected": true,
|
||||||
|
"red_score": 3,
|
||||||
|
"blue_score": 1,
|
||||||
|
"forfeit": false
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
| Field | Type | Meaning |
|
||||||
|
|-------|------|---------|
|
||||||
|
| `winner` | `"red"` \| `"blue"` | Match winner (unchanged). RC prize goes to this side. |
|
||||||
|
| `red_connected` | bool | Dedicated server: red still had a live connection at settle. |
|
||||||
|
| `blue_connected` | bool | Dedicated server: blue still had a live connection at settle. |
|
||||||
|
| `red_score` | int | Rounds/sets won by red (first-to-3). Send on every settle. |
|
||||||
|
| `blue_score` | int | Rounds/sets won by blue. Send on every settle. |
|
||||||
|
| `forfeit` | bool | `true` for leave, disconnect, last-disconnect-wins, **and skip/auto-forfeit** (two skipped turns). `false` only for a normal score win. |
|
||||||
|
|
||||||
|
Set a side to `false` when:
|
||||||
|
|
||||||
|
- Mirror reports that client disconnected and the reconnect grace expired (or both left)
|
||||||
|
- That player pressed Leave (voluntary forfeit) — even if the TCP connection is still up for a moment
|
||||||
|
|
||||||
|
`true` means that player was still in the match when the outcome was reported (score win, opponent forfeit, or skip-forfeit while they stayed connected). Skip-forfeit still sends `forfeit: true` even if that side is `*_connected: true`.
|
||||||
|
|
||||||
|
Hidden MMR (admin-only, not shown to players) uses score and forfeit:
|
||||||
|
|
||||||
|
| Result | MMR % of the Clash-style base |
|
||||||
|
|--------|-------------------------------|
|
||||||
|
| `forfeit: true` **and** losing side disconnected, or both disconnected | 20% |
|
||||||
|
| `forfeit: true` **and** both still connected (skip/auto-forfeit) | score table below |
|
||||||
|
| Loser scored 0 (3–0) | 100% |
|
||||||
|
| Loser scored 1 (3–1) | 90% |
|
||||||
|
| Loser scored 2+ (3–2) | 75% |
|
||||||
|
|
||||||
|
Skip-forfeit (two skipped turns, both still connected) sends `forfeit: true`. Hidden MMR still uses the score table, not 20%. Old dedicated builds that omit scores and connected flags are treated as 3–0 (100%). 3–1 / 3–2 multipliers apply only once this build sends scores.
|
||||||
|
|
||||||
|
### Award rules
|
||||||
|
|
||||||
|
Let `amount` = existing `participant_cc` setting (100). Do **not** infer connectedness from `winner`. The winner can be a disconnected player (last-disconnect-wins); that player must not get CC.
|
||||||
|
|
||||||
|
Skip-forfeit / auto-forfeit (two skipped turns): send `forfeit: true`. The skipper is the loser and **does not** get CC, even if they are still connected. The opponent gets CC if they were connected.
|
||||||
|
|
||||||
|
On any forfeit (`forfeit: true` or a disconnected loser), CC is never paid to the losing side.
|
||||||
|
|
||||||
|
| `red_connected` | `blue_connected` | `forfeit` | CC credit |
|
||||||
|
|-----------------|------------------|-----------|-----------|
|
||||||
|
| true | true | false | +amount to **both** users |
|
||||||
|
| true | true | true | +amount to the **winner only** (skip/auto-forfeit) |
|
||||||
|
| true | false | true | +amount to **red only** |
|
||||||
|
| false | true | true | +amount to **blue only** |
|
||||||
|
| false | false | true | **nobody** gets participation CC |
|
||||||
|
|
||||||
|
### Backward compatibility
|
||||||
|
|
||||||
|
New dedicated servers always send both bools.
|
||||||
|
|
||||||
|
If `red_connected` / `blue_connected` are **omitted** (old dedicated builds):
|
||||||
|
|
||||||
|
- Keep awarding CC to **both** players (previous behaviour)
|
||||||
|
|
||||||
|
Do not treat omitted fields as `false`; that would stop CC for every match until the dedicated build is deployed.
|
||||||
|
|
||||||
|
### Success response
|
||||||
|
|
||||||
|
Requires entry fees already collected.
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"ok": true,
|
||||||
|
"id": 123,
|
||||||
|
"winner": "red",
|
||||||
|
"winner_id": 456,
|
||||||
|
"already_settled": false,
|
||||||
|
"economy": {
|
||||||
|
"entry_fee_rc": 21,
|
||||||
|
"rc_prize": 34,
|
||||||
|
"participant_cc": 100,
|
||||||
|
"cc_awarded_red": true,
|
||||||
|
"cc_awarded_blue": false
|
||||||
|
},
|
||||||
|
"mmr_delta": 27,
|
||||||
|
"forfeit": false
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
| Field | Meaning |
|
||||||
|
|-------|---------|
|
||||||
|
| `winner` | `"red"` or `"blue"` for the **stored** outcome. Honor this, not the `winner` you sent. |
|
||||||
|
| `winner_id` | User id of that side. |
|
||||||
|
| `already_settled` | `true` if this call did not settle (retry or second forfeit). |
|
||||||
|
| `participant_cc` | Amount per finisher (still 100). Not “total CC paid”. |
|
||||||
|
| `cc_awarded_red` | Red’s user received `participant_cc` on this settle. |
|
||||||
|
| `cc_awarded_blue` | Blue’s user received `participant_cc` on this settle. |
|
||||||
|
| `mmr_delta` | Hidden MMR the winner gained (loser lost). Do not show to players. |
|
||||||
|
| `forfeit` | Whether the match ended by forfeit (leave, disconnect, last-disconnect, or skip/auto-forfeit). |
|
||||||
|
|
||||||
|
| HTTP | Meaning |
|
||||||
|
|------|---------|
|
||||||
|
| 200 | Settled, already settled for the same winner, **or** a second `forfeit: true` that lost the race (`already_settled: true`; use response `winner` / `winner_id`) |
|
||||||
|
| 409 | Entries not collected yet, or winner already set to the other side on a **non-forfeit** conflict (score win vs forfeit, or two score wins that disagree) |
|
||||||
|
| 500 | Escrow inconsistency (should be rare; escalate) |
|
||||||
|
|
||||||
|
Call winner **exactly once** when the match outcome is known. Retries with the **same** side are safe if the first call succeeded: they must not pay CC twice, and they repeat the same `cc_awarded_*` flags from the first settle.
|
||||||
|
|
||||||
|
Simultaneous Leave / skip from both sides may fire two `forfeit: true` PATCHes with opposite `winner` values. That is also safe: the first settle stands; the second is 200 `already_settled` with the stored winner. Apply the **response** `winner`, not the side you requested. Do not treat both players as losers.
|
||||||
|
|
||||||
|
### Examples
|
||||||
|
|
||||||
|
Both finish (score 3–1):
|
||||||
|
|
||||||
|
```json
|
||||||
|
{ "winner": "red", "red_connected": true, "blue_connected": true, "red_score": 3, "blue_score": 1, "forfeit": false }
|
||||||
|
```
|
||||||
|
|
||||||
|
→ RC to red, 100 CC to red **and** blue. Hidden MMR uses 90% (3–1).
|
||||||
|
|
||||||
|
Blue left / disconnected, red wins:
|
||||||
|
|
||||||
|
```json
|
||||||
|
{ "winner": "red", "red_connected": true, "blue_connected": false, "red_score": 1, "blue_score": 0, "forfeit": true }
|
||||||
|
```
|
||||||
|
|
||||||
|
→ RC to red, 100 CC to red only. Hidden MMR uses 20% (forfeit).
|
||||||
|
|
||||||
|
Both disconnected, last disconnect was blue:
|
||||||
|
|
||||||
|
```json
|
||||||
|
{ "winner": "blue", "red_connected": false, "blue_connected": false, "red_score": 0, "blue_score": 0, "forfeit": true }
|
||||||
|
```
|
||||||
|
|
||||||
|
→ RC to blue, **no** participation CC. Hidden MMR uses 20% (forfeit).
|
||||||
|
|
||||||
|
Blue skip-forfeit / auto-forfeit (two skipped turns), still connected:
|
||||||
|
|
||||||
|
```json
|
||||||
|
{ "winner": "red", "red_connected": true, "blue_connected": true, "red_score": 1, "blue_score": 0, "forfeit": true }
|
||||||
|
```
|
||||||
|
|
||||||
|
→ RC to red, 100 CC to **red only** (blue forfeited). Hidden MMR uses the score table (100% here, blue scored 0), not 20%.
|
||||||
|
|
||||||
|
## Always finish — disconnect / forfeit rules
|
||||||
|
|
||||||
|
Matches must **never** end without a winner call after fees were collected.
|
||||||
|
|
||||||
|
Track disconnect order on the dedicated server (timestamps or a queue).
|
||||||
|
|
||||||
|
1. **One player disconnects mid-match**
|
||||||
|
Remaining player wins. Set the disconnected side to `false` and `forfeit: true`.
|
||||||
|
Example: blue disconnects → `{ "winner": "red", "red_connected": true, "blue_connected": false, "forfeit": true }`.
|
||||||
|
|
||||||
|
2. **Both players disconnect**
|
||||||
|
The **last player who disconnected is the winner**. Both sides are disconnected, so neither gets participation CC.
|
||||||
|
Example: red disconnects first, then blue → blue was last to leave → `{ "winner": "blue", "red_connected": false, "blue_connected": false, "forfeit": true }`.
|
||||||
|
|
||||||
|
3. **Process crash / forced shutdown**
|
||||||
|
If fees were collected, choose a winner with the same rules (remaining player, or last disconnect), send accurate `*_connected` flags, and call winner **before** exit whenever possible.
|
||||||
|
|
||||||
|
4. **Normal score / time win**
|
||||||
|
Report the actual winning side, scores, `forfeit: false`, and `true` for any player still connected.
|
||||||
|
|
||||||
|
5. **Skip-forfeit / auto-forfeit (two skipped turns)**
|
||||||
|
Not a disconnect. Both `*_connected` stay `true` if they are still in the match. Send `forfeit: true`. The skipper is the loser and does **not** get CC. The opponent gets CC if connected. Hidden MMR uses the score table, not 20%.
|
||||||
|
|
||||||
|
6. **Simultaneous forfeits (both Leave / skip at once)**
|
||||||
|
Each handler may PATCH with the opponent as `winner` and `forfeit: true`. The API keeps the **first** settle (first forfeiter loses). The second returns **200** `already_settled: true` with the real `winner` / `winner_id` — not 409. Apply the **response** winner. Do not show both players as losers. Do not invent a draw. Score-win vs forfeit disagreement is still 409.
|
||||||
|
|
||||||
|
Do **not** leave escrow locked with no winner. Do **not** invent a draw path that skips the winner endpoint.
|
||||||
|
|
||||||
|
## Rematch
|
||||||
|
|
||||||
|
`POST /internal/rematch` still only creates the room/match row. Entry fees are **not** taken there. Collect still happens when both `*_joined_at` are set on the new `match_id`.
|
||||||
|
|
||||||
|
## Checklist for the Unity build
|
||||||
|
|
||||||
|
- [ ] Set `red_joined_at` / `blue_joined_at` in UTC ISO when each client is fully connected
|
||||||
|
- [ ] Treat 402/4xx/5xx on the second join as fatal — no kickoff
|
||||||
|
- [ ] Gate gameplay start on `entries_collected: true`
|
||||||
|
- [ ] Always call winner after collect (score, forfeit, or last-disconnect-wins)
|
||||||
|
- [ ] Send `red_connected` / `blue_connected` (do not infer from `winner`; last-disconnect winner with both `false` still gets RC, not CC)
|
||||||
|
- [ ] Send `red_score` / `blue_score` on every settle (3–1 / 3–2 MMR multipliers need these)
|
||||||
|
- [ ] Send `forfeit: true` on leave, disconnect, last-disconnect, **and skip/auto-forfeit**
|
||||||
|
- [ ] Persist disconnect order until winner is acknowledged
|
||||||
|
- [ ] Dual Leave/skip: honor 200 `already_settled` `winner` even if it differs from the side you sent
|
||||||
@@ -0,0 +1,165 @@
|
|||||||
|
# Prompt for Unity Cursor — hidden MMR winner report
|
||||||
|
|
||||||
|
Copy everything below the line into Unity Cursor. Do not change join/collect, rematch, or client UI.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
You are working in the Kick Kings **dedicated server** Unity project.
|
||||||
|
|
||||||
|
The matchmaker API now computes **hidden MMR** on settle. Players must **never** see MMR. Do not add MMR to HUD, post-match screens, profile, or any client-bound packet.
|
||||||
|
|
||||||
|
Your only job: extend the existing `PATCH /internal/match/{matchId}/winner` JSON body so every settle includes scores and a forfeit flag. Keep the existing header `X-Dedicated-Server-Secret`. Call winner **exactly once** when the outcome is known (retries with the same `winner` are safe).
|
||||||
|
|
||||||
|
## Endpoint (unchanged URL)
|
||||||
|
|
||||||
|
`PATCH /internal/match/{matchId}/winner`
|
||||||
|
|
||||||
|
## New required JSON body
|
||||||
|
|
||||||
|
Always send all six fields. `winner`, `red_connected`, and `blue_connected` already exist — do not remove them.
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"winner": "red",
|
||||||
|
"red_connected": true,
|
||||||
|
"blue_connected": true,
|
||||||
|
"red_score": 3,
|
||||||
|
"blue_score": 1,
|
||||||
|
"forfeit": false
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
| Field | Type | Rules |
|
||||||
|
|-------|------|--------|
|
||||||
|
| `winner` | `"red"` or `"blue"` | Winning side. Unchanged. |
|
||||||
|
| `red_connected` | bool | Red still had a live connection at settle. Do **not** infer from `winner`. |
|
||||||
|
| `blue_connected` | bool | Blue still had a live connection at settle. |
|
||||||
|
| `red_score` | int | Rounds/sets red has won (first-to-3). Send on **every** settle, including forfeits. Use the score at the moment the match ended (0–3 typical). |
|
||||||
|
| `blue_score` | int | Same for blue. |
|
||||||
|
| `forfeit` | bool | `true` for leave, disconnect, last-disconnect-wins, **and skip/auto-forfeit** (two skipped turns). `false` only for a normal score win. |
|
||||||
|
|
||||||
|
JSON types must be real booleans and integers, not strings (`true` not `"true"`, `3` not `"3"`).
|
||||||
|
|
||||||
|
## How the API uses this (do not reimplement)
|
||||||
|
|
||||||
|
The API applies hidden MMR. You only report facts.
|
||||||
|
|
||||||
|
| What you send | MMR % the API uses |
|
||||||
|
|---------------|--------------------|
|
||||||
|
| `forfeit: true` **and** loser `*_connected: false`, or both disconnected | 20% |
|
||||||
|
| `forfeit: true` **and** both still connected (skip/auto-forfeit) | score table (100% / 90% / 75%) |
|
||||||
|
| Normal finish, loser score 0 (3–0) | 100% |
|
||||||
|
| Normal finish, loser score 1 (3–1) | 90% |
|
||||||
|
| Normal finish, loser score 2+ (3–2) | 75% |
|
||||||
|
|
||||||
|
Skip-forfeit: both still connected → `forfeit: true` and send the actual score. API uses the score table, not 20%. The skipper (loser) does **not** get CC.
|
||||||
|
|
||||||
|
If you omit scores, the API treats the match as 3–0 (100%). That is wrong for 3–1 and 3–2. **Always send scores.**
|
||||||
|
|
||||||
|
## Connected flags (unchanged meaning)
|
||||||
|
|
||||||
|
Set a side to `false` when:
|
||||||
|
|
||||||
|
- Mirror reports disconnect and reconnect grace expired
|
||||||
|
- That player pressed Leave (even if TCP is still up for a moment)
|
||||||
|
|
||||||
|
`true` = still in the match when you report the outcome (score win, opponent forfeit, or skip-forfeit while they stayed).
|
||||||
|
|
||||||
|
CC (100) is awarded only to connected finishers who did **not** forfeit. Last-disconnect winner can be disconnected: they get RC, not CC. Skip/auto-forfeit: skipper gets no CC even if still connected. Do not infer `*_connected` from `winner`.
|
||||||
|
|
||||||
|
## What to send in each end condition
|
||||||
|
|
||||||
|
### 1. Normal score win (first to 3)
|
||||||
|
|
||||||
|
Both still in the match.
|
||||||
|
|
||||||
|
```json
|
||||||
|
{ "winner": "red", "red_connected": true, "blue_connected": true, "red_score": 3, "blue_score": 1, "forfeit": false }
|
||||||
|
```
|
||||||
|
|
||||||
|
Use the real score: 3–0, 3–1, or 3–2. `forfeit` is **false**.
|
||||||
|
|
||||||
|
### 2. One player leaves or disconnects
|
||||||
|
|
||||||
|
Remaining player wins. Disconnected side `false`. `forfeit: true`. Scores = rounds already won when they left.
|
||||||
|
|
||||||
|
```json
|
||||||
|
{ "winner": "red", "red_connected": true, "blue_connected": false, "red_score": 1, "blue_score": 0, "forfeit": true }
|
||||||
|
```
|
||||||
|
|
||||||
|
### 3. Both disconnect (last-disconnect-wins)
|
||||||
|
|
||||||
|
Last player who disconnected is `winner`. Both `*_connected: false`. `forfeit: true`. Keep disconnect-order tracking until the winner call is acknowledged.
|
||||||
|
|
||||||
|
```json
|
||||||
|
{ "winner": "blue", "red_connected": false, "blue_connected": false, "red_score": 0, "blue_score": 2, "forfeit": true }
|
||||||
|
```
|
||||||
|
|
||||||
|
### 4. Skip-forfeit (two skipped turns)
|
||||||
|
|
||||||
|
Not a disconnect. If that player is still connected, keep `*_connected: true`. Send `forfeit: true`. They do **not** get CC. Send the actual score. Winner is whoever the game rules already pick. Hidden MMR uses the score table.
|
||||||
|
|
||||||
|
### 5. Process crash / forced shutdown after fees were collected
|
||||||
|
|
||||||
|
Same as remaining-player or last-disconnect. Send accurate `*_connected`, scores, `forfeit: true` if it was a disconnect path, and call winner **before** exit whenever possible.
|
||||||
|
|
||||||
|
Never skip the winner call after collect. Never invent a draw.
|
||||||
|
|
||||||
|
## Success response (ignore MMR on clients)
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"ok": true,
|
||||||
|
"id": 123,
|
||||||
|
"winner": "red",
|
||||||
|
"winner_id": 456,
|
||||||
|
"already_settled": false,
|
||||||
|
"economy": { "entry_fee_rc": 21, "rc_prize": 34, "participant_cc": 100, "cc_awarded_red": true, "cc_awarded_blue": false },
|
||||||
|
"mmr_delta": 27,
|
||||||
|
"forfeit": false
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
- Keep using `economy` / `cc_awarded_*` as today.
|
||||||
|
- `mmr_delta` and `forfeit` are for server logs only. **Do not forward them to player clients. Do not show them in UI.**
|
||||||
|
- Honor response `winner` / `winner_id`. Simultaneous Leave/skip: the second `forfeit: true` PATCH is **200** `already_settled` with the first settle’s winner, not 409.
|
||||||
|
|
||||||
|
HTTP: 200 = settled, already settled same winner, or a second forfeit that lost the race. 409 = entries not collected, or winner already set to the other side on a **non-forfeit** conflict.
|
||||||
|
|
||||||
|
## Suggested C# payload
|
||||||
|
|
||||||
|
Extend the existing winner DTO / anonymous object. Do not stringify bools/ints.
|
||||||
|
|
||||||
|
```csharp
|
||||||
|
public sealed class WinnerReportBody
|
||||||
|
{
|
||||||
|
public string winner; // "red" | "blue"
|
||||||
|
public bool red_connected;
|
||||||
|
public bool blue_connected;
|
||||||
|
public int red_score;
|
||||||
|
public int blue_score;
|
||||||
|
public bool forfeit;
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
Serialize with standard JSON (`true`/`false`, numeric scores). Field names must match exactly (snake_case as above).
|
||||||
|
|
||||||
|
Find the dedicated-server method that currently PATCHes `/internal/match/{id}/winner` and add `red_score`, `blue_score`, `forfeit` there. Pass the live round scoreboard and whether this settle is a leave, disconnect, or skip/auto-forfeit.
|
||||||
|
|
||||||
|
## Do not
|
||||||
|
|
||||||
|
- Show MMR, `mmr_delta`, or rating of any kind to players
|
||||||
|
- Change join PATCH (`red_joined_at` / `blue_joined_at`) or rematch
|
||||||
|
- Omit scores on forfeit (still send the score at leave)
|
||||||
|
- Set `forfeit: false` for skip-forfeit / auto-forfeit (must be `true` so the skipper gets no CC)
|
||||||
|
- Infer `red_connected` / `blue_connected` from who won
|
||||||
|
- Leave a collected match without a winner call
|
||||||
|
|
||||||
|
## Done when
|
||||||
|
|
||||||
|
- [ ] Winner PATCH body always includes `red_score`, `blue_score`, `forfeit`
|
||||||
|
- [ ] Score wins send `forfeit: false` and the real 3–0 / 3–1 / 3–2
|
||||||
|
- [ ] Leave / disconnect / last-disconnect send `forfeit: true` and `*_connected: false` on leavers
|
||||||
|
- [ ] Skip-forfeit / auto-forfeit sends `forfeit: true` (skipper gets no CC even if still connected)
|
||||||
|
- [ ] No client UI or gameplay packet exposes MMR
|
||||||
|
- [ ] Winner is still always called after fees were collected
|
||||||
+334
@@ -0,0 +1,334 @@
|
|||||||
|
Library: F:\Projects\Unity\soccar2d_clone_0\Temp\BurstOutput\Data\Plugins\lib_burst_generated
|
||||||
|
--platform=Linux
|
||||||
|
--minimum-os-version=
|
||||||
|
--backend=burst-llvm-19
|
||||||
|
--target=X64_SSE2
|
||||||
|
--global-safety-checks-setting=Off
|
||||||
|
--meta-data-generation=False
|
||||||
|
--dump=Function
|
||||||
|
--float-precision=Standard
|
||||||
|
--target-framework=NetFramework
|
||||||
|
--generate-link-xml=Temp\burst.link.xml
|
||||||
|
--temp-folder=F:\Projects\Unity\soccar2d_clone_0\Temp\Burst
|
||||||
|
--enable-frame-info-registration
|
||||||
|
--key-folder=C:/Program Files/Unity/Hub/Editor/6000.0.59f2/Editor/Data/PlaybackEngines/LinuxStandaloneSupport
|
||||||
|
--decode-folder=F:\Projects\Unity\soccar2d_clone_0\Library\Burst
|
||||||
|
--output=F:\Projects\Unity\soccar2d_clone_0\Temp\BurstOutput\Data\Plugins\lib_burst_generated
|
||||||
|
--pdb-search-paths=Temp/ManagedSymbols/
|
||||||
|
|
||||||
|
--method=UnityEngine.Rendering.GPUResidentDrawerBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::ClassifyMaterials(Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2+ReadOnly[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.BatchMaterialID, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.GPUDrivenPackedMaterialData, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--f259e9421b556600f769263137cdc7bc
|
||||||
|
--method=Unity.Burst.BurstCompiler+BurstCompilerHelper, Unity.Burst, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::IsBurstEnabled()--8c2be93e18276203cbd918daa2748a10
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.GPUInstanceDataBuffer+ConvertCPUInstancesToGPUInstancesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.GPUInstanceDataBuffer+ConvertCPUInstancesToGPUInstancesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--a917331aad44b603aa293fb2ddd84845
|
||||||
|
--method=UnityEngine.U2D.SpriteShapeGenerator, Unity.2D.SpriteShape.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::UTessellator(UnityEngine.U2D.SpriteShapeSegment&, UnityEngine.SpriteShapeModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Mathematics.float2*, Unity.Mathematics, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.UInt16*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Int32&, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Byte*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Int32&, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.Allocator, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--94c3dddf0a01c005fa80e8018c52f749
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.DrawCommandOutputPerBatch, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.DrawCommandOutputPerBatch&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--f531652faf1e45081f68869b8a72d6da
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[Unity.Collections.SortJob`2+SegmentSort[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[Unity.Collections.NativeSortExtension+DefaultComparer`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.SortJob`2+SegmentSort[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[Unity.Collections.NativeSortExtension+DefaultComparer`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--82ff8baa2abd920945d7abccccedb808
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.InstanceDataSystem+UpdateRendererInstancesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+UpdateRendererInstancesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--629364e44aefad191e287c15b5f1415d
|
||||||
|
--method=UnityEngine.U2D.Animation.MeshUtilities, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::SortEdges(Unity.Collections.NativeArray`1[[Unity.Mathematics.int2, Unity.Mathematics, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[Unity.Mathematics.int2, Unity.Mathematics, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--7d7fc0f22a40281b2a74b3a9c5da3e3c
|
||||||
|
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.ParallelSortExtensions+RadixSortBatchPrefixSumJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.ParallelSortExtensions+RadixSortBatchPrefixSumJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--f94f7ff99dd2661c4fa8531d62e9b853
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.BuildDrawListsJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.BuildDrawListsJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--482aa17deb765720c35123ea290985cd
|
||||||
|
--method=Unity.Collections.xxHash3, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Hash64Long(System.Byte*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Byte*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Int64, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Byte*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--93df17b7366cd622dfa5ea2d3c75cf0b
|
||||||
|
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.InstanceDataSystem+TransformUpdateJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+TransformUpdateJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--627895236a7055248a171dd760154a74
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.Rendering.InstanceDataSystem+ComputeInstancesOffsetAndResizeInstancesArrayJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+ComputeInstancesOffsetAndResizeInstancesArrayJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--e1a600a5b1122626d6f5840453636d73
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.U2D.Animation.CopySpriteRendererBuffersJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.CopySpriteRendererBuffersJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--2b06055de97035295dc032db19a3a735
|
||||||
|
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.CompactVisibilityMasksJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.CompactVisibilityMasksJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--77623b226a0d9b2add0602da4c23b102
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeBitArrayDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeBitArrayDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--9ec4cbd609d0ce32be9a43e477fa08be
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeListDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeListDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--4a1dc7df3f09b836e86a41d0d8fb4229
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.InstanceDataSystem+CollectInstancesLODGroupsAndMasksJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+CollectInstancesLODGroupsAndMasksJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--ad994327679b3c3b4b2057afe8015412
|
||||||
|
--method=UnityEngine.Jobs.IJobParallelForTransformExtensions+TransformParallelForLoopStruct`1[[UnityEngine.U2D.Animation.WorldToLocalTransformAccessJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.WorldToLocalTransformAccessJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--b0197e8b2118e6410ef3f798b24a1e6e
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.LowLevel.Unsafe.UnsafeParallelHashMapDataDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.LowLevel.Unsafe.UnsafeParallelHashMapDataDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--36a800eeeae3c643da5520fa383c8c70
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.CullingJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.CullingJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--43818c1b0c11124717e9257b630efd6f
|
||||||
|
--method=UnityEngine.U2D.Animation.BurstedSpriteSkinUtilities, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::ValidateBoneWeights(UnityEngine.U2D.Animation.NativeCustomSlice`1[[UnityEngine.BoneWeight, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--9425db96a9fb33479746c6501570455e
|
||||||
|
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.ParallelSortExtensions+RadixSortBucketCountJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.ParallelSortExtensions+RadixSortBucketCountJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--ec632d4d28f4ff494fdc1e6f91b50bde
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeReferenceDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeReferenceDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--baf840f8150b604b0fd300ceb19dd50e
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.U2D.Animation.PrepareDeformJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.PrepareDeformJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--a10c29fb1a626a4dab6bf90980926746
|
||||||
|
--method=Unity.Burst.Intrinsics.X86, Unity.Burst, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::DoSetCSRTrampoline(System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--da352d92cabf024fc9986011d52a4537
|
||||||
|
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::CalculateVertices(Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Vector2, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowUtility+ShadowMeshVertex, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--c0f203d8da3a5c5a2ea74f891c3f77ec
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.LowLevel.Unsafe.UnsafeStream+ConstructJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.LowLevel.Unsafe.UnsafeStream+ConstructJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--164a9957f2c75e5d4b481d1ceff90393
|
||||||
|
--method=UnityEngine.Rendering.LODGroupDataPoolBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::FreeLODGroupData(Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.LODGroupData, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.GPUInstanceIndex, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.GPUInstanceIndex, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--f5e11201c93244611b235bb9cbd6d39f
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.Rendering.PrefixSumDrawInstancesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.PrefixSumDrawInstancesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--8f37a29b850e64637b028e3529fedcf1
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeStreamDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeStreamDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--1d663b8d3110406501ef71e24cbc8c20
|
||||||
|
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.ParallelSortExtensions+RadixSortBucketSortJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.ParallelSortExtensions+RadixSortBucketSortJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--cf1f55f4d0e7ff667d7f2d581f72d66e
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.LowLevel.Unsafe.UnsafeParallelHashMapDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.LowLevel.Unsafe.UnsafeParallelHashMapDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--59142aef52ef9b6ab273da58974494a1
|
||||||
|
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.InstanceDataSystem+QueryRendererGroupInstancesCountJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+QueryRendererGroupInstancesCountJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--7cc5f3a00f14376bdb7c633e66b0a186
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.RegisterNewMaterialsJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.RegisterNewMaterialsJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--18315121a9f14c7140ec55ec386d5f0f
|
||||||
|
--method=UnityEngine.Rendering.GPUResidentDrawerBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::GetMaterialsWithChangedPackedMaterial(Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.GPUDrivenPackedMaterialData, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2+ReadOnly[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.GPUDrivenPackedMaterialData, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeHashSet`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--a7eb2129bbf8bd7104fae916867c0b01
|
||||||
|
--method=UnityEngine.Rendering.InstanceCullerBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::SetupCullingJobInput(System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|UnityEngine.Rendering.BatchCullingContext*, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.ReceiverPlanes*, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.ReceiverSphereCuller*, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.FrustumPlaneCuller*, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Single*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--9f30316e6bdfd8714f19313b7e23c0f5
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeQueueDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeQueueDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--68a8ea65a4f1ea752d1138be3be73a9a
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.GPUInstanceDataBufferUploader+WriteInstanceDataParameterJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.GPUInstanceDataBufferUploader+WriteInstanceDataParameterJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--980427a8dd28167a01719079bf496bbc
|
||||||
|
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::CalculateLocalBounds(Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Bounds&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--42aff6ac0d65367b7d84a9458dd461a7
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeHashMapDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeHashMapDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--027d1c28103a1381ae64161c5340b997
|
||||||
|
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::CalculateTriangles(Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--2c35c78b2a3680810635a43f22779691
|
||||||
|
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.FindMaterialDrawInstancesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.FindMaterialDrawInstancesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--64cd2249db1cd2827e4382c5f345d9c3
|
||||||
|
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.FindNonRegisteredMeshesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.FindNonRegisteredMeshesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--41653fbb2b01af86b92c23069361487d
|
||||||
|
--method=UnityEngine.Rendering.InstanceDataSystemBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::FreeRendererGroupInstances(Unity.Collections.NativeArray`1+ReadOnly[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.InstanceAllocators&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.CPUInstanceData&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.CPUSharedInstanceData&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelMultiHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.InstanceHandle, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--3b4428102ac29b8776e97bd2840b189b
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.LowLevel.Unsafe.UnsafeStream+ConstructJobList, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.LowLevel.Unsafe.UnsafeStream+ConstructJobList&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--428d454056b9288c93f4435d6e6f7fda
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.AllocateBinsPerBatch, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.AllocateBinsPerBatch&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--81d4349bbc49408c1d2f4889f8de4ccd
|
||||||
|
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.FindDrawInstancesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.FindDrawInstancesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--f9bbde7d6de2f38c236b20159d9a044a
|
||||||
|
--method=UnityEngine.U2D.Animation.BurstedSpriteSkinUtilities, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::SetVertexPositionFromByteBuffer(Unity.Collections.NativeArray`1[[System.Byte, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--d4015a9e8b68219132a23f8b001d93e7
|
||||||
|
--method=Unity.Collections.RewindableAllocator, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Try(System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.AllocatorManager+Block&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--cf20d690c33ab495d44c548cd6a31428
|
||||||
|
--method=UnityEngine.Rendering.InstanceCullingBatcherBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::CreateDrawBatches(System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.InstanceHandle, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.GPUDrivenRendererGroupData&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.BatchMeshID, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.BatchMaterialID, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.GPUDrivenPackedMaterialData, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[UnityEngine.Rendering.RangeKey, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null],[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.DrawRange, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[UnityEngine.Rendering.DrawKey, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null],[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.DrawBatch, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.DrawInstance, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--79a98841a9e88a9648a38b19b7e5260b
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.InstanceDataSystem+ScatterTetrahedronCacheIndicesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+ScatterTetrahedronCacheIndicesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--444a077de582689b80065c15567a7b1a
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.UnsafeQueueDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.UnsafeQueueDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--9158ad0c7b1f439e6e4b8e153f6320c3
|
||||||
|
--method=UnityEngine.U2D.Animation.MeshUtilities, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::AddToEdgeMap(Unity.Mathematics.int2&, Unity.Mathematics, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.LowLevel.Unsafe.UnsafeHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[Unity.Mathematics.int3, Unity.Mathematics, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--a42920ae257561a2ee8245f0ae6651ea
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeRingQueueDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeRingQueueDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--b223785fcbdbe4a27e2d3722e3db36c3
|
||||||
|
--method=UnityEngine.Rendering.InstanceDataSystemBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::ReallocateInstances(System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.GPUDrivenPackedRendererData, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.InstanceAllocators&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.CPUInstanceData&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.CPUSharedInstanceData&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.InstanceHandle, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelMultiHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.InstanceHandle, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--6cbc8b9fecd561aa69df18786402e579
|
||||||
|
--method=UnityEngine.Rendering.InstanceDataSystemBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::FreeInstances(Unity.Collections.NativeArray`1+ReadOnly[[UnityEngine.Rendering.InstanceHandle, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.InstanceAllocators&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.CPUInstanceData&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.CPUSharedInstanceData&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelMultiHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.InstanceHandle, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--70d01facf59184ab7d9b6bd2740b5132
|
||||||
|
--method=Unity.Collections.AllocatorManager+SlabAllocator, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Try(System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.AllocatorManager+Block&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--2434a4c10d01dbab5e7438b2b580d1d1
|
||||||
|
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.InstanceDataSystem+ProbesUpdateJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+ProbesUpdateJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--ee7932f2d26e0fb2075ceacb8fd2b910
|
||||||
|
--method=Unity.Collections.AllocatorManager+StackAllocator, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Try(System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.AllocatorManager+Block&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--478bf3abafa12cba2083fb45bca79b9c
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.Rendering.UpdatePackedMaterialDataCacheJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.UpdatePackedMaterialDataCacheJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--af2c1e0bcc7571bda3b5bca33403462e
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.SortJob`2+SegmentSortMerge[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[Unity.Collections.NativeSortExtension+DefaultComparer`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.SortJob`2+SegmentSortMerge[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[Unity.Collections.NativeSortExtension+DefaultComparer`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--2de7610275c816c1669b083b75290d16
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeTextDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeTextDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--760037f9e4b42ec56ef1759249aa8afe
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.CollectionHelper+DummyJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.CollectionHelper+DummyJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--660453e77e7446c547511a17e62a4458
|
||||||
|
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.InstanceDataSystem+QueryRendererGroupInstancesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+QueryRendererGroupInstancesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--40ec7fc52bbe67c54ccf3a25c016c022
|
||||||
|
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.InstanceDataSystem+QueryRendererGroupInstancesMultiJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+QueryRendererGroupInstancesMultiJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--26cbe08c7c0cc9c5beeb20459a4e562d
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.U2D.Animation.FillPerSkinJobSingleThread, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.FillPerSkinJobSingleThread&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--7194d9a68a20c1c6a01d3a365d4f21b9
|
||||||
|
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.FindNonRegisteredMaterialsJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.FindNonRegisteredMaterialsJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--06d34a132a763cc87a1b9dbd3092e8ea
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeStream+ConstructJobList, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeStream+ConstructJobList&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--959783104064e8c81fba5d33d94ead01
|
||||||
|
--method=UnityEngine.Jobs.IJobParallelForTransformExtensions+TransformParallelForLoopStruct`1[[UnityEngine.U2D.Animation.LocalToWorldTransformAccessJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.LocalToWorldTransformAccessJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--f9554e48e09171c93d417c182c09c36b
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.U2D.SpriteShapeGenerator, Unity.2D.SpriteShape.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.SpriteShapeGenerator&, Unity.2D.SpriteShape.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--a185c62eba2497c95197140e5282b27a
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.U2D.Animation.BoneDeformBatchedJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.BoneDeformBatchedJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--6d933222c5b0c0c915d062861958d408
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.InstanceDataSystem+CalculateInterpolatedLightAndOcclusionProbesBatchJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+CalculateInterpolatedLightAndOcclusionProbesBatchJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--f0c1de1e0e473dd1e2134aa9c2aedec8
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.UpdateLODGroupDataJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.UpdateLODGroupDataJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--5fdfeaf18115ebd7d5568447b4fcc068
|
||||||
|
--method=Unity.Collections.xxHash3, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Hash128Long(System.Byte*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Byte*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Int64, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Byte*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Mathematics.uint4&, Unity.Mathematics, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--fecfb57657b3f1d8498f6d1ebe10e110
|
||||||
|
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.InstanceDataSystem+UpdateCompactedInstanceVisibilityJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+UpdateCompactedInstanceVisibilityJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--db6d8428411f96db68c6d896350dcfe8
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.UnifiedRayTracing.ComputeTerrainMeshJob, Unity.Rendering.LightTransport.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.UnifiedRayTracing.ComputeTerrainMeshJob&, Unity.Rendering.LightTransport.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--a4b760b874bcc0dd6a3a8c57b4694fd0
|
||||||
|
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.GPUResidentDrawer+FindRenderersFromMaterialOrMeshJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.GPUResidentDrawer+FindRenderersFromMaterialOrMeshJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--2f7e0116d3410ede708e88fe612f7c45
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.InstanceDataSystem+MotionUpdateJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+MotionUpdateJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--8f778f1045e597de4fb57be76d58bf33
|
||||||
|
--method=Unity.Collections.AutoFreeAllocator, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Try(System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.AllocatorManager+Block&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--07fd39dcd121e0de66cd5435146dd2c2
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.U2D.Animation.CalculateSpriteSkinAABBJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.CalculateSpriteSkinAABBJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--122fae680333e8e2ba58f80110a0a78c
|
||||||
|
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::CalculateProjectionInfo(Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Vector2, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--843202c908bab7e5d293b945a4d70509
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.Rendering.PrefixSumDrawsAndInstances, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.PrefixSumDrawsAndInstances&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--209746fb9df6b9e66808d1c71bbb249b
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.Rendering.RemoveDrawInstanceIndicesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.RemoveDrawInstanceIndicesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--37865de3b54f1de9211580a333ee3519
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.U2D.Animation.SkinDeformBatchedJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.SkinDeformBatchedJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--aece0ca012db7ae9f82cc8b3c490870a
|
||||||
|
--method=UnityEngine.Rendering.GPUResidentDrawerBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::FindUnsupportedRenderers(Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1+ReadOnly[[UnityEngine.Rendering.SmallIntegerArray, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1+ReadOnly[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--daeac82c5bda0cec225f4b7eee5774e9
|
||||||
|
--method=UnityEngine.Rendering.InstanceCullingBatcherBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::RemoveDrawInstanceIndices(Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.DrawInstance, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[UnityEngine.Rendering.RangeKey, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null],[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[UnityEngine.Rendering.DrawKey, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null],[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.DrawRange, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.DrawBatch, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--7f9c693efd613feefc88a26bf6938ff5
|
||||||
|
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.ParallelSortExtensions+RadixSortPrefixSumJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.ParallelSortExtensions+RadixSortPrefixSumJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--e6a9132d09c113f0975355db1c7ee6e9
|
||||||
|
--method=UnityEngine.U2D.Animation.MeshUtilities, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::GetFirstUnusedIndex(Unity.Collections.NativeArray`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--7742443bc60e4cf32e2d83ea81ffbafd
|
||||||
|
--method=UnityEngine.Rendering.LODGroupDataPoolBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::AllocateOrGetLODGroupDataInstances(Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.LODGroupData, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.LODGroupCullingData, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.GPUInstanceIndex, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.GPUInstanceIndex, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.GPUInstanceIndex, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--b29d8af445855df3eafdddfe8da10cc4
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.LowLevel.Unsafe.UnsafeStream+DisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.LowLevel.Unsafe.UnsafeStream+DisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--ca60ab232d19a9f4380a530fa0d222cf
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.UpdateLODGroupTransformJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.UpdateLODGroupTransformJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--8a11958584e6d7f43fdafe25379de05d
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.LowLevel.Unsafe.UnsafeDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.LowLevel.Unsafe.UnsafeDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--276b96e48754d7f5ba865bd7f5b37c11
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.U2D.Animation.UpdateBoundJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.UpdateBoundJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--381a3a85c237f2f5ef34ba69d4bda072
|
||||||
|
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.InstanceDataSystem+GetVisibleNonProcessedTreeInstancesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+GetVisibleNonProcessedTreeInstancesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--956e4506a89021f60bea991d59455e85
|
||||||
|
--method=Unity.Burst.Intrinsics.X86, Unity.Burst, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::DoGetCSRTrampoline()--89425a97f3f500fa810ad03f0c382542
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.RegisterNewMeshesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.RegisterNewMeshesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--59481637653112fa89d3e6222e05e479
|
||||||
|
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.InstanceDataSystem+QuerySortedMeshInstancesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+QuerySortedMeshInstancesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--bfb92a5f7fd6b5fad55775a2d5c4b979
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.U2D.Animation.CopySpriteRendererBoneTransformBuffersJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.CopySpriteRendererBoneTransformBuffersJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--66b2bcfca35e34fcfd5d46be438048e2
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeStream+ConstructJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeStream+ConstructJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--b78f808503c8b5fe97a83e833bd5871d
|
||||||
|
--platform=Linux
|
||||||
|
--minimum-os-version=
|
||||||
|
--backend=burst-llvm-19
|
||||||
|
--target=AVX2
|
||||||
|
--global-safety-checks-setting=Off
|
||||||
|
--meta-data-generation=False
|
||||||
|
--dump=Function
|
||||||
|
--float-precision=Standard
|
||||||
|
--target-framework=NetFramework
|
||||||
|
--generate-link-xml=Temp\burst.link.xml
|
||||||
|
--temp-folder=F:\Projects\Unity\soccar2d_clone_0\Temp\Burst
|
||||||
|
--enable-frame-info-registration
|
||||||
|
--key-folder=C:/Program Files/Unity/Hub/Editor/6000.0.59f2/Editor/Data/PlaybackEngines/LinuxStandaloneSupport
|
||||||
|
--decode-folder=F:\Projects\Unity\soccar2d_clone_0\Library\Burst
|
||||||
|
--output=F:\Projects\Unity\soccar2d_clone_0\Temp\BurstOutput\Data\Plugins\lib_burst_generated
|
||||||
|
--pdb-search-paths=Temp/ManagedSymbols/
|
||||||
|
|
||||||
|
--method=UnityEngine.Rendering.GPUResidentDrawerBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::ClassifyMaterials(Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2+ReadOnly[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.BatchMaterialID, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.GPUDrivenPackedMaterialData, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--f259e9421b556600f769263137cdc7bc
|
||||||
|
--method=Unity.Burst.BurstCompiler+BurstCompilerHelper, Unity.Burst, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::IsBurstEnabled()--8c2be93e18276203cbd918daa2748a10
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.GPUInstanceDataBuffer+ConvertCPUInstancesToGPUInstancesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.GPUInstanceDataBuffer+ConvertCPUInstancesToGPUInstancesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--a917331aad44b603aa293fb2ddd84845
|
||||||
|
--method=UnityEngine.U2D.SpriteShapeGenerator, Unity.2D.SpriteShape.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::UTessellator(UnityEngine.U2D.SpriteShapeSegment&, UnityEngine.SpriteShapeModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Mathematics.float2*, Unity.Mathematics, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.UInt16*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Int32&, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Byte*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Int32&, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.Allocator, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--94c3dddf0a01c005fa80e8018c52f749
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.DrawCommandOutputPerBatch, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.DrawCommandOutputPerBatch&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--f531652faf1e45081f68869b8a72d6da
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[Unity.Collections.SortJob`2+SegmentSort[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[Unity.Collections.NativeSortExtension+DefaultComparer`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.SortJob`2+SegmentSort[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[Unity.Collections.NativeSortExtension+DefaultComparer`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--82ff8baa2abd920945d7abccccedb808
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.InstanceDataSystem+UpdateRendererInstancesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+UpdateRendererInstancesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--629364e44aefad191e287c15b5f1415d
|
||||||
|
--method=UnityEngine.U2D.Animation.MeshUtilities, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::SortEdges(Unity.Collections.NativeArray`1[[Unity.Mathematics.int2, Unity.Mathematics, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[Unity.Mathematics.int2, Unity.Mathematics, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--7d7fc0f22a40281b2a74b3a9c5da3e3c
|
||||||
|
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.ParallelSortExtensions+RadixSortBatchPrefixSumJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.ParallelSortExtensions+RadixSortBatchPrefixSumJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--f94f7ff99dd2661c4fa8531d62e9b853
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.BuildDrawListsJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.BuildDrawListsJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--482aa17deb765720c35123ea290985cd
|
||||||
|
--method=Unity.Collections.xxHash3, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Hash64Long(System.Byte*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Byte*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Int64, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Byte*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--93df17b7366cd622dfa5ea2d3c75cf0b
|
||||||
|
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.InstanceDataSystem+TransformUpdateJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+TransformUpdateJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--627895236a7055248a171dd760154a74
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.Rendering.InstanceDataSystem+ComputeInstancesOffsetAndResizeInstancesArrayJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+ComputeInstancesOffsetAndResizeInstancesArrayJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--e1a600a5b1122626d6f5840453636d73
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.U2D.Animation.CopySpriteRendererBuffersJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.CopySpriteRendererBuffersJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--2b06055de97035295dc032db19a3a735
|
||||||
|
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.CompactVisibilityMasksJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.CompactVisibilityMasksJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--77623b226a0d9b2add0602da4c23b102
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeBitArrayDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeBitArrayDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--9ec4cbd609d0ce32be9a43e477fa08be
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeListDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeListDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--4a1dc7df3f09b836e86a41d0d8fb4229
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.InstanceDataSystem+CollectInstancesLODGroupsAndMasksJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+CollectInstancesLODGroupsAndMasksJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--ad994327679b3c3b4b2057afe8015412
|
||||||
|
--method=UnityEngine.Jobs.IJobParallelForTransformExtensions+TransformParallelForLoopStruct`1[[UnityEngine.U2D.Animation.WorldToLocalTransformAccessJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.WorldToLocalTransformAccessJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--b0197e8b2118e6410ef3f798b24a1e6e
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.LowLevel.Unsafe.UnsafeParallelHashMapDataDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.LowLevel.Unsafe.UnsafeParallelHashMapDataDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--36a800eeeae3c643da5520fa383c8c70
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.CullingJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.CullingJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--43818c1b0c11124717e9257b630efd6f
|
||||||
|
--method=UnityEngine.U2D.Animation.BurstedSpriteSkinUtilities, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::ValidateBoneWeights(UnityEngine.U2D.Animation.NativeCustomSlice`1[[UnityEngine.BoneWeight, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--9425db96a9fb33479746c6501570455e
|
||||||
|
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.ParallelSortExtensions+RadixSortBucketCountJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.ParallelSortExtensions+RadixSortBucketCountJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--ec632d4d28f4ff494fdc1e6f91b50bde
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeReferenceDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeReferenceDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--baf840f8150b604b0fd300ceb19dd50e
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.U2D.Animation.PrepareDeformJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.PrepareDeformJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--a10c29fb1a626a4dab6bf90980926746
|
||||||
|
--method=Unity.Burst.Intrinsics.X86, Unity.Burst, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::DoSetCSRTrampoline(System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--da352d92cabf024fc9986011d52a4537
|
||||||
|
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::CalculateVertices(Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Vector2, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowUtility+ShadowMeshVertex, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--c0f203d8da3a5c5a2ea74f891c3f77ec
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.LowLevel.Unsafe.UnsafeStream+ConstructJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.LowLevel.Unsafe.UnsafeStream+ConstructJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--164a9957f2c75e5d4b481d1ceff90393
|
||||||
|
--method=UnityEngine.Rendering.LODGroupDataPoolBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::FreeLODGroupData(Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.LODGroupData, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.GPUInstanceIndex, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.GPUInstanceIndex, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--f5e11201c93244611b235bb9cbd6d39f
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.Rendering.PrefixSumDrawInstancesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.PrefixSumDrawInstancesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--8f37a29b850e64637b028e3529fedcf1
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeStreamDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeStreamDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--1d663b8d3110406501ef71e24cbc8c20
|
||||||
|
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.ParallelSortExtensions+RadixSortBucketSortJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.ParallelSortExtensions+RadixSortBucketSortJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--cf1f55f4d0e7ff667d7f2d581f72d66e
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.LowLevel.Unsafe.UnsafeParallelHashMapDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.LowLevel.Unsafe.UnsafeParallelHashMapDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--59142aef52ef9b6ab273da58974494a1
|
||||||
|
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.InstanceDataSystem+QueryRendererGroupInstancesCountJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+QueryRendererGroupInstancesCountJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--7cc5f3a00f14376bdb7c633e66b0a186
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.RegisterNewMaterialsJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.RegisterNewMaterialsJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--18315121a9f14c7140ec55ec386d5f0f
|
||||||
|
--method=UnityEngine.Rendering.GPUResidentDrawerBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::GetMaterialsWithChangedPackedMaterial(Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.GPUDrivenPackedMaterialData, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2+ReadOnly[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.GPUDrivenPackedMaterialData, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeHashSet`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--a7eb2129bbf8bd7104fae916867c0b01
|
||||||
|
--method=UnityEngine.Rendering.InstanceCullerBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::SetupCullingJobInput(System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|UnityEngine.Rendering.BatchCullingContext*, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.ReceiverPlanes*, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.ReceiverSphereCuller*, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.FrustumPlaneCuller*, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Single*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--9f30316e6bdfd8714f19313b7e23c0f5
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeQueueDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeQueueDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--68a8ea65a4f1ea752d1138be3be73a9a
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.GPUInstanceDataBufferUploader+WriteInstanceDataParameterJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.GPUInstanceDataBufferUploader+WriteInstanceDataParameterJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--980427a8dd28167a01719079bf496bbc
|
||||||
|
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::CalculateLocalBounds(Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Bounds&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--42aff6ac0d65367b7d84a9458dd461a7
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeHashMapDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeHashMapDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--027d1c28103a1381ae64161c5340b997
|
||||||
|
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::CalculateTriangles(Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--2c35c78b2a3680810635a43f22779691
|
||||||
|
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.FindMaterialDrawInstancesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.FindMaterialDrawInstancesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--64cd2249db1cd2827e4382c5f345d9c3
|
||||||
|
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.FindNonRegisteredMeshesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.FindNonRegisteredMeshesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--41653fbb2b01af86b92c23069361487d
|
||||||
|
--method=UnityEngine.Rendering.InstanceDataSystemBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::FreeRendererGroupInstances(Unity.Collections.NativeArray`1+ReadOnly[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.InstanceAllocators&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.CPUInstanceData&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.CPUSharedInstanceData&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelMultiHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.InstanceHandle, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--3b4428102ac29b8776e97bd2840b189b
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.LowLevel.Unsafe.UnsafeStream+ConstructJobList, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.LowLevel.Unsafe.UnsafeStream+ConstructJobList&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--428d454056b9288c93f4435d6e6f7fda
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.AllocateBinsPerBatch, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.AllocateBinsPerBatch&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--81d4349bbc49408c1d2f4889f8de4ccd
|
||||||
|
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.FindDrawInstancesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.FindDrawInstancesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--f9bbde7d6de2f38c236b20159d9a044a
|
||||||
|
--method=UnityEngine.U2D.Animation.BurstedSpriteSkinUtilities, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::SetVertexPositionFromByteBuffer(Unity.Collections.NativeArray`1[[System.Byte, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--d4015a9e8b68219132a23f8b001d93e7
|
||||||
|
--method=Unity.Collections.RewindableAllocator, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Try(System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.AllocatorManager+Block&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--cf20d690c33ab495d44c548cd6a31428
|
||||||
|
--method=UnityEngine.Rendering.InstanceCullingBatcherBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::CreateDrawBatches(System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.InstanceHandle, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.GPUDrivenRendererGroupData&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.BatchMeshID, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.BatchMaterialID, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.GPUDrivenPackedMaterialData, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[UnityEngine.Rendering.RangeKey, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null],[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.DrawRange, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[UnityEngine.Rendering.DrawKey, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null],[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.DrawBatch, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.DrawInstance, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--79a98841a9e88a9648a38b19b7e5260b
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.InstanceDataSystem+ScatterTetrahedronCacheIndicesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+ScatterTetrahedronCacheIndicesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--444a077de582689b80065c15567a7b1a
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.UnsafeQueueDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.UnsafeQueueDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--9158ad0c7b1f439e6e4b8e153f6320c3
|
||||||
|
--method=UnityEngine.U2D.Animation.MeshUtilities, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::AddToEdgeMap(Unity.Mathematics.int2&, Unity.Mathematics, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.LowLevel.Unsafe.UnsafeHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[Unity.Mathematics.int3, Unity.Mathematics, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--a42920ae257561a2ee8245f0ae6651ea
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeRingQueueDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeRingQueueDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--b223785fcbdbe4a27e2d3722e3db36c3
|
||||||
|
--method=UnityEngine.Rendering.InstanceDataSystemBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::ReallocateInstances(System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.GPUDrivenPackedRendererData, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.InstanceAllocators&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.CPUInstanceData&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.CPUSharedInstanceData&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.InstanceHandle, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelMultiHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.InstanceHandle, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--6cbc8b9fecd561aa69df18786402e579
|
||||||
|
--method=UnityEngine.Rendering.InstanceDataSystemBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::FreeInstances(Unity.Collections.NativeArray`1+ReadOnly[[UnityEngine.Rendering.InstanceHandle, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.InstanceAllocators&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.CPUInstanceData&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|UnityEngine.Rendering.CPUSharedInstanceData&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelMultiHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.InstanceHandle, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--70d01facf59184ab7d9b6bd2740b5132
|
||||||
|
--method=Unity.Collections.AllocatorManager+SlabAllocator, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Try(System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.AllocatorManager+Block&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--2434a4c10d01dbab5e7438b2b580d1d1
|
||||||
|
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.InstanceDataSystem+ProbesUpdateJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+ProbesUpdateJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--ee7932f2d26e0fb2075ceacb8fd2b910
|
||||||
|
--method=Unity.Collections.AllocatorManager+StackAllocator, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Try(System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.AllocatorManager+Block&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--478bf3abafa12cba2083fb45bca79b9c
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.Rendering.UpdatePackedMaterialDataCacheJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.UpdatePackedMaterialDataCacheJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--af2c1e0bcc7571bda3b5bca33403462e
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.SortJob`2+SegmentSortMerge[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[Unity.Collections.NativeSortExtension+DefaultComparer`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.SortJob`2+SegmentSortMerge[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[Unity.Collections.NativeSortExtension+DefaultComparer`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--2de7610275c816c1669b083b75290d16
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeTextDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeTextDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--760037f9e4b42ec56ef1759249aa8afe
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.CollectionHelper+DummyJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.CollectionHelper+DummyJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--660453e77e7446c547511a17e62a4458
|
||||||
|
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.InstanceDataSystem+QueryRendererGroupInstancesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+QueryRendererGroupInstancesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--40ec7fc52bbe67c54ccf3a25c016c022
|
||||||
|
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.InstanceDataSystem+QueryRendererGroupInstancesMultiJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+QueryRendererGroupInstancesMultiJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--26cbe08c7c0cc9c5beeb20459a4e562d
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.U2D.Animation.FillPerSkinJobSingleThread, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.FillPerSkinJobSingleThread&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--7194d9a68a20c1c6a01d3a365d4f21b9
|
||||||
|
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.FindNonRegisteredMaterialsJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.FindNonRegisteredMaterialsJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--06d34a132a763cc87a1b9dbd3092e8ea
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeStream+ConstructJobList, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeStream+ConstructJobList&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--959783104064e8c81fba5d33d94ead01
|
||||||
|
--method=UnityEngine.Jobs.IJobParallelForTransformExtensions+TransformParallelForLoopStruct`1[[UnityEngine.U2D.Animation.LocalToWorldTransformAccessJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.LocalToWorldTransformAccessJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--f9554e48e09171c93d417c182c09c36b
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.U2D.SpriteShapeGenerator, Unity.2D.SpriteShape.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.SpriteShapeGenerator&, Unity.2D.SpriteShape.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--a185c62eba2497c95197140e5282b27a
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.U2D.Animation.BoneDeformBatchedJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.BoneDeformBatchedJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--6d933222c5b0c0c915d062861958d408
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.InstanceDataSystem+CalculateInterpolatedLightAndOcclusionProbesBatchJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+CalculateInterpolatedLightAndOcclusionProbesBatchJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--f0c1de1e0e473dd1e2134aa9c2aedec8
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.UpdateLODGroupDataJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.UpdateLODGroupDataJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--5fdfeaf18115ebd7d5568447b4fcc068
|
||||||
|
--method=Unity.Collections.xxHash3, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Hash128Long(System.Byte*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Byte*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Int64, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Byte*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Mathematics.uint4&, Unity.Mathematics, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--fecfb57657b3f1d8498f6d1ebe10e110
|
||||||
|
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.InstanceDataSystem+UpdateCompactedInstanceVisibilityJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+UpdateCompactedInstanceVisibilityJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--db6d8428411f96db68c6d896350dcfe8
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.UnifiedRayTracing.ComputeTerrainMeshJob, Unity.Rendering.LightTransport.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.UnifiedRayTracing.ComputeTerrainMeshJob&, Unity.Rendering.LightTransport.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--a4b760b874bcc0dd6a3a8c57b4694fd0
|
||||||
|
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.GPUResidentDrawer+FindRenderersFromMaterialOrMeshJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.GPUResidentDrawer+FindRenderersFromMaterialOrMeshJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--2f7e0116d3410ede708e88fe612f7c45
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.InstanceDataSystem+MotionUpdateJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+MotionUpdateJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--8f778f1045e597de4fb57be76d58bf33
|
||||||
|
--method=Unity.Collections.AutoFreeAllocator, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Try(System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.AllocatorManager+Block&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--07fd39dcd121e0de66cd5435146dd2c2
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.U2D.Animation.CalculateSpriteSkinAABBJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.CalculateSpriteSkinAABBJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--122fae680333e8e2ba58f80110a0a78c
|
||||||
|
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::CalculateProjectionInfo(Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Vector2, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--843202c908bab7e5d293b945a4d70509
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.Rendering.PrefixSumDrawsAndInstances, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.PrefixSumDrawsAndInstances&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--209746fb9df6b9e66808d1c71bbb249b
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.Rendering.RemoveDrawInstanceIndicesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.RemoveDrawInstanceIndicesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--37865de3b54f1de9211580a333ee3519
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.U2D.Animation.SkinDeformBatchedJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.SkinDeformBatchedJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--aece0ca012db7ae9f82cc8b3c490870a
|
||||||
|
--method=UnityEngine.Rendering.GPUResidentDrawerBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::FindUnsupportedRenderers(Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1+ReadOnly[[UnityEngine.Rendering.SmallIntegerArray, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1+ReadOnly[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--daeac82c5bda0cec225f4b7eee5774e9
|
||||||
|
--method=UnityEngine.Rendering.InstanceCullingBatcherBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::RemoveDrawInstanceIndices(Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.DrawInstance, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[UnityEngine.Rendering.RangeKey, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null],[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[UnityEngine.Rendering.DrawKey, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null],[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.DrawRange, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.DrawBatch, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--7f9c693efd613feefc88a26bf6938ff5
|
||||||
|
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.ParallelSortExtensions+RadixSortPrefixSumJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.ParallelSortExtensions+RadixSortPrefixSumJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--e6a9132d09c113f0975355db1c7ee6e9
|
||||||
|
--method=UnityEngine.U2D.Animation.MeshUtilities, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::GetFirstUnusedIndex(Unity.Collections.NativeArray`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--7742443bc60e4cf32e2d83ea81ffbafd
|
||||||
|
--method=UnityEngine.Rendering.LODGroupDataPoolBurst, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::AllocateOrGetLODGroupDataInstances(Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.LODGroupData, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.LODGroupCullingData, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeParallelHashMap`2[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[UnityEngine.Rendering.GPUInstanceIndex, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeList`1[[UnityEngine.Rendering.GPUInstanceIndex, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.GPUInstanceIndex, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--b29d8af445855df3eafdddfe8da10cc4
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.LowLevel.Unsafe.UnsafeStream+DisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.LowLevel.Unsafe.UnsafeStream+DisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--ca60ab232d19a9f4380a530fa0d222cf
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.UpdateLODGroupTransformJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.UpdateLODGroupTransformJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--8a11958584e6d7f43fdafe25379de05d
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.LowLevel.Unsafe.UnsafeDisposeJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.LowLevel.Unsafe.UnsafeDisposeJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--276b96e48754d7f5ba865bd7f5b37c11
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.U2D.Animation.UpdateBoundJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.UpdateBoundJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--381a3a85c237f2f5ef34ba69d4bda072
|
||||||
|
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.InstanceDataSystem+GetVisibleNonProcessedTreeInstancesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+GetVisibleNonProcessedTreeInstancesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--956e4506a89021f60bea991d59455e85
|
||||||
|
--method=Unity.Burst.Intrinsics.X86, Unity.Burst, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::DoGetCSRTrampoline()--89425a97f3f500fa810ad03f0c382542
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.Rendering.RegisterNewMeshesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.RegisterNewMeshesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--59481637653112fa89d3e6222e05e479
|
||||||
|
--method=Unity.Jobs.IJobParallelForBatchExtensions+JobParallelForBatchProducer`1[[UnityEngine.Rendering.InstanceDataSystem+QuerySortedMeshInstancesJob, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.InstanceDataSystem+QuerySortedMeshInstancesJob&, Unity.RenderPipelines.GPUDriven.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--bfb92a5f7fd6b5fad55775a2d5c4b979
|
||||||
|
--method=Unity.Jobs.IJobParallelForExtensions+ParallelForJobStruct`1[[UnityEngine.U2D.Animation.CopySpriteRendererBoneTransformBuffersJob, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.U2D.Animation.CopySpriteRendererBoneTransformBuffersJob&, Unity.2D.Animation.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--66b2bcfca35e34fcfd5d46be438048e2
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[Unity.Collections.NativeStream+ConstructJob, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(Unity.Collections.NativeStream+ConstructJob&, Unity.Collections, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--b78f808503c8b5fe97a83e833bd5871d
|
||||||
|
--platform=Linux
|
||||||
|
--minimum-os-version=
|
||||||
|
--backend=burst-llvm-19
|
||||||
|
--target=X64_SSE2
|
||||||
|
--global-safety-checks-setting=Off
|
||||||
|
--disable-safety-checks
|
||||||
|
--meta-data-generation=False
|
||||||
|
--dump=Function
|
||||||
|
--float-precision=Standard
|
||||||
|
--target-framework=NetFramework
|
||||||
|
--float-mode=Fast
|
||||||
|
--generate-link-xml=Temp\burst.link.xml
|
||||||
|
--temp-folder=F:\Projects\Unity\soccar2d_clone_0\Temp\Burst
|
||||||
|
--enable-frame-info-registration
|
||||||
|
--key-folder=C:/Program Files/Unity/Hub/Editor/6000.0.59f2/Editor/Data/PlaybackEngines/LinuxStandaloneSupport
|
||||||
|
--decode-folder=F:\Projects\Unity\soccar2d_clone_0\Library\Burst
|
||||||
|
--output=F:\Projects\Unity\soccar2d_clone_0\Temp\BurstOutput\Data\Plugins\lib_burst_generated
|
||||||
|
--pdb-search-paths=Temp/ManagedSymbols/
|
||||||
|
|
||||||
|
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.Universal.ZBinningJob, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.Universal.ZBinningJob&, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--77fc393cb521ac129b1392d4eb94d29a
|
||||||
|
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.Universal.TileRangeExpansionJob, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.Universal.TileRangeExpansionJob&, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--adceb2156d08d59afc9749dc2521fd2b
|
||||||
|
--platform=Linux
|
||||||
|
--minimum-os-version=
|
||||||
|
--backend=burst-llvm-19
|
||||||
|
--target=AVX2
|
||||||
|
--global-safety-checks-setting=Off
|
||||||
|
--disable-safety-checks
|
||||||
|
--meta-data-generation=False
|
||||||
|
--dump=Function
|
||||||
|
--float-precision=Standard
|
||||||
|
--target-framework=NetFramework
|
||||||
|
--float-mode=Fast
|
||||||
|
--generate-link-xml=Temp\burst.link.xml
|
||||||
|
--temp-folder=F:\Projects\Unity\soccar2d_clone_0\Temp\Burst
|
||||||
|
--enable-frame-info-registration
|
||||||
|
--key-folder=C:/Program Files/Unity/Hub/Editor/6000.0.59f2/Editor/Data/PlaybackEngines/LinuxStandaloneSupport
|
||||||
|
--decode-folder=F:\Projects\Unity\soccar2d_clone_0\Library\Burst
|
||||||
|
--output=F:\Projects\Unity\soccar2d_clone_0\Temp\BurstOutput\Data\Plugins\lib_burst_generated
|
||||||
|
--pdb-search-paths=Temp/ManagedSymbols/
|
||||||
|
|
||||||
|
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.Universal.ZBinningJob, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.Universal.ZBinningJob&, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--77fc393cb521ac129b1392d4eb94d29a
|
||||||
|
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.Universal.TileRangeExpansionJob, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.Universal.TileRangeExpansionJob&, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--adceb2156d08d59afc9749dc2521fd2b
|
||||||
|
--platform=Linux
|
||||||
|
--minimum-os-version=
|
||||||
|
--backend=burst-llvm-19
|
||||||
|
--target=X64_SSE2
|
||||||
|
--global-safety-checks-setting=Off
|
||||||
|
--meta-data-generation=False
|
||||||
|
--dump=Function
|
||||||
|
--float-precision=Standard
|
||||||
|
--target-framework=NetFramework
|
||||||
|
--generate-link-xml=Temp\burst.link.xml
|
||||||
|
--temp-folder=F:\Projects\Unity\soccar2d_clone_0\Temp\Burst
|
||||||
|
--enable-frame-info-registration
|
||||||
|
--key-folder=C:/Program Files/Unity/Hub/Editor/6000.0.59f2/Editor/Data/PlaybackEngines/LinuxStandaloneSupport
|
||||||
|
--decode-folder=F:\Projects\Unity\soccar2d_clone_0\Library\Burst
|
||||||
|
--output=F:\Projects\Unity\soccar2d_clone_0\Temp\BurstOutput\Data\Plugins\lib_burst_generated
|
||||||
|
--pdb-search-paths=Temp/ManagedSymbols/
|
||||||
|
|
||||||
|
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::GetVertexReferenceStats(Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Boolean&, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Int32&, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowUtility+RemappingInfo, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--988a40d3aa93620eb189303886118f02
|
||||||
|
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::CalculateEdgesFromLines(Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--a6d65874e98f4719cd829230df3e2d32
|
||||||
|
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::ClipEdges(Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--c08293264b30953ea71a17b5583decd0
|
||||||
|
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::ReverseWindingOrder(Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--579647f853f6ee5654b7a57f6a2705bb
|
||||||
|
--method=UnityEngine.Jobs.IJobParallelForTransformExtensions+TransformParallelForLoopStruct`1[[UnityEngine.Rendering.Universal.DecalUpdateCachedSystem+UpdateTransformsJob, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.Universal.DecalUpdateCachedSystem+UpdateTransformsJob&, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--670478f3fb3f285eeace534fbe61a03e
|
||||||
|
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::CalculateEdgesFromTriangles(Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--3bfa5fda442fd5668eedd331d03bfb27
|
||||||
|
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.Universal.ReflectionProbeMinMaxZJob, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.Universal.ReflectionProbeMinMaxZJob&, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--fbc079948c97a98cd097eb9cc996cc4a
|
||||||
|
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.Universal.TilingJob, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.Universal.TilingJob&, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--a6f5259e22ed809ef3937424c4bd686d
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.Rendering.Universal.DecalCreateDrawCallSystem+DrawCallJob, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.Universal.DecalCreateDrawCallSystem+DrawCallJob&, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--aa309157da5950aa53ed6075709e6e40
|
||||||
|
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.Universal.LightMinMaxZJob, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.Universal.LightMinMaxZJob&, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--2230a143748f5ecbc3a89a75bf0ad747
|
||||||
|
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::GenerateInteriorMesh(Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowUtility+ShadowMeshVertex, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowUtility+ShadowMeshVertex, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32&, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Int32&, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--7f134032f58654d1a1e32b15afeb1ca9
|
||||||
|
--platform=Linux
|
||||||
|
--minimum-os-version=
|
||||||
|
--backend=burst-llvm-19
|
||||||
|
--target=AVX2
|
||||||
|
--global-safety-checks-setting=Off
|
||||||
|
--meta-data-generation=False
|
||||||
|
--dump=Function
|
||||||
|
--float-precision=Standard
|
||||||
|
--target-framework=NetFramework
|
||||||
|
--generate-link-xml=Temp\burst.link.xml
|
||||||
|
--temp-folder=F:\Projects\Unity\soccar2d_clone_0\Temp\Burst
|
||||||
|
--enable-frame-info-registration
|
||||||
|
--key-folder=C:/Program Files/Unity/Hub/Editor/6000.0.59f2/Editor/Data/PlaybackEngines/LinuxStandaloneSupport
|
||||||
|
--decode-folder=F:\Projects\Unity\soccar2d_clone_0\Library\Burst
|
||||||
|
--output=F:\Projects\Unity\soccar2d_clone_0\Temp\BurstOutput\Data\Plugins\lib_burst_generated
|
||||||
|
--pdb-search-paths=Temp/ManagedSymbols/
|
||||||
|
|
||||||
|
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::GetVertexReferenceStats(Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Boolean&, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Int32&, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowUtility+RemappingInfo, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--988a40d3aa93620eb189303886118f02
|
||||||
|
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::CalculateEdgesFromLines(Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--a6d65874e98f4719cd829230df3e2d32
|
||||||
|
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::ClipEdges(Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--c08293264b30953ea71a17b5583decd0
|
||||||
|
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::ReverseWindingOrder(Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--579647f853f6ee5654b7a57f6a2705bb
|
||||||
|
--method=UnityEngine.Jobs.IJobParallelForTransformExtensions+TransformParallelForLoopStruct`1[[UnityEngine.Rendering.Universal.DecalUpdateCachedSystem+UpdateTransformsJob, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.Universal.DecalUpdateCachedSystem+UpdateTransformsJob&, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--670478f3fb3f285eeace534fbe61a03e
|
||||||
|
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::CalculateEdgesFromTriangles(Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Collections.NativeArray`1[[UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)--3bfa5fda442fd5668eedd331d03bfb27
|
||||||
|
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.Universal.ReflectionProbeMinMaxZJob, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.Universal.ReflectionProbeMinMaxZJob&, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--fbc079948c97a98cd097eb9cc996cc4a
|
||||||
|
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.Universal.TilingJob, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.Universal.TilingJob&, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--a6f5259e22ed809ef3937424c4bd686d
|
||||||
|
--method=Unity.Jobs.IJobExtensions+JobStruct`1[[UnityEngine.Rendering.Universal.DecalCreateDrawCallSystem+DrawCallJob, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.Universal.DecalCreateDrawCallSystem+DrawCallJob&, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--aa309157da5950aa53ed6075709e6e40
|
||||||
|
--method=Unity.Jobs.IJobForExtensions+ForJobStruct`1[[UnityEngine.Rendering.Universal.LightMinMaxZJob, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::Execute(UnityEngine.Rendering.Universal.LightMinMaxZJob&, Unity.RenderPipelines.Universal.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.IntPtr, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|Unity.Jobs.LowLevel.Unsafe.JobRanges&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--2230a143748f5ecbc3a89a75bf0ad747
|
||||||
|
--method=UnityEngine.Rendering.Universal.ShadowUtility, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null::GenerateInteriorMesh(Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowUtility+ShadowMeshVertex, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowEdge, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[UnityEngine.Rendering.Universal.ShadowUtility+ShadowMeshVertex, Unity.RenderPipelines.Universal.2D.Runtime, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Unity.Collections.NativeArray`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]&, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|System.Int32&, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089|System.Int32&, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)--7f134032f58654d1a1e32b15afeb1ca9
|
||||||
|
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
Logger initiated at 9/4/2026 4:55:07 PM
|
||||||
|
|
||||||
|
[9/4/2026 4:55:07 PM] Configured dedicated match reporting for match id 606 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base https://kkapi.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,24 @@
|
|||||||
|
[06/02/2026 08:36:50] Starting server at port 26393
|
||||||
|
[06/02/2026 08:36:50] Mirror server exception logging enabled
|
||||||
|
[06/02/2026 08:36:50] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/02/2026 08:36:50] Starting auto close watchdog
|
||||||
|
[06/02/2026 08:36:50] Active player connections: 0
|
||||||
|
[06/02/2026 08:36:54] Active player connections: 1
|
||||||
|
[06/02/2026 08:36:54] Client 15 set team to Blue
|
||||||
|
[06/02/2026 08:36:55] Dedicated match PATCH success: 200 {"ok":true,"id":147}
|
||||||
|
[06/02/2026 08:36:55] Active player connections: 2
|
||||||
|
[06/02/2026 08:36:55] Game started On Server
|
||||||
|
[06/02/2026 08:36:56] Client 16 set team to Red
|
||||||
|
[06/02/2026 08:36:56] Dedicated match PATCH success: 200 {"ok":true,"id":147}
|
||||||
|
[06/02/2026 08:37:34] Mirror server: client disconnected (connId=1441821541)
|
||||||
|
[06/02/2026 08:37:34] Active player connections: 1
|
||||||
|
[06/02/2026 08:37:36] Mirror server: client disconnected (connId=1441799581)
|
||||||
|
[06/02/2026 08:37:36] Active player connections: 0
|
||||||
|
[06/02/2026 08:37:41] Server will be closed due to no players in, 60
|
||||||
|
[06/02/2026 08:37:51] Server will be closed due to no players in, 50
|
||||||
|
[06/02/2026 08:38:01] Server will be closed due to no players in, 40
|
||||||
|
[06/02/2026 08:38:11] Server will be closed due to no players in, 30
|
||||||
|
[06/02/2026 08:38:21] Server will be closed due to no players in, 20
|
||||||
|
[06/02/2026 08:38:31] Server will be closed due to no players in, 10
|
||||||
|
[06/02/2026 08:38:41] All players left, exiting
|
||||||
|
[06/02/2026 08:38:42] Dedicated match PATCH success: 200 {"ok":true,"id":147}
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
[06/02/2026 08:53:05] Starting server at port 26544
|
||||||
|
[06/02/2026 08:53:05] Mirror server exception logging enabled
|
||||||
|
[06/02/2026 08:53:05] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/02/2026 08:53:05] Starting auto close watchdog
|
||||||
|
[06/02/2026 08:53:06] Active player connections: 0
|
||||||
|
[06/02/2026 08:53:08] Active player connections: 1
|
||||||
|
[06/02/2026 08:53:08] Client 15 set team to Blue
|
||||||
|
[06/02/2026 08:53:09] Active player connections: 2
|
||||||
|
[06/02/2026 08:53:09] Game started On Server
|
||||||
|
[06/02/2026 08:53:09] Dedicated match PATCH success: 200 {"ok":true,"id":148}
|
||||||
|
[06/02/2026 08:53:09] Client 16 set team to Red
|
||||||
|
[06/02/2026 08:53:10] Dedicated match PATCH success: 200 {"ok":true,"id":148}
|
||||||
|
[06/02/2026 08:53:14] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/02/2026 08:53:14] launching puck at (4.62, -1.91) with (-322.08, 132.97) force
|
||||||
|
[06/02/2026 09:02:40] Mirror server: client disconnected (connId=1441823526)
|
||||||
|
[06/02/2026 09:02:40] Active player connections: 1
|
||||||
|
[06/02/2026 09:02:44] Mirror server: client disconnected (connId=1441823525)
|
||||||
|
[06/02/2026 09:02:44] Active player connections: 0
|
||||||
|
[06/02/2026 09:02:49] Server will be closed due to no players in, 60
|
||||||
|
[06/02/2026 09:02:59] Server will be closed due to no players in, 50
|
||||||
|
[06/02/2026 09:03:09] Server will be closed due to no players in, 40
|
||||||
|
[06/02/2026 09:03:19] Server will be closed due to no players in, 30
|
||||||
|
[06/02/2026 09:03:29] Server will be closed due to no players in, 20
|
||||||
|
[06/02/2026 09:03:39] Server will be closed due to no players in, 10
|
||||||
|
[06/02/2026 09:03:49] All players left, exiting
|
||||||
|
[06/02/2026 09:03:50] Dedicated match PATCH success: 200 {"ok":true,"id":148}
|
||||||
@@ -0,0 +1,157 @@
|
|||||||
|
[06/07/2026 01:43:43] Starting server at port 26591
|
||||||
|
[06/07/2026 01:43:43] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 01:43:43] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 01:43:43] Starting auto close watchdog
|
||||||
|
[06/07/2026 01:43:43] Active player connections: 0
|
||||||
|
[06/07/2026 01:43:45] Active player connections: 1
|
||||||
|
[06/07/2026 01:43:45] Client 15 set team to Blue
|
||||||
|
[06/07/2026 01:43:45] Active player connections: 2
|
||||||
|
[06/07/2026 01:43:45] Game started On Server
|
||||||
|
[06/07/2026 01:43:45] Client 16 set team to Red
|
||||||
|
[06/07/2026 01:43:46] Dedicated match PATCH success: 200 {"ok":true,"id":149}
|
||||||
|
[06/07/2026 01:43:46] Dedicated match PATCH success: 200 {"ok":true,"id":149}
|
||||||
|
[06/07/2026 01:43:58] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:43:58] launching puck at (2.06, 4.55) with (-143.78, -317.40) force
|
||||||
|
[06/07/2026 01:44:22] Client 15 sent text emote Nice shot!
|
||||||
|
[06/07/2026 01:44:27] force = 70 * 0.9893329 = 69.2533
|
||||||
|
[06/07/2026 01:44:27] launching puck at (1.72, -4.62) with (-118.83, 320.13) force
|
||||||
|
[06/07/2026 01:44:32] Client 16 sent emoji emote 5
|
||||||
|
[06/07/2026 01:44:35] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:44:35] launching puck at (-4.09, -2.87) with (285.37, 199.96) force
|
||||||
|
[06/07/2026 01:44:40] force = 70 * 0.715519 = 50.08633
|
||||||
|
[06/07/2026 01:44:40] launching puck at (-1.73, -1.96) with (86.78, 98.38) force
|
||||||
|
[06/07/2026 01:44:56] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:44:56] launching puck at (-2.78, 4.16) with (193.73, -289.64) force
|
||||||
|
[06/07/2026 01:45:07] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:45:07] launching puck at (-0.33, -4.99) with (22.75, 347.71) force
|
||||||
|
[06/07/2026 01:45:13] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:45:13] launching puck at (-4.05, -2.93) with (282.20, 204.41) force
|
||||||
|
[06/07/2026 01:45:19] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:45:19] launching puck at (3.22, 3.82) with (-224.57, -266.43) force
|
||||||
|
[06/07/2026 01:45:27] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:45:27] launching puck at (-2.44, 4.36) with (170.13, -304.10) force
|
||||||
|
[06/07/2026 01:45:33] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:45:33] launching puck at (-3.56, -3.51) with (248.31, 244.46) force
|
||||||
|
[06/07/2026 01:45:38] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:45:38] launching puck at (1.34, 4.82) with (-93.47, -335.68) force
|
||||||
|
[06/07/2026 01:45:43] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:45:43] launching puck at (4.19, 2.72) with (-292.35, -189.61) force
|
||||||
|
[06/07/2026 01:45:49] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:45:49] launching puck at (1.70, 4.70) with (-118.69, -327.62) force
|
||||||
|
[06/07/2026 01:45:55] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:45:55] launching puck at (-3.00, -4.00) with (208.77, 278.99) force
|
||||||
|
[06/07/2026 01:46:00] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:46:00] launching puck at (-1.05, 4.89) with (73.04, -340.71) force
|
||||||
|
[06/07/2026 01:46:06] force = 70 * 0.7360796 = 51.52557
|
||||||
|
[06/07/2026 01:46:06] launching puck at (-2.64, 0.74) with (135.89, -38.23) force
|
||||||
|
[06/07/2026 01:46:11] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:46:11] launching puck at (-4.82, 1.34) with (335.75, -93.22) force
|
||||||
|
[06/07/2026 01:46:15] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:46:15] launching puck at (-3.00, 4.00) with (209.04, -278.79) force
|
||||||
|
[06/07/2026 01:46:20] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:46:20] launching puck at (0.43, 4.98) with (-30.27, -347.14) force
|
||||||
|
[06/07/2026 01:46:25] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:46:25] launching puck at (-4.99, 0.35) with (347.59, -24.51) force
|
||||||
|
[06/07/2026 01:46:31] force = 70 * 0.8155576 = 57.08903
|
||||||
|
[06/07/2026 01:46:31] launching puck at (3.15, 0.90) with (-179.61, -51.36) force
|
||||||
|
[06/07/2026 01:46:38] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:46:38] launching puck at (-0.53, 4.97) with (36.78, -346.51) force
|
||||||
|
[06/07/2026 01:46:46] force = 70 * 0.9484298 = 66.39008
|
||||||
|
[06/07/2026 01:46:46] launching puck at (-4.46, -0.49) with (295.85, 32.59) force
|
||||||
|
[06/07/2026 01:46:52] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:46:52] launching puck at (-4.13, 2.82) with (287.84, -196.38) force
|
||||||
|
[06/07/2026 01:46:59] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:46:59] launching puck at (-2.35, 4.41) with (163.83, -307.54) force
|
||||||
|
[06/07/2026 01:47:05] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:47:05] launching puck at (-3.64, 3.43) with (253.36, -239.22) force
|
||||||
|
[06/07/2026 01:47:09] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:47:09] launching puck at (3.18, 3.86) with (-221.66, -268.86) force
|
||||||
|
[06/07/2026 01:47:13] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:47:13] launching puck at (2.92, 4.06) with (-203.67, -282.73) force
|
||||||
|
[06/07/2026 01:47:17] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:47:17] launching puck at (-2.40, -4.39) with (167.26, 305.69) force
|
||||||
|
[06/07/2026 01:47:23] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:47:23] launching puck at (-1.99, -4.59) with (138.45, 319.77) force
|
||||||
|
[06/07/2026 01:47:28] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:47:28] launching puck at (4.15, -2.79) with (-289.17, 194.42) force
|
||||||
|
[06/07/2026 01:47:34] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:47:34] launching puck at (-2.01, -4.58) with (140.03, 319.08) force
|
||||||
|
[06/07/2026 01:47:45] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:47:45] launching puck at (3.53, 3.54) with (-246.11, -246.68) force
|
||||||
|
[06/07/2026 01:47:50] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:47:50] launching puck at (4.49, 2.20) with (-312.95, -153.25) force
|
||||||
|
[06/07/2026 01:47:56] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:47:56] launching puck at (-0.68, -4.95) with (47.40, 345.21) force
|
||||||
|
[06/07/2026 01:48:02] force = 70 * 0.8716049 = 61.01234
|
||||||
|
[06/07/2026 01:48:02] launching puck at (3.73, -0.08) with (-227.41, 5.12) force
|
||||||
|
[06/07/2026 01:48:07] force = 70 * 0.87383 = 61.1681
|
||||||
|
[06/07/2026 01:48:07] launching puck at (-1.34, -3.50) with (81.93, 214.12) force
|
||||||
|
[06/07/2026 01:48:08] Red goal scored, red score is now 1
|
||||||
|
[06/07/2026 01:48:15] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:48:15] launching puck at (0.28, 4.99) with (-19.82, -347.89) force
|
||||||
|
[06/07/2026 01:48:25] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:48:25] launching puck at (4.22, -2.68) with (-294.21, 186.71) force
|
||||||
|
[06/07/2026 01:48:29] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:48:29] launching puck at (1.57, 4.75) with (-109.41, -330.83) force
|
||||||
|
[06/07/2026 01:48:34] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:48:34] launching puck at (0.36, -4.99) with (-25.01, 347.55) force
|
||||||
|
[06/07/2026 01:48:41] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:48:41] launching puck at (4.80, 1.40) with (-334.50, -97.63) force
|
||||||
|
[06/07/2026 01:48:46] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:48:46] launching puck at (2.61, -4.26) with (-182.22, 297.01) force
|
||||||
|
[06/07/2026 01:48:51] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:48:51] launching puck at (0.34, 4.99) with (-24.02, -347.62) force
|
||||||
|
[06/07/2026 01:48:55] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:48:55] launching puck at (2.82, -4.13) with (-196.66, 287.65) force
|
||||||
|
[06/07/2026 01:49:02] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:49:02] launching puck at (2.63, -4.25) with (-183.53, 296.20) force
|
||||||
|
[06/07/2026 01:49:02] Red goal scored, red score is now 2
|
||||||
|
[06/07/2026 01:49:07] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:49:07] launching puck at (0.01, 5.00) with (-0.95, -348.45) force
|
||||||
|
[06/07/2026 01:49:15] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:49:15] launching puck at (1.79, -4.67) with (-124.69, 325.38) force
|
||||||
|
[06/07/2026 01:49:19] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:49:19] launching puck at (4.49, 2.20) with (-312.82, -153.50) force
|
||||||
|
[06/07/2026 01:49:24] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:49:24] launching puck at (3.03, -3.98) with (-211.15, 277.19) force
|
||||||
|
[06/07/2026 01:49:29] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:49:29] launching puck at (0.76, 4.94) with (-52.75, -344.44) force
|
||||||
|
[06/07/2026 01:49:34] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:49:34] launching puck at (-2.72, -4.19) with (189.66, 292.31) force
|
||||||
|
[06/07/2026 01:49:40] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:49:40] launching puck at (-0.47, 4.98) with (32.48, -346.94) force
|
||||||
|
[06/07/2026 01:49:47] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:49:47] launching puck at (4.05, -2.93) with (-282.16, 204.47) force
|
||||||
|
[06/07/2026 01:49:54] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:49:54] launching puck at (4.70, -1.70) with (-327.77, 118.27) force
|
||||||
|
[06/07/2026 01:50:02] force = 70 * 0.914004 = 63.98028
|
||||||
|
[06/07/2026 01:50:02] launching puck at (-2.76, -3.07) with (176.38, 196.48) force
|
||||||
|
[06/07/2026 01:50:07] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:50:07] launching puck at (3.59, 3.48) with (-250.15, -242.58) force
|
||||||
|
[06/07/2026 01:50:12] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:50:12] launching puck at (4.97, 0.52) with (-346.59, -36.02) force
|
||||||
|
[06/07/2026 01:50:18] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:50:18] launching puck at (4.75, 1.56) with (-331.05, -108.75) force
|
||||||
|
[06/07/2026 01:50:24] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:50:24] launching puck at (-1.90, 4.62) with (132.42, -322.31) force
|
||||||
|
[06/07/2026 01:50:29] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:50:29] launching puck at (-0.53, 4.97) with (37.03, -346.48) force
|
||||||
|
[06/07/2026 01:50:35] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 01:50:35] launching puck at (-1.91, 4.62) with (133.27, -321.96) force
|
||||||
|
[06/07/2026 01:50:40] force = 70 * 0.9784393 = 68.49075
|
||||||
|
[06/07/2026 01:50:40] launching puck at (4.50, -1.70) with (-308.33, 116.11) force
|
||||||
|
[06/07/2026 01:50:42] Red goal scored, red score is now 3
|
||||||
|
[06/07/2026 01:50:43] Dedicated match PATCH success: 200 {"ok":true,"id":149}
|
||||||
|
[06/07/2026 01:50:45] Dedicated match winner PATCH success: 200 {"ok":true,"id":149,"winner_id":44,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}}
|
||||||
|
[06/07/2026 01:50:56] Mirror server: client disconnected (connId=1628657378)
|
||||||
|
[06/07/2026 01:50:56] Active player connections: 1
|
||||||
|
[06/07/2026 01:51:12] Mirror server: client disconnected (connId=-1071757638)
|
||||||
|
[06/07/2026 01:51:12] Active player connections: 0
|
||||||
|
[06/07/2026 01:51:16] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 01:51:26] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 01:51:36] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 01:51:46] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 01:51:56] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 01:52:07] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 01:52:16] All players left, exiting
|
||||||
|
[06/07/2026 01:52:18] Dedicated match PATCH success: 200 {"ok":true,"id":149}
|
||||||
@@ -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,87 @@
|
|||||||
|
[06/07/2026 05:55:11] Starting server at port 26001
|
||||||
|
[06/07/2026 05:55:11] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 05:55:12] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 05:55:12] Starting auto close watchdog
|
||||||
|
[06/07/2026 05:55:12] Active player connections: 0
|
||||||
|
[06/07/2026 05:55:14] Active player connections: 1
|
||||||
|
[06/07/2026 05:55:14] Active player connections: 2
|
||||||
|
[06/07/2026 05:55:14] Game started On Server
|
||||||
|
[06/07/2026 05:55:14] Client 15 set team to Blue
|
||||||
|
[06/07/2026 05:55:15] Client 16 set team to Red
|
||||||
|
[06/07/2026 05:55:15] Dedicated match PATCH success: 200 {"ok":true,"id":150}
|
||||||
|
[06/07/2026 05:55:15] Dedicated match PATCH success: 200 {"ok":true,"id":150}
|
||||||
|
[06/07/2026 05:55:17] force = 70 * 0.7772657 = 54.4086
|
||||||
|
[06/07/2026 05:55:17] launching puck at (0.28, -2.99) with (-15.17, 162.59) force
|
||||||
|
[06/07/2026 05:55:26] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 05:55:26] launching puck at (-0.43, 4.98) with (30.21, -347.14) force
|
||||||
|
[06/07/2026 05:55:34] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 05:55:34] launching puck at (0.90, 4.92) with (-62.55, -342.79) force
|
||||||
|
[06/07/2026 05:55:45] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 05:55:45] launching puck at (-0.98, 4.90) with (68.17, -341.72) force
|
||||||
|
[06/07/2026 05:55:52] force = 70 * 0.9894373 = 69.26061
|
||||||
|
[06/07/2026 05:55:52] launching puck at (2.91, 3.99) with (-201.21, -276.05) force
|
||||||
|
[06/07/2026 05:55:59] force = 70 * 0.9540089 = 66.78062
|
||||||
|
[06/07/2026 05:55:59] launching puck at (-3.01, 3.41) with (200.79, -227.44) force
|
||||||
|
[06/07/2026 05:56:08] force = 70 * 0.834335 = 58.40345
|
||||||
|
[06/07/2026 05:56:08] launching puck at (-1.90, -2.84) with (111.23, 165.66) force
|
||||||
|
[06/07/2026 05:56:14] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 05:56:14] launching puck at (0.81, 4.93) with (-56.24, -343.88) force
|
||||||
|
[06/07/2026 05:56:14] Blue goal scored, blue score is now 1
|
||||||
|
[06/07/2026 05:56:20] force = 70 * 0.8764051 = 61.34836
|
||||||
|
[06/07/2026 05:56:20] launching puck at (-0.17, 3.77) with (10.28, -231.12) force
|
||||||
|
[06/07/2026 05:56:24] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 05:56:24] launching puck at (0.65, 4.96) with (-45.11, -345.52) force
|
||||||
|
[06/07/2026 05:56:25] Blue goal scored, blue score is now 2
|
||||||
|
[06/07/2026 05:56:31] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 05:56:31] launching puck at (0.10, -5.00) with (-7.04, 348.38) force
|
||||||
|
[06/07/2026 05:56:39] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 05:56:39] launching puck at (-1.82, 4.66) with (127.05, -324.47) force
|
||||||
|
[06/07/2026 05:56:46] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 05:56:46] launching puck at (0.24, -4.99) with (-17.05, 348.04) force
|
||||||
|
[06/07/2026 05:56:52] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 05:56:52] launching puck at (2.70, 4.21) with (-187.85, -293.48) force
|
||||||
|
[06/07/2026 05:56:58] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 05:56:58] launching puck at (1.54, -4.76) with (-107.35, 331.51) force
|
||||||
|
[06/07/2026 05:57:04] force = 70 * 0.7140504 = 49.98353
|
||||||
|
[06/07/2026 05:57:04] launching puck at (2.47, 0.86) with (-123.30, -42.74) force
|
||||||
|
[06/07/2026 05:57:09] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 05:57:09] launching puck at (4.08, 2.89) with (-284.12, -201.73) force
|
||||||
|
[06/07/2026 05:57:15] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 05:57:15] launching puck at (2.62, 4.26) with (-182.70, -296.71) force
|
||||||
|
[06/07/2026 05:57:21] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 05:57:21] launching puck at (3.71, 3.35) with (-258.57, -233.58) force
|
||||||
|
[06/07/2026 05:57:27] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 05:57:27] launching puck at (-1.81, 4.66) with (126.18, -324.81) force
|
||||||
|
[06/07/2026 05:57:33] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 05:57:33] launching puck at (-0.95, -4.91) with (66.15, 342.12) force
|
||||||
|
[06/07/2026 05:57:40] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 05:57:40] launching puck at (-5.00, -0.01) with (348.45, 0.53) force
|
||||||
|
[06/07/2026 05:57:45] force = 70 * 0.6588573 = 46.12001
|
||||||
|
[06/07/2026 05:57:45] launching puck at (1.71, -1.56) with (-78.73, 72.14) force
|
||||||
|
[06/07/2026 05:57:52] force = 70 * 0.8767723 = 61.37407
|
||||||
|
[06/07/2026 05:57:52] launching puck at (3.65, -0.96) with (-223.96, 59.17) force
|
||||||
|
[06/07/2026 05:57:57] force = 70 * 0.9884636 = 69.19245
|
||||||
|
[06/07/2026 05:57:57] launching puck at (-1.17, -4.78) with (80.70, 330.81) force
|
||||||
|
[06/07/2026 05:57:57] Red goal scored, red score is now 1
|
||||||
|
[06/07/2026 05:58:04] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 05:58:04] launching puck at (-0.14, 5.00) with (10.10, -348.31) force
|
||||||
|
[06/07/2026 05:58:10] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 05:58:10] launching puck at (-0.52, -4.97) with (36.25, 346.56) force
|
||||||
|
[06/07/2026 05:58:15] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 05:58:15] launching puck at (-4.28, 2.59) with (298.17, -180.32) force
|
||||||
|
[06/07/2026 05:58:16] Blue goal scored, blue score is now 3
|
||||||
|
[06/07/2026 05:58:16] Dedicated match PATCH success: 200 {"ok":true,"id":150}
|
||||||
|
[06/07/2026 05:58:18] Dedicated match winner PATCH success: 200 {"ok":true,"id":150,"winner_id":52,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}}
|
||||||
|
[06/07/2026 05:58:25] Rematch requested, max bet limit coins: 500
|
||||||
|
[06/07/2026 05:58:35] Mirror server: client disconnected (connId=-1006358150)
|
||||||
|
[06/07/2026 05:58:35] Active player connections: 1
|
||||||
|
[06/07/2026 05:58:47] Mirror server: client disconnected (connId=-412366327)
|
||||||
|
[06/07/2026 05:58:47] Active player connections: 0
|
||||||
|
[06/07/2026 05:58:52] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 05:59:02] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 05:59:12] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 05:59:22] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 05:59:32] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 05:59:42] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 05:59:52] All players left, exiting
|
||||||
|
[06/07/2026 05:59:52] Dedicated match PATCH success: 200 {"ok":true,"id":150}
|
||||||
@@ -0,0 +1,99 @@
|
|||||||
|
[06/07/2026 05:59:09] Starting server at port 26062
|
||||||
|
[06/07/2026 05:59:09] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 05:59:09] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 05:59:09] Starting auto close watchdog
|
||||||
|
[06/07/2026 05:59:09] Active player connections: 0
|
||||||
|
[06/07/2026 05:59:10] Active player connections: 1
|
||||||
|
[06/07/2026 05:59:11] Client 15 set team to Blue
|
||||||
|
[06/07/2026 05:59:11] Dedicated match PATCH success: 200 {"ok":true,"id":151}
|
||||||
|
[06/07/2026 05:59:12] Active player connections: 2
|
||||||
|
[06/07/2026 05:59:12] Game started On Server
|
||||||
|
[06/07/2026 05:59:12] Client 16 set team to Red
|
||||||
|
[06/07/2026 05:59:12] Dedicated match PATCH success: 200 {"ok":true,"id":151}
|
||||||
|
[06/07/2026 05:59:17] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 05:59:17] launching puck at (-0.05, -5.00) with (3.47, 348.44) force
|
||||||
|
[06/07/2026 05:59:24] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 05:59:24] launching puck at (-0.39, 4.98) with (27.14, -347.39) force
|
||||||
|
[06/07/2026 05:59:30] force = 70 * 0.9837605 = 68.86324
|
||||||
|
[06/07/2026 05:59:30] launching puck at (4.29, 2.31) with (-295.17, -159.07) force
|
||||||
|
[06/07/2026 05:59:44] force = 70 * 0.9231679 = 64.62176
|
||||||
|
[06/07/2026 05:59:44] launching puck at (-2.80, 3.15) with (181.19, -203.73) force
|
||||||
|
[06/07/2026 05:59:55] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 05:59:55] launching puck at (0.83, -4.93) with (-57.68, 343.65) force
|
||||||
|
[06/07/2026 06:00:02] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:00:02] launching puck at (-2.32, 4.43) with (161.92, -308.55) force
|
||||||
|
[06/07/2026 06:00:08] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:00:08] launching puck at (-1.55, -4.75) with (108.29, 331.20) force
|
||||||
|
[06/07/2026 06:00:16] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:00:16] launching puck at (1.34, 4.82) with (-93.14, -335.78) force
|
||||||
|
[06/07/2026 06:00:27] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:00:27] launching puck at (-0.79, -4.94) with (55.18, 344.06) force
|
||||||
|
[06/07/2026 06:00:33] force = 70 * 0.9442155 = 66.09509
|
||||||
|
[06/07/2026 06:00:33] launching puck at (-1.23, 4.26) with (81.20, -281.88) force
|
||||||
|
[06/07/2026 06:00:33] Blue goal scored, blue score is now 1
|
||||||
|
[06/07/2026 06:00:40] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:00:40] launching puck at (-3.55, -3.52) with (247.15, 245.63) force
|
||||||
|
[06/07/2026 06:00:51] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:00:51] launching puck at (0.01, 5.00) with (-0.45, -348.45) force
|
||||||
|
[06/07/2026 06:01:02] force = 70 * 0.8938802 = 62.57162
|
||||||
|
[06/07/2026 06:01:02] launching puck at (3.88, -0.61) with (-243.01, 38.37) force
|
||||||
|
[06/07/2026 06:01:02] Blue goal scored, blue score is now 2
|
||||||
|
[06/07/2026 06:01:09] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:01:09] launching puck at (-2.22, -4.48) with (154.88, 312.14) force
|
||||||
|
[06/07/2026 06:01:15] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:01:15] launching puck at (-1.62, 4.73) with (113.00, -329.62) force
|
||||||
|
[06/07/2026 06:01:20] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:01:20] launching puck at (-2.93, -4.05) with (204.02, 282.48) force
|
||||||
|
[06/07/2026 06:01:26] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:01:26] launching puck at (-4.99, -0.38) with (347.44, 26.61) force
|
||||||
|
[06/07/2026 06:01:33] force = 70 * 0.9399788 = 65.79852
|
||||||
|
[06/07/2026 06:01:33] launching puck at (-3.45, -2.72) with (227.03, 178.95) force
|
||||||
|
[06/07/2026 06:01:42] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:01:42] launching puck at (2.96, -4.03) with (-206.44, 280.72) force
|
||||||
|
[06/07/2026 06:01:48] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:01:48] launching puck at (4.66, -1.81) with (-324.72, 126.41) force
|
||||||
|
[06/07/2026 06:01:55] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:01:55] launching puck at (-2.36, 4.41) with (164.50, -307.18) force
|
||||||
|
[06/07/2026 06:02:02] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:02:02] launching puck at (-2.82, -4.13) with (196.65, 287.66) force
|
||||||
|
[06/07/2026 06:02:06] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:02:06] launching puck at (-4.46, -2.26) with (310.77, 157.61) force
|
||||||
|
[06/07/2026 06:02:13] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:02:13] launching puck at (-2.80, -4.14) with (195.45, 288.48) force
|
||||||
|
[06/07/2026 06:02:19] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:02:19] launching puck at (-4.19, -2.72) with (292.23, 189.79) force
|
||||||
|
[06/07/2026 06:02:27] force = 70 * 0.9179572 = 64.257
|
||||||
|
[06/07/2026 06:02:27] launching puck at (-3.59, -2.12) with (230.41, 136.34) force
|
||||||
|
[06/07/2026 06:02:31] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:02:31] launching puck at (-3.81, -3.24) with (265.25, 225.97) force
|
||||||
|
[06/07/2026 06:02:36] force = 70 * 0.8017872 = 56.1251
|
||||||
|
[06/07/2026 06:02:36] launching puck at (-3.02, -0.96) with (169.59, 54.05) force
|
||||||
|
[06/07/2026 06:02:41] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:02:41] launching puck at (-3.12, -3.91) with (217.61, 272.15) force
|
||||||
|
[06/07/2026 06:02:48] force = 70 * 0.8290066 = 58.03046
|
||||||
|
[06/07/2026 06:02:48] launching puck at (2.94, -1.66) with (-170.65, 96.09) force
|
||||||
|
[06/07/2026 06:02:48] Red goal scored, red score is now 1
|
||||||
|
[06/07/2026 06:02:54] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:02:54] launching puck at (0.02, 5.00) with (-1.40, -348.45) force
|
||||||
|
[06/07/2026 06:03:03] force = 70 * 0.8905252 = 62.33677
|
||||||
|
[06/07/2026 06:03:03] launching puck at (2.81, -2.71) with (-175.06, 168.72) force
|
||||||
|
[06/07/2026 06:03:11] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:03:11] launching puck at (0.12, 5.00) with (-8.52, -348.35) force
|
||||||
|
[06/07/2026 06:03:12] Blue goal scored, blue score is now 3
|
||||||
|
[06/07/2026 06:03:12] Dedicated match PATCH success: 200 {"ok":true,"id":151}
|
||||||
|
[06/07/2026 06:03:14] Dedicated match winner PATCH success: 200 {"ok":true,"id":151,"winner_id":33,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}}
|
||||||
|
[06/07/2026 06:03:31] Rematch requested, max bet limit coins: 74
|
||||||
|
[06/07/2026 06:03:36] Rematch was confirmed, closing in 5 secs. new room :
|
||||||
|
[06/07/2026 06:03:36] {"ok":true,"entry_fee":37,"rc_prize":60,"for_red":{"Players":[{"Name":"bush","LastSeen":1780812216266,"l10_wins":1,"l10_losses":1,"UserId":52,"rc":0.0},{"Name":"Zharntech","LastSeen":1780812216266,"l10_wins":1,"l10_losses":1,"UserId":33,"rc":0.0}],"GameName":"soccar","Port":26073,"InitTime":1780812216266,"instance_started":true,"match_id":162,"entry_fee":37,"rc_prize":60,"your_team":"red"},"for_blue":{"Players":[{"Name":"bush","LastSeen":1780812216266,"l10_wins":1,"l10_losses":1,"UserId":52,"rc":0.0},{"Name":"Zharntech","LastSeen":1780812216266,"l10_wins":1,"l10_losses":1,"UserId":33,"rc":0.0}],"GameName":"soccar","Port":26073,"InitTime":1780812216266,"instance_started":true,"match_id":162,"entry_fee":37,"rc_prize":60,"your_team":"blue"},"your_team":""}
|
||||||
|
[06/07/2026 06:03:36] Mirror server: client disconnected (connId=-412399625)
|
||||||
|
[06/07/2026 06:03:36] Active player connections: 1
|
||||||
|
[06/07/2026 06:03:36] Mirror server: client disconnected (connId=-1006355120)
|
||||||
|
[06/07/2026 06:03:36] Active player connections: 0
|
||||||
|
[06/07/2026 06:03:41] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 06:03:51] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 06:04:01] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 06:04:11] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 06:04:21] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 06:04:31] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 06:04:41] All players left, exiting
|
||||||
|
[06/07/2026 06:04:41] Dedicated match PATCH success: 200 {"ok":true,"id":151}
|
||||||
@@ -0,0 +1,217 @@
|
|||||||
|
[06/07/2026 05:59:54] Starting server at port 26517
|
||||||
|
[06/07/2026 05:59:54] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 05:59:54] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 05:59:54] Starting auto close watchdog
|
||||||
|
[06/07/2026 05:59:54] Active player connections: 0
|
||||||
|
[06/07/2026 05:59:58] Active player connections: 1
|
||||||
|
[06/07/2026 05:59:58] Active player connections: 2
|
||||||
|
[06/07/2026 05:59:58] Game started On Server
|
||||||
|
[06/07/2026 05:59:58] Client 15 set team to Red
|
||||||
|
[06/07/2026 05:59:58] Dedicated match PATCH success: 200 {"ok":true,"id":152}
|
||||||
|
[06/07/2026 05:59:59] Client 16 set team to Blue
|
||||||
|
[06/07/2026 05:59:59] Dedicated match PATCH success: 200 {"ok":true,"id":152}
|
||||||
|
[06/07/2026 06:00:21] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:00:21] launching puck at (-0.07, 5.00) with (4.86, -348.42) force
|
||||||
|
[06/07/2026 06:00:25] force = 70 * 0.4296699 = 30.07689
|
||||||
|
[06/07/2026 06:00:25] launching puck at (-0.16, -1.30) with (4.72, 38.98) force
|
||||||
|
[06/07/2026 06:00:31] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:00:31] launching puck at (-0.29, 4.99) with (20.27, -347.86) force
|
||||||
|
[06/07/2026 06:00:39] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:00:39] launching puck at (-2.30, -4.44) with (160.02, 309.53) force
|
||||||
|
[06/07/2026 06:01:26] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:01:26] launching puck at (1.17, 4.86) with (-81.86, -338.70) force
|
||||||
|
[06/07/2026 06:01:34] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:01:34] launching puck at (-0.06, -5.00) with (4.07, 348.43) force
|
||||||
|
[06/07/2026 06:01:40] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:01:40] launching puck at (0.21, 5.00) with (-14.31, -348.16) force
|
||||||
|
[06/07/2026 06:01:46] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:01:46] launching puck at (-1.79, -4.67) with (124.84, 325.32) force
|
||||||
|
[06/07/2026 06:01:54] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:01:54] launching puck at (-4.94, -0.76) with (344.35, 53.30) force
|
||||||
|
[06/07/2026 06:02:02] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:02:02] launching puck at (2.58, -4.28) with (-179.68, 298.55) force
|
||||||
|
[06/07/2026 06:02:09] force = 70 * 0.8624393 = 60.37075
|
||||||
|
[06/07/2026 06:02:09] launching puck at (3.64, 0.29) with (-219.54, -17.76) force
|
||||||
|
[06/07/2026 06:02:13] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:02:13] launching puck at (-1.17, -4.86) with (81.23, 338.85) force
|
||||||
|
[06/07/2026 06:02:13] Red goal scored, red score is now 1
|
||||||
|
[06/07/2026 06:02:26] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:02:26] launching puck at (0.36, 4.99) with (-25.41, -347.53) force
|
||||||
|
[06/07/2026 06:02:33] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:02:33] launching puck at (1.75, -4.68) with (-122.19, 326.33) force
|
||||||
|
[06/07/2026 06:02:38] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:02:38] launching puck at (-1.45, 4.79) with (100.89, -333.53) force
|
||||||
|
[06/07/2026 06:02:44] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:02:44] launching puck at (2.13, -4.52) with (-148.53, 315.21) force
|
||||||
|
[06/07/2026 06:02:49] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:02:49] launching puck at (-3.35, 3.71) with (233.71, -258.46) force
|
||||||
|
[06/07/2026 06:02:57] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:02:57] launching puck at (-3.28, 3.78) with (228.27, -263.27) force
|
||||||
|
[06/07/2026 06:03:02] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:03:02] launching puck at (-4.85, 1.21) with (338.18, -83.99) force
|
||||||
|
[06/07/2026 06:03:11] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:03:11] launching puck at (3.50, 3.57) with (-244.21, -248.56) force
|
||||||
|
[06/07/2026 06:03:18] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:03:18] launching puck at (4.65, 1.84) with (-323.95, -128.36) force
|
||||||
|
[06/07/2026 06:03:24] force = 70 * 0.9631155 = 67.41808
|
||||||
|
[06/07/2026 06:03:24] launching puck at (-4.60, -0.62) with (310.17, 41.63) force
|
||||||
|
[06/07/2026 06:03:29] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:03:29] launching puck at (-4.61, 1.94) with (321.11, -135.30) force
|
||||||
|
[06/07/2026 06:03:35] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:03:35] launching puck at (0.64, -4.96) with (-44.36, 345.62) force
|
||||||
|
[06/07/2026 06:03:43] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:03:43] launching puck at (3.27, -3.78) with (-227.69, 263.78) force
|
||||||
|
[06/07/2026 06:03:51] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:03:51] launching puck at (4.34, -2.48) with (-302.69, 172.63) force
|
||||||
|
[06/07/2026 06:03:56] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:03:56] launching puck at (3.25, -3.80) with (-226.19, 265.06) force
|
||||||
|
[06/07/2026 06:04:01] force = 70 * 0.9371412 = 65.59988
|
||||||
|
[06/07/2026 06:04:01] launching puck at (-4.09, 1.52) with (268.25, -99.90) force
|
||||||
|
[06/07/2026 06:04:05] force = 70 * 0.8867733 = 62.07413
|
||||||
|
[06/07/2026 06:04:05] launching puck at (2.90, 2.56) with (-180.00, -158.66) force
|
||||||
|
[06/07/2026 06:04:14] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:04:14] launching puck at (2.24, 4.47) with (-155.97, -311.60) force
|
||||||
|
[06/07/2026 06:04:20] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:04:20] launching puck at (-1.57, 4.75) with (109.22, -330.89) force
|
||||||
|
[06/07/2026 06:04:29] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:04:29] launching puck at (0.97, 4.91) with (-67.52, -341.85) force
|
||||||
|
[06/07/2026 06:04:34] force = 70 * 0.899085 = 62.93595
|
||||||
|
[06/07/2026 06:04:34] launching puck at (-1.99, 3.45) with (125.49, -216.88) force
|
||||||
|
[06/07/2026 06:04:42] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:04:42] launching puck at (-0.28, 4.99) with (19.84, -347.89) force
|
||||||
|
[06/07/2026 06:04:50] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:04:50] launching puck at (-1.13, -4.87) with (79.03, 339.37) force
|
||||||
|
[06/07/2026 06:04:59] force = 70 * 0.7105581 = 49.73907
|
||||||
|
[06/07/2026 06:04:59] launching puck at (2.43, 0.90) with (-120.86, -44.75) force
|
||||||
|
[06/07/2026 06:05:04] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:04] launching puck at (-0.22, 5.00) with (15.58, -348.10) force
|
||||||
|
[06/07/2026 06:05:05] Blue goal scored, blue score is now 1
|
||||||
|
[06/07/2026 06:05:13] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:13] launching puck at (-0.04, -5.00) with (2.77, 348.44) force
|
||||||
|
[06/07/2026 06:05:18] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:18] launching puck at (-0.88, 4.92) with (61.37, -343.01) force
|
||||||
|
[06/07/2026 06:05:24] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:24] launching puck at (2.73, -4.19) with (-190.45, 291.80) force
|
||||||
|
[06/07/2026 06:05:29] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:29] launching puck at (-0.78, 4.94) with (54.15, -344.22) force
|
||||||
|
[06/07/2026 06:05:35] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:35] launching puck at (2.86, -4.10) with (-199.02, 286.03) force
|
||||||
|
[06/07/2026 06:05:40] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:40] launching puck at (2.69, 4.22) with (-187.28, -293.85) force
|
||||||
|
[06/07/2026 06:05:46] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:46] launching puck at (3.00, -4.00) with (-209.03, 278.80) force
|
||||||
|
[06/07/2026 06:05:51] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:51] launching puck at (-3.47, 3.60) with (241.65, -251.05) force
|
||||||
|
[06/07/2026 06:05:59] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:59] launching puck at (0.61, -4.96) with (-42.35, 345.87) force
|
||||||
|
[06/07/2026 06:06:04] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:04] launching puck at (-3.67, 3.39) with (256.09, -236.30) force
|
||||||
|
[06/07/2026 06:06:11] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:11] launching puck at (-4.67, 1.79) with (325.29, -124.92) force
|
||||||
|
[06/07/2026 06:06:17] force = 70 * 0.8100961 = 56.70673
|
||||||
|
[06/07/2026 06:06:17] launching puck at (-2.79, 1.63) with (158.39, -92.18) force
|
||||||
|
[06/07/2026 06:06:22] force = 70 * 0.5906436 = 41.34505
|
||||||
|
[06/07/2026 06:06:22] launching puck at (0.70, 1.87) with (-28.87, -77.21) force
|
||||||
|
[06/07/2026 06:06:27] force = 70 * 0.9174654 = 64.22258
|
||||||
|
[06/07/2026 06:06:27] launching puck at (0.15, 4.16) with (-9.52, -267.09) force
|
||||||
|
[06/07/2026 06:06:33] force = 70 * 0.7593955 = 53.15769
|
||||||
|
[06/07/2026 06:06:33] launching puck at (-0.81, 2.77) with (43.06, -147.15) force
|
||||||
|
[06/07/2026 06:06:38] force = 70 * 0.9847676 = 68.93373
|
||||||
|
[06/07/2026 06:06:38] launching puck at (0.35, 4.87) with (-23.92, -335.57) force
|
||||||
|
[06/07/2026 06:06:44] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:44] launching puck at (0.69, 4.95) with (-48.08, -345.12) force
|
||||||
|
[06/07/2026 06:06:52] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:52] launching puck at (4.82, -1.34) with (-335.71, 93.38) force
|
||||||
|
[06/07/2026 06:06:52] Blue goal scored, blue score is now 2
|
||||||
|
[06/07/2026 06:07:01] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:02] launching puck at (0.18, -5.00) with (-12.48, 348.23) force
|
||||||
|
[06/07/2026 06:07:10] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:10] launching puck at (-3.26, 3.79) with (227.03, -264.34) force
|
||||||
|
[06/07/2026 06:07:15] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:15] launching puck at (-4.37, -2.42) with (304.77, 168.93) force
|
||||||
|
[06/07/2026 06:07:24] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:24] launching puck at (-4.85, 1.23) with (337.74, -85.75) force
|
||||||
|
[06/07/2026 06:07:30] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:30] launching puck at (-3.74, -3.31) with (260.88, 231.00) force
|
||||||
|
[06/07/2026 06:07:37] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:37] launching puck at (-4.99, 0.25) with (348.00, -17.67) force
|
||||||
|
[06/07/2026 06:07:43] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:43] launching puck at (-3.55, 3.52) with (247.54, -245.24) force
|
||||||
|
[06/07/2026 06:07:49] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:49] launching puck at (-4.97, 0.57) with (346.19, -39.67) force
|
||||||
|
[06/07/2026 06:07:54] force = 70 * 0.3302945 = 23.12061
|
||||||
|
[06/07/2026 06:07:54] launching puck at (-0.38, 1.00) with (8.86, -23.11) force
|
||||||
|
[06/07/2026 06:08:00] force = 70 * 0.8794632 = 61.56242
|
||||||
|
[06/07/2026 06:08:00] launching puck at (-3.79, -0.25) with (233.33, 15.60) force
|
||||||
|
[06/07/2026 06:08:06] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:06] launching puck at (-2.63, -4.25) with (183.47, 296.24) force
|
||||||
|
[06/07/2026 06:08:06] Red goal scored, red score is now 2
|
||||||
|
[06/07/2026 06:08:14] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:14] launching puck at (-0.15, 5.00) with (10.15, -348.31) force
|
||||||
|
[06/07/2026 06:08:20] force = 70 * 0.8248076 = 57.73653
|
||||||
|
[06/07/2026 06:08:20] launching puck at (-1.24, -3.11) with (71.35, 179.30) force
|
||||||
|
[06/07/2026 06:08:27] force = 70 * 0.8173968 = 57.21777
|
||||||
|
[06/07/2026 06:08:27] launching puck at (0.89, -3.16) with (-50.89, 181.00) force
|
||||||
|
[06/07/2026 06:08:34] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:34] launching puck at (1.62, -4.73) with (-112.60, 329.76) force
|
||||||
|
[06/07/2026 06:08:43] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:43] launching puck at (4.57, 2.03) with (-318.46, -141.44) force
|
||||||
|
[06/07/2026 06:08:50] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:50] launching puck at (-0.20, -5.00) with (13.78, 348.18) force
|
||||||
|
[06/07/2026 06:08:56] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:56] launching puck at (-3.64, 3.42) with (253.98, -238.57) force
|
||||||
|
[06/07/2026 06:09:03] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:03] launching puck at (2.65, -4.24) with (-184.77, 295.43) force
|
||||||
|
[06/07/2026 06:09:09] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:09] launching puck at (-0.65, 4.96) with (45.12, -345.52) force
|
||||||
|
[06/07/2026 06:09:15] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:15] launching puck at (-1.29, 4.83) with (90.10, -336.60) force
|
||||||
|
[06/07/2026 06:09:21] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:21] launching puck at (0.44, 4.98) with (-30.54, -347.11) force
|
||||||
|
[06/07/2026 06:09:26] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:26] launching puck at (1.16, -4.86) with (-80.92, 338.93) force
|
||||||
|
[06/07/2026 06:09:32] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:32] launching puck at (0.56, -4.97) with (-38.70, 346.30) force
|
||||||
|
[06/07/2026 06:09:37] force = 70 * 0.7990385 = 55.9327
|
||||||
|
[06/07/2026 06:09:37] launching puck at (-2.91, -1.22) with (162.59, 68.12) force
|
||||||
|
[06/07/2026 06:09:43] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:43] launching puck at (-3.91, -3.11) with (272.80, 216.80) force
|
||||||
|
[06/07/2026 06:09:49] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:49] launching puck at (-2.11, -4.53) with (147.12, 315.87) force
|
||||||
|
[06/07/2026 06:09:54] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:54] launching puck at (-3.44, -3.63) with (239.58, 253.02) force
|
||||||
|
[06/07/2026 06:09:59] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:59] launching puck at (-2.48, -4.34) with (172.77, 302.61) force
|
||||||
|
[06/07/2026 06:10:06] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:06] launching puck at (0.18, -5.00) with (-12.47, 348.23) force
|
||||||
|
[06/07/2026 06:10:10] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:10] launching puck at (-4.91, 0.97) with (341.90, -67.26) force
|
||||||
|
[06/07/2026 06:10:15] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:15] launching puck at (-3.90, 3.13) with (271.59, -218.31) force
|
||||||
|
[06/07/2026 06:10:24] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:24] launching puck at (-2.58, -4.28) with (179.93, 298.40) force
|
||||||
|
[06/07/2026 06:10:31] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:31] launching puck at (-2.89, -4.08) with (201.27, 284.45) force
|
||||||
|
[06/07/2026 06:10:35] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:35] launching puck at (-1.63, -4.73) with (113.75, 329.36) force
|
||||||
|
[06/07/2026 06:10:42] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:42] launching puck at (2.01, -4.58) with (-140.35, 318.94) force
|
||||||
|
[06/07/2026 06:10:48] force = 70 * 0.9848197 = 68.93738
|
||||||
|
[06/07/2026 06:10:48] launching puck at (3.76, -3.11) with (-259.23, 214.51) force
|
||||||
|
[06/07/2026 06:10:48] Red goal scored, red score is now 3
|
||||||
|
[06/07/2026 06:10:48] Dedicated match PATCH success: 200 {"ok":true,"id":152}
|
||||||
|
[06/07/2026 06:10:50] Dedicated match winner PATCH success: 200 {"ok":true,"id":152,"winner_id":53,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}}
|
||||||
|
[06/07/2026 06:11:02] Mirror server: client disconnected (connId=-1154346161)
|
||||||
|
[06/07/2026 06:11:02] Active player connections: 1
|
||||||
|
[06/07/2026 06:11:06] Rematch requested, max bet limit coins: 500
|
||||||
|
[06/07/2026 06:13:03] Mirror server transport error (connId=-1154326437, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting.
|
||||||
|
[06/07/2026 06:13:03] Mirror server: client disconnected (connId=-1154326437)
|
||||||
|
[06/07/2026 06:13:03] Active player connections: 0
|
||||||
|
[06/07/2026 06:13:08] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 06:13:18] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 06:13:28] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 06:13:38] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 06:13:48] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 06:13:58] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 06:14:08] All players left, exiting
|
||||||
|
[06/07/2026 06:14:08] Dedicated match PATCH success: 200 {"ok":true,"id":152}
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
[06/07/2026 06:00:22] Starting server at port 26152
|
||||||
|
[06/07/2026 06:00:22] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 06:00:22] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 06:00:22] Starting auto close watchdog
|
||||||
|
[06/07/2026 06:00:22] Active player connections: 0
|
||||||
|
[06/07/2026 06:00:25] Active player connections: 1
|
||||||
|
[06/07/2026 06:00:26] Client 15 set team to Blue
|
||||||
|
[06/07/2026 06:00:26] Dedicated match PATCH success: 200 {"ok":true,"id":153}
|
||||||
|
[06/07/2026 06:01:24] Mirror server: client disconnected (connId=-1980052366)
|
||||||
|
[06/07/2026 06:01:24] Active player connections: 0
|
||||||
|
[06/07/2026 06:01:29] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 06:01:39] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 06:01:49] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 06:01:59] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 06:02:09] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 06:02:19] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 06:02:29] All players left, exiting
|
||||||
|
[06/07/2026 06:02:29] Dedicated match PATCH success: 200 {"ok":true,"id":153}
|
||||||
@@ -0,0 +1,71 @@
|
|||||||
|
[06/07/2026 06:00:33] Starting server at port 26117
|
||||||
|
[06/07/2026 06:00:34] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 06:00:34] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 06:00:34] Starting auto close watchdog
|
||||||
|
[06/07/2026 06:00:34] Active player connections: 0
|
||||||
|
[06/07/2026 06:00:35] Active player connections: 1
|
||||||
|
[06/07/2026 06:00:36] Client 15 set team to Blue
|
||||||
|
[06/07/2026 06:00:36] Active player connections: 2
|
||||||
|
[06/07/2026 06:00:36] Game started On Server
|
||||||
|
[06/07/2026 06:00:36] Dedicated match PATCH success: 200 {"ok":true,"id":154}
|
||||||
|
[06/07/2026 06:00:36] Client 16 set team to Blue
|
||||||
|
[06/07/2026 06:00:37] Active player connections: 3
|
||||||
|
[06/07/2026 06:00:37] Mirror server: client disconnected (connId=1141978967)
|
||||||
|
[06/07/2026 06:00:37] Active player connections: 2
|
||||||
|
[06/07/2026 06:00:53] force = 70 * 0.7352036 = 51.46425
|
||||||
|
[06/07/2026 06:00:53] launching puck at (0.83, 2.60) with (-42.87, -134.04) force
|
||||||
|
[06/07/2026 06:01:15] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:01:15] launching puck at (-0.37, 4.99) with (25.73, -347.50) force
|
||||||
|
[06/07/2026 06:01:36] force = 70 * 0.8679718 = 60.75803
|
||||||
|
[06/07/2026 06:01:36] launching puck at (-3.50, -1.20) with (212.40, 72.96) force
|
||||||
|
[06/07/2026 06:01:58] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:01:58] launching puck at (-5.00, 0.21) with (348.14, -14.87) force
|
||||||
|
[06/07/2026 06:01:58] Blue goal scored, blue score is now 1
|
||||||
|
[06/07/2026 06:02:18] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:02:18] launching puck at (1.06, 4.89) with (-73.69, -340.57) force
|
||||||
|
[06/07/2026 06:02:44] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:02:44] launching puck at (-5.00, -0.10) with (348.38, 6.93) force
|
||||||
|
[06/07/2026 06:03:04] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:03:04] launching puck at (-4.33, 2.50) with (301.66, -174.41) force
|
||||||
|
[06/07/2026 06:03:25] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:03:25] launching puck at (-2.83, 4.12) with (197.36, -287.17) force
|
||||||
|
[06/07/2026 06:03:47] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:03:47] launching puck at (0.72, 4.95) with (-50.11, -344.83) force
|
||||||
|
[06/07/2026 06:04:09] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:04:09] launching puck at (-0.40, 4.98) with (28.20, -347.31) force
|
||||||
|
[06/07/2026 06:04:28] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:04:28] launching puck at (-3.50, 3.57) with (244.07, -248.69) force
|
||||||
|
[06/07/2026 06:04:53] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:04:53] launching puck at (-1.63, 4.73) with (113.64, -329.40) force
|
||||||
|
[06/07/2026 06:05:16] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:16] launching puck at (-0.84, 4.93) with (58.20, -343.56) force
|
||||||
|
[06/07/2026 06:05:37] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:37] launching puck at (-4.77, -1.50) with (332.44, 104.43) force
|
||||||
|
[06/07/2026 06:06:00] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:00] launching puck at (2.77, 4.16) with (-193.31, -289.91) force
|
||||||
|
[06/07/2026 06:06:20] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:20] launching puck at (2.81, 4.13) with (-196.07, -288.05) force
|
||||||
|
[06/07/2026 06:06:39] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:39] launching puck at (0.71, 4.95) with (-49.72, -344.89) force
|
||||||
|
[06/07/2026 06:06:39] Blue goal scored, blue score is now 2
|
||||||
|
[06/07/2026 06:07:00] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:00] launching puck at (1.39, 4.80) with (-96.84, -334.73) force
|
||||||
|
[06/07/2026 06:07:20] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:20] launching puck at (-3.79, 3.27) with (263.89, -227.56) force
|
||||||
|
[06/07/2026 06:07:42] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:42] launching puck at (-2.92, 4.06) with (203.68, -282.72) force
|
||||||
|
[06/07/2026 06:07:42] Blue goal scored, blue score is now 3
|
||||||
|
[06/07/2026 06:07:42] Dedicated match PATCH success: 200 {"ok":true,"id":154}
|
||||||
|
[06/07/2026 06:07:44] Dedicated match winner PATCH success: 200 {"ok":true,"id":154,"winner_id":45,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}}
|
||||||
|
[06/07/2026 06:08:02] Mirror server: client disconnected (connId=94404805)
|
||||||
|
[06/07/2026 06:08:02] Active player connections: 1
|
||||||
|
[06/07/2026 06:08:13] Mirror server: client disconnected (connId=-1251357753)
|
||||||
|
[06/07/2026 06:08:13] Active player connections: 0
|
||||||
|
[06/07/2026 06:08:18] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 06:08:28] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 06:08:38] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 06:08:48] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 06:08:58] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 06:09:08] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 06:09:18] All players left, exiting
|
||||||
|
[06/07/2026 06:09:18] Dedicated match PATCH success: 200 {"ok":true,"id":154}
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
[06/07/2026 06:00:50] Starting server at port 26720
|
||||||
|
[06/07/2026 06:00:50] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 06:00:50] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 06:00:50] Starting auto close watchdog
|
||||||
|
[06/07/2026 06:00:50] Active player connections: 0
|
||||||
|
[06/07/2026 06:00:55] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 06:01:05] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 06:01:15] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 06:01:25] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 06:01:35] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 06:01:45] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 06:01:55] No players joined, exiting
|
||||||
|
[06/07/2026 06:01:56] Dedicated match PATCH success: 200 {"ok":true,"id":155}
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
[06/07/2026 06:01:01] Starting server at port 26910
|
||||||
|
[06/07/2026 06:01:01] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 06:01:01] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 06:01:01] Starting auto close watchdog
|
||||||
|
[06/07/2026 06:01:01] Active player connections: 0
|
||||||
|
[06/07/2026 06:01:06] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 06:01:16] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 06:01:26] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 06:01:36] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 06:01:46] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 06:01:56] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 06:02:06] No players joined, exiting
|
||||||
|
[06/07/2026 06:02:07] Dedicated match PATCH success: 200 {"ok":true,"id":156}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
[06/07/2026 06:01:17] Starting server at port 26837
|
||||||
|
[06/07/2026 06:01:17] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 06:01:17] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 06:01:17] Starting auto close watchdog
|
||||||
|
[06/07/2026 06:01:17] Active player connections: 0
|
||||||
|
[06/07/2026 06:01:22] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 06:01:27] Mirror server transport error (connId=-1154304243, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting.
|
||||||
|
[06/07/2026 06:01:27] Mirror server: client disconnected (connId=-1154304243)
|
||||||
|
[06/07/2026 06:01:32] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 06:01:42] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 06:01:52] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 06:02:02] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 06:02:12] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 06:02:22] No players joined, exiting
|
||||||
|
[06/07/2026 06:02:23] Dedicated match PATCH success: 200 {"ok":true,"id":157}
|
||||||
@@ -0,0 +1,174 @@
|
|||||||
|
[06/07/2026 06:01:34] Starting server at port 26788
|
||||||
|
[06/07/2026 06:01:34] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 06:01:34] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 06:01:34] Starting auto close watchdog
|
||||||
|
[06/07/2026 06:01:34] Active player connections: 0
|
||||||
|
[06/07/2026 06:01:36] Active player connections: 1
|
||||||
|
[06/07/2026 06:01:37] Client 15 set team to Red
|
||||||
|
[06/07/2026 06:01:37] Active player connections: 2
|
||||||
|
[06/07/2026 06:01:37] Game started On Server
|
||||||
|
[06/07/2026 06:01:37] Dedicated match PATCH success: 200 {"ok":true,"id":158}
|
||||||
|
[06/07/2026 06:01:37] Client 16 set team to Blue
|
||||||
|
[06/07/2026 06:01:38] Dedicated match PATCH success: 200 {"ok":true,"id":158}
|
||||||
|
[06/07/2026 06:01:45] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:01:45] launching puck at (-2.96, -4.03) with (206.54, 280.64) force
|
||||||
|
[06/07/2026 06:01:55] force = 70 * 0.590767 = 41.35369
|
||||||
|
[06/07/2026 06:01:55] launching puck at (-0.11, -1.99) with (4.73, 82.33) force
|
||||||
|
[06/07/2026 06:02:04] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:02:04] launching puck at (-2.28, -4.45) with (158.93, 310.10) force
|
||||||
|
[06/07/2026 06:02:10] force = 70 * 0.584978 = 40.94846
|
||||||
|
[06/07/2026 06:02:10] launching puck at (-1.02, -1.68) with (41.92, 68.80) force
|
||||||
|
[06/07/2026 06:02:15] force = 70 * 0.8005844 = 56.04091
|
||||||
|
[06/07/2026 06:02:15] launching puck at (2.28, -2.19) with (-127.67, 122.94) force
|
||||||
|
[06/07/2026 06:02:22] force = 70 * 0.8285758 = 58.00031
|
||||||
|
[06/07/2026 06:02:22] launching puck at (-1.27, -3.12) with (73.47, 181.22) force
|
||||||
|
[06/07/2026 06:02:28] force = 70 * 0.9285517 = 64.99862
|
||||||
|
[06/07/2026 06:02:28] launching puck at (-0.26, -4.27) with (16.69, 277.32) force
|
||||||
|
[06/07/2026 06:02:36] Client 16 sent emoji emote 4
|
||||||
|
[06/07/2026 06:02:43] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:02:43] launching puck at (-0.43, -4.98) with (30.27, 347.14) force
|
||||||
|
[06/07/2026 06:02:54] force = 70 * 0.7062886 = 49.4402
|
||||||
|
[06/07/2026 06:02:54] launching puck at (0.53, -2.51) with (-26.33, 124.15) force
|
||||||
|
[06/07/2026 06:03:06] force = 70 * 0.575748 = 40.30236
|
||||||
|
[06/07/2026 06:03:06] launching puck at (1.92, 0.04) with (-77.49, -1.73) force
|
||||||
|
[06/07/2026 06:03:12] force = 70 * 0.9318362 = 65.22854
|
||||||
|
[06/07/2026 06:03:12] launching puck at (0.09, 4.31) with (-5.80, -280.96) force
|
||||||
|
[06/07/2026 06:03:21] force = 70 * 0.6502776 = 45.51943
|
||||||
|
[06/07/2026 06:03:21] launching puck at (-0.65, -2.18) with (29.76, 99.07) force
|
||||||
|
[06/07/2026 06:03:27] force = 70 * 0.8593338 = 60.15336
|
||||||
|
[06/07/2026 06:03:27] launching puck at (-2.07, -2.97) with (124.51, 178.78) force
|
||||||
|
[06/07/2026 06:03:40] force = 70 * 0.5716844 = 40.01791
|
||||||
|
[06/07/2026 06:03:40] launching puck at (0.59, -1.81) with (-23.51, 72.44) force
|
||||||
|
[06/07/2026 06:03:47] force = 70 * 0.900943 = 63.06601
|
||||||
|
[06/07/2026 06:03:47] launching puck at (-3.66, -1.62) with (230.52, 102.31) force
|
||||||
|
[06/07/2026 06:03:53] force = 70 * 0.8432945 = 59.03062
|
||||||
|
[06/07/2026 06:03:53] launching puck at (-0.08, -3.49) with (4.88, 205.86) force
|
||||||
|
[06/07/2026 06:03:59] force = 70 * 0.8193294 = 57.35306
|
||||||
|
[06/07/2026 06:03:59] launching puck at (-2.91, -1.56) with (166.71, 89.68) force
|
||||||
|
[06/07/2026 06:04:10] force = 70 * 0.8415549 = 58.90884
|
||||||
|
[06/07/2026 06:04:10] launching puck at (-2.47, -2.44) with (145.41, 144.02) force
|
||||||
|
[06/07/2026 06:04:15] force = 70 * 0.7367202 = 51.57042
|
||||||
|
[06/07/2026 06:04:15] launching puck at (2.74, 0.19) with (-141.14, -10.00) force
|
||||||
|
[06/07/2026 06:04:22] force = 70 * 0.7791219 = 54.53853
|
||||||
|
[06/07/2026 06:04:22] launching puck at (-3.00, -0.32) with (163.42, 17.60) force
|
||||||
|
[06/07/2026 06:04:26] force = 70 * 0.7090057 = 49.63039
|
||||||
|
[06/07/2026 06:04:26] launching puck at (-2.51, -0.61) with (124.51, 30.38) force
|
||||||
|
[06/07/2026 06:04:38] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:04:38] launching puck at (4.44, 2.30) with (-309.34, -160.40) force
|
||||||
|
[06/07/2026 06:04:45] force = 70 * 0.8972456 = 62.80719
|
||||||
|
[06/07/2026 06:04:45] launching puck at (3.47, -1.91) with (-218.09, 120.05) force
|
||||||
|
[06/07/2026 06:04:45] Red goal scored, red score is now 1
|
||||||
|
[06/07/2026 06:05:01] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:01] launching puck at (-0.11, 5.00) with (7.80, -348.37) force
|
||||||
|
[06/07/2026 06:05:10] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:10] launching puck at (-4.82, -1.31) with (336.22, 91.51) force
|
||||||
|
[06/07/2026 06:05:22] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:22] launching puck at (3.48, 3.59) with (-242.75, -249.99) force
|
||||||
|
[06/07/2026 06:05:26] Client 15 sent emoji emote 5
|
||||||
|
[06/07/2026 06:05:31] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:31] launching puck at (-0.34, -4.99) with (23.70, 347.65) force
|
||||||
|
[06/07/2026 06:05:43] force = 70 * 0.7688848 = 53.82194
|
||||||
|
[06/07/2026 06:05:43] launching puck at (2.05, 2.12) with (-110.20, -113.98) force
|
||||||
|
[06/07/2026 06:05:49] force = 70 * 0.9561582 = 66.93107
|
||||||
|
[06/07/2026 06:05:49] launching puck at (-2.23, -3.98) with (149.57, 266.53) force
|
||||||
|
[06/07/2026 06:06:01] force = 70 * 0.532346 = 37.26422
|
||||||
|
[06/07/2026 06:06:01] launching puck at (0.04, 1.70) with (-1.38, -63.52) force
|
||||||
|
[06/07/2026 06:06:08] force = 70 * 0.9411855 = 65.88298
|
||||||
|
[06/07/2026 06:06:08] launching puck at (1.44, -4.17) with (-94.58, 274.45) force
|
||||||
|
[06/07/2026 06:06:17] force = 70 * 0.773104 = 54.11728
|
||||||
|
[06/07/2026 06:06:17] launching puck at (2.32, 1.86) with (-125.37, -100.88) force
|
||||||
|
[06/07/2026 06:06:23] force = 70 * 0.940926 = 65.86481
|
||||||
|
[06/07/2026 06:06:23] launching puck at (2.89, -3.32) with (-190.48, 218.71) force
|
||||||
|
[06/07/2026 06:06:30] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:30] launching puck at (1.82, -4.66) with (-127.17, 324.42) force
|
||||||
|
[06/07/2026 06:06:35] force = 70 * 0.9822041 = 68.75429
|
||||||
|
[06/07/2026 06:06:35] launching puck at (-4.14, -2.53) with (284.84, 173.64) force
|
||||||
|
[06/07/2026 06:06:52] force = 70 * 0.9160073 = 64.12051
|
||||||
|
[06/07/2026 06:06:52] launching puck at (3.88, -1.48) with (-248.50, 94.59) force
|
||||||
|
[06/07/2026 06:06:57] force = 70 * 0.9927014 = 69.4891
|
||||||
|
[06/07/2026 06:06:57] launching puck at (3.96, 3.00) with (-275.18, -208.47) force
|
||||||
|
[06/07/2026 06:07:10] force = 70 * 0.5638018 = 39.46613
|
||||||
|
[06/07/2026 06:07:10] launching puck at (1.55, 1.04) with (-61.13, -40.91) force
|
||||||
|
[06/07/2026 06:07:20] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:20] launching puck at (2.66, 4.23) with (-185.56, -294.93) force
|
||||||
|
[06/07/2026 06:07:27] force = 70 * 0.6872952 = 48.11066
|
||||||
|
[06/07/2026 06:07:27] launching puck at (-1.98, -1.46) with (95.48, 70.18) force
|
||||||
|
[06/07/2026 06:07:33] force = 70 * 0.7451726 = 52.16208
|
||||||
|
[06/07/2026 06:07:33] launching puck at (1.71, -2.21) with (-89.29, 115.26) force
|
||||||
|
[06/07/2026 06:07:43] force = 70 * 0.9893032 = 69.25123
|
||||||
|
[06/07/2026 06:07:43] launching puck at (-4.56, -1.87) with (316.05, 129.22) force
|
||||||
|
[06/07/2026 06:07:52] force = 70 * 0.7991247 = 55.93872
|
||||||
|
[06/07/2026 06:07:52] launching puck at (-2.42, -2.02) with (135.47, 112.88) force
|
||||||
|
[06/07/2026 06:07:57] Client 16 sent emoji emote 5
|
||||||
|
[06/07/2026 06:08:06] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:06] launching puck at (4.05, 2.94) with (-281.92, -204.80) force
|
||||||
|
[06/07/2026 06:08:13] force = 70 * 0.9050691 = 63.35484
|
||||||
|
[06/07/2026 06:08:13] launching puck at (-0.34, -4.02) with (21.47, 254.99) force
|
||||||
|
[06/07/2026 06:08:14] Red goal scored, red score is now 2
|
||||||
|
[06/07/2026 06:08:28] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:28] launching puck at (-0.01, 5.00) with (0.83, -348.45) force
|
||||||
|
[06/07/2026 06:08:37] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:37] launching puck at (-2.23, -4.48) with (155.25, 311.96) force
|
||||||
|
[06/07/2026 06:08:46] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:46] launching puck at (-4.91, 0.94) with (342.20, -65.69) force
|
||||||
|
[06/07/2026 06:08:52] force = 70 * 0.8878548 = 62.14984
|
||||||
|
[06/07/2026 06:08:52] launching puck at (-2.68, -2.80) with (166.69, 173.86) force
|
||||||
|
[06/07/2026 06:09:01] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:01] launching puck at (-2.16, 4.51) with (150.44, -314.30) force
|
||||||
|
[06/07/2026 06:09:12] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:12] launching puck at (-3.07, -3.95) with (213.79, 275.16) force
|
||||||
|
[06/07/2026 06:09:24] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:24] launching puck at (-5.00, 0.06) with (348.42, -4.52) force
|
||||||
|
[06/07/2026 06:09:37] force = 70 * 0.8335627 = 58.34939
|
||||||
|
[06/07/2026 06:09:37] launching puck at (-3.14, 1.33) with (183.16, -77.81) force
|
||||||
|
[06/07/2026 06:09:46] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:46] launching puck at (-0.68, 4.95) with (47.13, -345.25) force
|
||||||
|
[06/07/2026 06:09:54] force = 70 * 0.9484214 = 66.3895
|
||||||
|
[06/07/2026 06:09:54] launching puck at (0.11, 4.48) with (-6.99, -297.55) force
|
||||||
|
[06/07/2026 06:10:06] force = 70 * 0.7476557 = 52.3359
|
||||||
|
[06/07/2026 06:10:06] launching puck at (2.02, 1.95) with (-105.77, -102.21) force
|
||||||
|
[06/07/2026 06:10:13] force = 70 * 0.9246049 = 64.72234
|
||||||
|
[06/07/2026 06:10:13] launching puck at (0.14, 4.23) with (-8.77, -273.88) force
|
||||||
|
[06/07/2026 06:10:25] force = 70 * 0.8359277 = 58.51494
|
||||||
|
[06/07/2026 06:10:25] launching puck at (0.80, 3.33) with (-47.05, -195.07) force
|
||||||
|
[06/07/2026 06:10:34] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:34] launching puck at (1.89, 4.63) with (-131.53, -322.67) force
|
||||||
|
[06/07/2026 06:10:45] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:45] launching puck at (-4.11, 2.85) with (286.18, -198.79) force
|
||||||
|
[06/07/2026 06:10:52] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:52] launching puck at (-1.07, -4.88) with (74.81, 340.33) force
|
||||||
|
[06/07/2026 06:11:00] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:00] launching puck at (-0.35, 4.99) with (24.62, -347.58) force
|
||||||
|
[06/07/2026 06:11:07] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:07] launching puck at (4.96, 0.63) with (-345.64, -44.17) force
|
||||||
|
[06/07/2026 06:11:09] Client 16 sent emoji emote 4
|
||||||
|
[06/07/2026 06:11:12] Client 16 sent emoji emote 3
|
||||||
|
[06/07/2026 06:11:21] force = 70 * 0.9210261 = 64.47182
|
||||||
|
[06/07/2026 06:11:21] launching puck at (3.43, 2.41) with (-221.39, -155.62) force
|
||||||
|
[06/07/2026 06:11:28] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:28] launching puck at (-4.20, -2.72) with (292.47, 189.42) force
|
||||||
|
[06/07/2026 06:11:37] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:37] launching puck at (-2.00, 4.58) with (139.41, -319.35) force
|
||||||
|
[06/07/2026 06:11:44] force = 70 * 0.8788844 = 61.52191
|
||||||
|
[06/07/2026 06:11:44] launching puck at (3.78, -0.34) with (-232.45, 20.76) force
|
||||||
|
[06/07/2026 06:11:54] force = 70 * 0.9814018 = 68.69813
|
||||||
|
[06/07/2026 06:11:54] launching puck at (3.50, -3.35) with (-240.59, 229.81) force
|
||||||
|
[06/07/2026 06:11:59] force = 70 * 0.9231493 = 64.62045
|
||||||
|
[06/07/2026 06:11:59] launching puck at (-0.45, -4.19) with (29.10, 271.07) force
|
||||||
|
[06/07/2026 06:12:00] Red goal scored, red score is now 3
|
||||||
|
[06/07/2026 06:12:00] Dedicated match PATCH success: 200 {"ok":true,"id":158}
|
||||||
|
[06/07/2026 06:12:02] Dedicated match winner PATCH success: 200 {"ok":true,"id":158,"winner_id":26,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}}
|
||||||
|
[06/07/2026 06:12:14] Mirror server: client disconnected (connId=-340569927)
|
||||||
|
[06/07/2026 06:12:14] Active player connections: 1
|
||||||
|
[06/07/2026 06:12:33] Rematch requested, max bet limit coins: 441
|
||||||
|
[06/07/2026 06:13:27] Mirror server transport error (connId=1132056038, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting.
|
||||||
|
[06/07/2026 06:13:27] Mirror server: client disconnected (connId=1132056038)
|
||||||
|
[06/07/2026 06:13:27] Active player connections: 0
|
||||||
|
[06/07/2026 06:13:32] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 06:13:42] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 06:13:52] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 06:14:02] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 06:14:12] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 06:14:22] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 06:14:32] All players left, exiting
|
||||||
|
[06/07/2026 06:14:32] Dedicated match PATCH success: 200 {"ok":true,"id":158}
|
||||||
@@ -0,0 +1,81 @@
|
|||||||
|
[06/07/2026 06:01:42] Starting server at port 26999
|
||||||
|
[06/07/2026 06:01:42] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 06:01:42] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 06:01:42] Starting auto close watchdog
|
||||||
|
[06/07/2026 06:01:42] Active player connections: 0
|
||||||
|
[06/07/2026 06:01:46] Active player connections: 1
|
||||||
|
[06/07/2026 06:01:46] Active player connections: 2
|
||||||
|
[06/07/2026 06:01:46] Game started On Server
|
||||||
|
[06/07/2026 06:01:46] Client 15 set team to Red
|
||||||
|
[06/07/2026 06:01:46] Client 16 set team to Blue
|
||||||
|
[06/07/2026 06:01:47] Dedicated match PATCH success: 200 {"ok":true,"id":159}
|
||||||
|
[06/07/2026 06:01:47] Dedicated match PATCH success: 200 {"ok":true,"id":159}
|
||||||
|
[06/07/2026 06:01:50] force = 70 * 0.8816383 = 61.71468
|
||||||
|
[06/07/2026 06:01:50] launching puck at (0.69, -3.76) with (-42.41, 231.80) force
|
||||||
|
[06/07/2026 06:01:53] force = 70 * 0.2916156 = 20.41309
|
||||||
|
[06/07/2026 06:01:53] launching puck at (0.72, 0.69) with (-14.73, -14.12) force
|
||||||
|
[06/07/2026 06:02:00] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:02:00] launching puck at (-3.14, -3.89) with (218.90, 271.11) force
|
||||||
|
[06/07/2026 06:02:06] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:02:06] launching puck at (-1.20, -4.85) with (83.47, 338.31) force
|
||||||
|
[06/07/2026 06:02:13] force = 70 * 0.3806106 = 26.64274
|
||||||
|
[06/07/2026 06:02:13] launching puck at (0.92, -0.73) with (-24.62, 19.46) force
|
||||||
|
[06/07/2026 06:02:16] force = 70 * 0.3541294 = 24.78906
|
||||||
|
[06/07/2026 06:02:16] launching puck at (0.89, -0.68) with (-22.12, 16.73) force
|
||||||
|
[06/07/2026 06:02:21] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:02:21] launching puck at (-3.60, -3.47) with (250.74, 241.97) force
|
||||||
|
[06/07/2026 06:02:25] force = 70 * 0.4589597 = 32.12718
|
||||||
|
[06/07/2026 06:02:25] launching puck at (0.67, -1.23) with (-21.48, 39.44) force
|
||||||
|
[06/07/2026 06:02:32] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:02:32] launching puck at (1.57, -4.75) with (-109.27, 330.88) force
|
||||||
|
[06/07/2026 06:02:41] force = 70 * 0.8070575 = 56.49403
|
||||||
|
[06/07/2026 06:02:41] launching puck at (1.65, -2.75) with (-93.02, 155.64) force
|
||||||
|
[06/07/2026 06:02:48] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:02:48] launching puck at (-0.24, -4.99) with (16.83, 348.05) force
|
||||||
|
[06/07/2026 06:02:49] Red goal scored, red score is now 1
|
||||||
|
[06/07/2026 06:03:00] force = 70 * 0.8816305 = 61.71414
|
||||||
|
[06/07/2026 06:03:00] launching puck at (-0.36, -3.80) with (22.12, 234.60) force
|
||||||
|
[06/07/2026 06:03:07] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:03:07] launching puck at (0.43, -4.98) with (-30.12, 347.15) force
|
||||||
|
[06/07/2026 06:03:11] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:03:11] launching puck at (2.01, 4.58) with (-140.42, -318.91) force
|
||||||
|
[06/07/2026 06:03:17] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:03:17] launching puck at (-1.56, -4.75) with (108.63, 331.09) force
|
||||||
|
[06/07/2026 06:03:17] Red goal scored, red score is now 2
|
||||||
|
[06/07/2026 06:03:23] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:03:23] launching puck at (-0.33, 4.99) with (22.82, -347.71) force
|
||||||
|
[06/07/2026 06:03:29] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:03:29] launching puck at (4.85, 1.22) with (-337.92, -85.05) force
|
||||||
|
[06/07/2026 06:03:33] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:03:33] launching puck at (0.33, 4.99) with (-22.82, -347.70) force
|
||||||
|
[06/07/2026 06:03:42] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:03:42] launching puck at (0.92, -4.91) with (-64.00, 342.52) force
|
||||||
|
[06/07/2026 06:03:45] force = 70 * 0.9365066 = 65.55546
|
||||||
|
[06/07/2026 06:03:45] launching puck at (-3.90, 1.94) with (255.66, -127.34) force
|
||||||
|
[06/07/2026 06:03:50] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:03:50] launching puck at (1.27, -4.84) with (-88.65, 336.99) force
|
||||||
|
[06/07/2026 06:03:55] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:03:55] launching puck at (-3.45, 3.61) with (240.74, -251.92) force
|
||||||
|
[06/07/2026 06:04:00] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:04:00] launching puck at (1.38, -4.81) with (-96.26, 334.89) force
|
||||||
|
[06/07/2026 06:04:04] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:04:04] launching puck at (-4.70, 1.72) with (327.22, -119.78) force
|
||||||
|
[06/07/2026 06:04:14] force = 70 * 0.7100337 = 49.70236
|
||||||
|
[06/07/2026 06:04:14] launching puck at (2.49, -0.71) with (-123.71, 35.24) force
|
||||||
|
[06/07/2026 06:04:15] Red goal scored, red score is now 3
|
||||||
|
[06/07/2026 06:04:15] Dedicated match PATCH success: 200 {"ok":true,"id":159}
|
||||||
|
[06/07/2026 06:04:17] Dedicated match winner PATCH success: 200 {"ok":true,"id":159,"winner_id":24,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}}
|
||||||
|
[06/07/2026 06:04:28] Rematch requested, max bet limit coins: 500
|
||||||
|
[06/07/2026 06:04:33] Rematch was confirmed, closing in 5 secs. new room :
|
||||||
|
[06/07/2026 06:04:33] {"ok":true,"entry_fee":79,"rc_prize":130,"for_red":{"Players":[{"Name":"Misty","LastSeen":1780812273881,"l10_wins":1,"l10_losses":0,"UserId":24,"rc":0.0},{"Name":"adesa","LastSeen":1780812273881,"l10_wins":0,"l10_losses":1,"UserId":51,"rc":0.0}],"GameName":"soccar","Port":26789,"InitTime":1780812273881,"instance_started":true,"match_id":165,"entry_fee":79,"rc_prize":130,"your_team":"red"},"for_blue":{"Players":[{"Name":"Misty","LastSeen":1780812273881,"l10_wins":1,"l10_losses":0,"UserId":24,"rc":0.0},{"Name":"adesa","LastSeen":1780812273881,"l10_wins":0,"l10_losses":1,"UserId":51,"rc":0.0}],"GameName":"soccar","Port":26789,"InitTime":1780812273881,"instance_started":true,"match_id":165,"entry_fee":79,"rc_prize":130,"your_team":"blue"},"your_team":""}
|
||||||
|
[06/07/2026 06:04:34] Mirror server: client disconnected (connId=-1980054311)
|
||||||
|
[06/07/2026 06:04:34] Mirror server: client disconnected (connId=912659699)
|
||||||
|
[06/07/2026 06:04:34] Active player connections: 0
|
||||||
|
[06/07/2026 06:04:39] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 06:04:49] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 06:04:59] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 06:05:09] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 06:05:19] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 06:05:29] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 06:05:39] All players left, exiting
|
||||||
|
[06/07/2026 06:05:39] Dedicated match PATCH success: 200 {"ok":true,"id":159}
|
||||||
@@ -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,61 @@
|
|||||||
|
[06/07/2026 06:01:59] Starting server at port 26822
|
||||||
|
[06/07/2026 06:01:59] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 06:01:59] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 06:01:59] Starting auto close watchdog
|
||||||
|
[06/07/2026 06:01:59] Active player connections: 0
|
||||||
|
[06/07/2026 06:02:00] Active player connections: 1
|
||||||
|
[06/07/2026 06:02:01] Client 15 set team to Red
|
||||||
|
[06/07/2026 06:02:02] Dedicated match PATCH success: 200 {"ok":true,"id":160}
|
||||||
|
[06/07/2026 06:02:03] Active player connections: 2
|
||||||
|
[06/07/2026 06:02:03] Game started On Server
|
||||||
|
[06/07/2026 06:02:04] Client 16 set team to Blue
|
||||||
|
[06/07/2026 06:02:04] Dedicated match PATCH success: 200 {"ok":true,"id":160}
|
||||||
|
[06/07/2026 06:02:04] Active player connections: 3
|
||||||
|
[06/07/2026 06:02:05] Mirror server: client disconnected (connId=303647382)
|
||||||
|
[06/07/2026 06:02:05] Active player connections: 2
|
||||||
|
[06/07/2026 06:02:06] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:02:06] launching puck at (-0.16, -5.00) with (10.84, 348.28) force
|
||||||
|
[06/07/2026 06:02:12] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:02:12] launching puck at (-2.45, -4.36) with (170.87, 303.68) force
|
||||||
|
[06/07/2026 06:02:17] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:02:17] launching puck at (1.39, -4.80) with (-96.82, 334.73) force
|
||||||
|
[06/07/2026 06:02:23] force = 70 * 0.7266026 = 50.86218
|
||||||
|
[06/07/2026 06:02:23] launching puck at (-1.27, -2.37) with (64.35, 120.36) force
|
||||||
|
[06/07/2026 06:02:29] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:02:29] launching puck at (1.03, -4.89) with (-71.80, 340.98) force
|
||||||
|
[06/07/2026 06:02:30] Red goal scored, red score is now 1
|
||||||
|
[06/07/2026 06:02:33] Client 15 sent emoji emote 5
|
||||||
|
[06/07/2026 06:02:35] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:02:35] launching puck at (-0.03, -5.00) with (2.27, 348.45) force
|
||||||
|
[06/07/2026 06:02:40] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:02:40] launching puck at (0.14, -5.00) with (-9.67, 348.32) force
|
||||||
|
[06/07/2026 06:02:47] force = 70 * 0.6251687 = 43.76181
|
||||||
|
[06/07/2026 06:02:47] launching puck at (-1.46, -1.58) with (63.76, 69.27) force
|
||||||
|
[06/07/2026 06:02:53] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:02:53] launching puck at (-1.61, -4.73) with (112.20, 329.90) force
|
||||||
|
[06/07/2026 06:02:53] Red goal scored, red score is now 2
|
||||||
|
[06/07/2026 06:02:57] Client 15 sent emoji emote 5
|
||||||
|
[06/07/2026 06:03:14] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:03:14] launching puck at (0.31, -4.99) with (-21.45, 347.79) force
|
||||||
|
[06/07/2026 06:03:23] force = 70 * 0.9459652 = 66.21756
|
||||||
|
[06/07/2026 06:03:23] launching puck at (2.85, -3.43) with (-188.51, 227.07) force
|
||||||
|
[06/07/2026 06:03:28] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:03:28] launching puck at (-0.91, -4.92) with (63.55, 342.61) force
|
||||||
|
[06/07/2026 06:03:28] Red goal scored, red score is now 3
|
||||||
|
[06/07/2026 06:03:28] Dedicated match PATCH success: 200 {"ok":true,"id":160}
|
||||||
|
[06/07/2026 06:03:30] Dedicated match winner PATCH success: 200 {"ok":true,"id":160,"winner_id":46,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}}
|
||||||
|
[06/07/2026 06:03:43] Rematch requested, max bet limit coins: 500
|
||||||
|
[06/07/2026 06:03:48] Rematch was confirmed, closing in 5 secs. new room :
|
||||||
|
[06/07/2026 06:03:48] {"ok":true,"entry_fee":199,"rc_prize":330,"for_red":{"Players":[{"Name":"ris","LastSeen":1780812228782,"l10_wins":1,"l10_losses":0,"UserId":46,"rc":0.0},{"Name":"joy grace","LastSeen":1780812228782,"l10_wins":0,"l10_losses":0,"UserId":48,"rc":0.0}],"GameName":"soccar","Port":26606,"InitTime":1780812228782,"instance_started":true,"match_id":163,"entry_fee":199,"rc_prize":330,"your_team":"red"},"for_blue":{"Players":[{"Name":"ris","LastSeen":1780812228782,"l10_wins":1,"l10_losses":0,"UserId":46,"rc":0.0},{"Name":"joy grace","LastSeen":1780812228782,"l10_wins":0,"l10_losses":0,"UserId":48,"rc":0.0}],"GameName":"soccar","Port":26606,"InitTime":1780812228782,"instance_started":true,"match_id":163,"entry_fee":199,"rc_prize":330,"your_team":"blue"},"your_team":""}
|
||||||
|
[06/07/2026 06:03:48] Mirror server: client disconnected (connId=1990932584)
|
||||||
|
[06/07/2026 06:03:48] Active player connections: 1
|
||||||
|
[06/07/2026 06:03:49] Mirror server: client disconnected (connId=-1154306517)
|
||||||
|
[06/07/2026 06:03:49] Active player connections: 0
|
||||||
|
[06/07/2026 06:03:54] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 06:04:04] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 06:04:14] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 06:04:24] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 06:04:34] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 06:04:44] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 06:04:54] All players left, exiting
|
||||||
|
[06/07/2026 06:04:54] Dedicated match PATCH success: 200 {"ok":true,"id":160}
|
||||||
@@ -0,0 +1,44 @@
|
|||||||
|
[06/07/2026 06:02:39] Starting server at port 26392
|
||||||
|
[06/07/2026 06:02:39] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 06:02:40] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 06:02:40] Starting auto close watchdog
|
||||||
|
[06/07/2026 06:02:40] Active player connections: 0
|
||||||
|
[06/07/2026 06:02:42] Active player connections: 1
|
||||||
|
[06/07/2026 06:02:43] Client 15 set team to Blue
|
||||||
|
[06/07/2026 06:02:43] Dedicated match PATCH success: 200 {"ok":true,"id":161}
|
||||||
|
[06/07/2026 06:02:44] Active player connections: 2
|
||||||
|
[06/07/2026 06:02:44] Game started On Server
|
||||||
|
[06/07/2026 06:02:44] Client 16 set team to Blue
|
||||||
|
[06/07/2026 06:03:04] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:03:04] launching puck at (0.01, 5.00) with (-0.47, -348.45) force
|
||||||
|
[06/07/2026 06:03:25] force = 70 * 0.2961372 = 20.7296
|
||||||
|
[06/07/2026 06:03:25] launching puck at (-0.96, -0.31) with (19.87, 6.43) force
|
||||||
|
[06/07/2026 06:03:45] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:03:45] launching puck at (2.07, -4.55) with (-144.17, 317.23) force
|
||||||
|
[06/07/2026 06:04:06] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:04:06] launching puck at (-2.00, 4.58) with (139.72, -319.22) force
|
||||||
|
[06/07/2026 06:04:07] Blue goal scored, blue score is now 1
|
||||||
|
[06/07/2026 06:04:28] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:04:28] launching puck at (0.15, 5.00) with (-10.47, -348.30) force
|
||||||
|
[06/07/2026 06:04:49] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:04:49] launching puck at (0.70, 4.95) with (-48.92, -345.00) force
|
||||||
|
[06/07/2026 06:04:49] Blue goal scored, blue score is now 2
|
||||||
|
[06/07/2026 06:05:10] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:10] launching puck at (0.10, 5.00) with (-7.12, -348.38) force
|
||||||
|
[06/07/2026 06:05:31] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:31] launching puck at (-0.50, 4.98) with (34.64, -346.73) force
|
||||||
|
[06/07/2026 06:05:31] Blue goal scored, blue score is now 3
|
||||||
|
[06/07/2026 06:05:31] Dedicated match PATCH success: 200 {"ok":true,"id":161}
|
||||||
|
[06/07/2026 06:05:33] Dedicated match winner PATCH success: 200 {"ok":true,"id":161,"winner_id":36,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}}
|
||||||
|
[06/07/2026 06:06:02] Mirror server: client disconnected (connId=1190221290)
|
||||||
|
[06/07/2026 06:06:02] Active player connections: 1
|
||||||
|
[06/07/2026 06:06:03] Mirror server: client disconnected (connId=1804780383)
|
||||||
|
[06/07/2026 06:06:03] Active player connections: 0
|
||||||
|
[06/07/2026 06:06:08] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 06:06:18] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 06:06:28] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 06:06:38] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 06:06:48] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 06:06:58] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 06:07:08] All players left, exiting
|
||||||
|
[06/07/2026 06:07:08] Dedicated match PATCH success: 200 {"ok":true,"id":161}
|
||||||
@@ -0,0 +1,42 @@
|
|||||||
|
[06/07/2026 06:03:38] Starting server at port 26073
|
||||||
|
[06/07/2026 06:03:38] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 06:03:38] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 06:03:38] Starting auto close watchdog
|
||||||
|
[06/07/2026 06:03:38] Active player connections: 0
|
||||||
|
[06/07/2026 06:03:41] Active player connections: 1
|
||||||
|
[06/07/2026 06:03:41] Active player connections: 2
|
||||||
|
[06/07/2026 06:03:41] Game started On Server
|
||||||
|
[06/07/2026 06:03:41] Client 15 set team to Blue
|
||||||
|
[06/07/2026 06:03:42] Client 16 set team to Red
|
||||||
|
[06/07/2026 06:03:42] Dedicated match PATCH success: 200 {"ok":true,"id":162}
|
||||||
|
[06/07/2026 06:03:42] Dedicated match PATCH success: 200 {"ok":true,"id":162}
|
||||||
|
[06/07/2026 06:03:46] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:03:46] launching puck at (-0.04, -5.00) with (2.78, 348.44) force
|
||||||
|
[06/07/2026 06:03:53] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:03:53] launching puck at (-0.34, 4.99) with (23.91, -347.63) force
|
||||||
|
[06/07/2026 06:03:59] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:03:59] launching puck at (-2.56, -4.29) with (178.57, 299.22) force
|
||||||
|
[06/07/2026 06:04:05] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:04:05] launching puck at (-1.40, 4.80) with (97.82, -334.44) force
|
||||||
|
[06/07/2026 06:04:12] Mirror server: client disconnected (connId=-1006369734)
|
||||||
|
[06/07/2026 06:04:12] Active player connections: 1
|
||||||
|
[06/07/2026 06:04:28] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:04:28] launching puck at (0.04, 5.00) with (-2.71, -348.44) force
|
||||||
|
[06/07/2026 06:04:29] Blue goal scored, blue score is now 1
|
||||||
|
[06/07/2026 06:04:50] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:04:50] launching puck at (-0.02, 5.00) with (1.55, -348.45) force
|
||||||
|
[06/07/2026 06:05:43] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:43] launching puck at (4.63, 1.88) with (-322.87, -131.04) force
|
||||||
|
[06/07/2026 06:06:15] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:15] launching puck at (4.96, -0.62) with (-345.80, 42.95) force
|
||||||
|
[06/07/2026 06:07:09] Mirror server transport error (connId=-412352600, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting.
|
||||||
|
[06/07/2026 06:07:09] Mirror server: client disconnected (connId=-412352600)
|
||||||
|
[06/07/2026 06:07:09] Active player connections: 0
|
||||||
|
[06/07/2026 06:07:14] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 06:07:24] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 06:07:34] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 06:07:44] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 06:07:54] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 06:08:04] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 06:08:14] All players left, exiting
|
||||||
|
[06/07/2026 06:08:15] Dedicated match PATCH success: 200 {"ok":true,"id":162}
|
||||||
@@ -0,0 +1,140 @@
|
|||||||
|
[06/07/2026 06:03:51] Starting server at port 26606
|
||||||
|
[06/07/2026 06:03:51] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 06:03:51] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 06:03:51] Starting auto close watchdog
|
||||||
|
[06/07/2026 06:03:51] Active player connections: 0
|
||||||
|
[06/07/2026 06:03:53] Active player connections: 1
|
||||||
|
[06/07/2026 06:03:53] Client 15 set team to Red
|
||||||
|
[06/07/2026 06:03:54] Dedicated match PATCH success: 200 {"ok":true,"id":163}
|
||||||
|
[06/07/2026 06:03:54] Active player connections: 2
|
||||||
|
[06/07/2026 06:03:54] Game started On Server
|
||||||
|
[06/07/2026 06:03:54] Client 16 set team to Blue
|
||||||
|
[06/07/2026 06:03:54] Dedicated match PATCH success: 200 {"ok":true,"id":163}
|
||||||
|
[06/07/2026 06:03:57] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:03:57] launching puck at (-0.09, -5.00) with (6.45, 348.39) force
|
||||||
|
[06/07/2026 06:04:02] force = 70 * 0.7620342 = 53.3424
|
||||||
|
[06/07/2026 06:04:02] launching puck at (-0.17, 2.90) with (8.89, -154.50) force
|
||||||
|
[06/07/2026 06:04:08] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:04:08] launching puck at (0.23, -4.99) with (-16.20, 348.08) force
|
||||||
|
[06/07/2026 06:04:14] force = 70 * 0.8444455 = 59.11118
|
||||||
|
[06/07/2026 06:04:14] launching puck at (-2.17, 2.75) with (128.07, -162.31) force
|
||||||
|
[06/07/2026 06:04:19] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:04:19] launching puck at (-3.44, -3.62) with (240.00, 252.62) force
|
||||||
|
[06/07/2026 06:04:26] force = 70 * 0.7495584 = 52.46909
|
||||||
|
[06/07/2026 06:04:26] launching puck at (-1.43, 2.43) with (75.06, -127.65) force
|
||||||
|
[06/07/2026 06:04:31] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:04:31] launching puck at (-2.41, -4.38) with (168.16, 305.19) force
|
||||||
|
[06/07/2026 06:04:37] force = 70 * 0.8521633 = 59.65143
|
||||||
|
[06/07/2026 06:04:37] launching puck at (0.07, 3.56) with (-3.94, -212.40) force
|
||||||
|
[06/07/2026 06:04:44] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:04:44] launching puck at (-4.99, -0.27) with (347.95, 18.66) force
|
||||||
|
[06/07/2026 06:04:51] force = 70 * 0.9897159 = 69.28011
|
||||||
|
[06/07/2026 06:04:51] launching puck at (-0.67, 4.89) with (46.72, -338.70) force
|
||||||
|
[06/07/2026 06:04:58] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:04:58] launching puck at (-1.57, 4.75) with (109.25, -330.88) force
|
||||||
|
[06/07/2026 06:05:07] force = 70 * 0.9105327 = 63.73729
|
||||||
|
[06/07/2026 06:05:07] launching puck at (1.96, 3.59) with (-125.04, -228.92) force
|
||||||
|
[06/07/2026 06:05:13] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:13] launching puck at (-3.63, -3.43) with (253.23, 239.36) force
|
||||||
|
[06/07/2026 06:05:21] force = 70 * 0.8215296 = 57.50707
|
||||||
|
[06/07/2026 06:05:21] launching puck at (1.54, 2.94) with (-88.53, -168.98) force
|
||||||
|
[06/07/2026 06:05:26] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:26] launching puck at (0.84, -4.93) with (-58.62, 343.49) force
|
||||||
|
[06/07/2026 06:05:35] force = 70 * 0.9729728 = 68.10809
|
||||||
|
[06/07/2026 06:05:35] launching puck at (0.15, 4.75) with (-9.92, -323.37) force
|
||||||
|
[06/07/2026 06:05:42] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:42] launching puck at (-0.20, -5.00) with (13.94, 348.17) force
|
||||||
|
[06/07/2026 06:05:49] force = 70 * 0.9467139 = 66.26997
|
||||||
|
[06/07/2026 06:05:49] launching puck at (4.02, 1.95) with (-266.33, -128.90) force
|
||||||
|
[06/07/2026 06:05:55] force = 70 * 0.891193 = 62.38351
|
||||||
|
[06/07/2026 06:05:55] launching puck at (0.57, 3.86) with (-35.72, -241.07) force
|
||||||
|
[06/07/2026 06:06:07] force = 70 * 0.9261054 = 64.82738
|
||||||
|
[06/07/2026 06:06:07] launching puck at (1.24, 4.06) with (-80.21, -263.52) force
|
||||||
|
[06/07/2026 06:06:12] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:12] launching puck at (0.27, -4.99) with (-18.78, 347.95) force
|
||||||
|
[06/07/2026 06:06:19] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:19] launching puck at (4.18, 2.75) with (-291.19, -191.39) force
|
||||||
|
[06/07/2026 06:06:24] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:24] launching puck at (2.53, 4.31) with (-176.16, -300.64) force
|
||||||
|
[06/07/2026 06:06:32] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:32] launching puck at (2.48, 4.34) with (-172.72, -302.63) force
|
||||||
|
[06/07/2026 06:06:38] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:38] launching puck at (4.61, -1.93) with (-321.35, 134.73) force
|
||||||
|
[06/07/2026 06:06:45] force = 70 * 0.7829296 = 54.80507
|
||||||
|
[06/07/2026 06:06:45] launching puck at (-0.59, 2.98) with (32.59, -163.36) force
|
||||||
|
[06/07/2026 06:06:51] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:51] launching puck at (1.06, 4.89) with (-74.04, -340.50) force
|
||||||
|
[06/07/2026 06:06:58] force = 70 * 0.8699514 = 60.8966
|
||||||
|
[06/07/2026 06:06:58] launching puck at (-2.05, 3.09) with (125.04, -188.44) force
|
||||||
|
[06/07/2026 06:07:03] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:03] launching puck at (0.95, -4.91) with (-66.01, 342.14) force
|
||||||
|
[06/07/2026 06:07:10] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:10] launching puck at (-0.61, 4.96) with (42.65, -345.83) force
|
||||||
|
[06/07/2026 06:07:10] Blue goal scored, blue score is now 1
|
||||||
|
[06/07/2026 06:07:13] Client 15 sent emoji emote 1
|
||||||
|
[06/07/2026 06:07:16] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:16] launching puck at (-0.01, -5.00) with (0.94, 348.45) force
|
||||||
|
[06/07/2026 06:07:31] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:31] launching puck at (0.85, 4.93) with (-59.49, -343.34) force
|
||||||
|
[06/07/2026 06:07:38] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:38] launching puck at (2.20, -4.49) with (-153.37, 312.88) force
|
||||||
|
[06/07/2026 06:07:44] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:44] launching puck at (1.41, 4.80) with (-98.09, -334.36) force
|
||||||
|
[06/07/2026 06:07:50] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:50] launching puck at (-1.75, -4.68) with (122.27, 326.30) force
|
||||||
|
[06/07/2026 06:07:50] Red goal scored, red score is now 1
|
||||||
|
[06/07/2026 06:07:54] Client 15 sent emoji emote 5
|
||||||
|
[06/07/2026 06:07:56] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:56] launching puck at (-0.27, 4.99) with (18.66, -347.95) force
|
||||||
|
[06/07/2026 06:08:02] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:02] launching puck at (3.57, -3.50) with (-249.00, 243.76) force
|
||||||
|
[06/07/2026 06:08:08] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:08] launching puck at (2.69, 4.21) with (-187.67, -293.60) force
|
||||||
|
[06/07/2026 06:08:13] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:13] launching puck at (0.13, -5.00) with (-9.31, 348.33) force
|
||||||
|
[06/07/2026 06:08:14] Red goal scored, red score is now 2
|
||||||
|
[06/07/2026 06:08:18] Client 15 sent emoji emote 0
|
||||||
|
[06/07/2026 06:08:21] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:21] launching puck at (0.94, 4.91) with (-65.68, -342.21) force
|
||||||
|
[06/07/2026 06:08:26] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:26] launching puck at (-3.26, -3.79) with (226.94, 264.42) force
|
||||||
|
[06/07/2026 06:08:37] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:37] launching puck at (-4.28, -2.59) with (297.95, 180.68) force
|
||||||
|
[06/07/2026 06:08:43] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:43] launching puck at (-0.59, -4.96) with (41.30, 346.00) force
|
||||||
|
[06/07/2026 06:08:49] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:49] launching puck at (-5.00, -0.03) with (348.45, 2.15) force
|
||||||
|
[06/07/2026 06:08:56] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:56] launching puck at (-2.11, 4.53) with (147.08, -315.89) force
|
||||||
|
[06/07/2026 06:09:05] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:05] launching puck at (-5.00, 0.16) with (348.27, -11.43) force
|
||||||
|
[06/07/2026 06:09:10] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:10] launching puck at (-4.73, -1.61) with (329.80, 112.47) force
|
||||||
|
[06/07/2026 06:09:16] force = 70 * 0.9666352 = 67.66446
|
||||||
|
[06/07/2026 06:09:16] launching puck at (-2.60, 3.89) with (175.95, -263.33) force
|
||||||
|
[06/07/2026 06:09:16] Blue goal scored, blue score is now 2
|
||||||
|
[06/07/2026 06:09:18] Client 15 sent emoji emote 0
|
||||||
|
[06/07/2026 06:09:22] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:22] launching puck at (0.00, -5.00) with (0.06, 348.45) force
|
||||||
|
[06/07/2026 06:09:27] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:27] launching puck at (0.21, 5.00) with (-14.72, -348.14) force
|
||||||
|
[06/07/2026 06:09:33] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:33] launching puck at (1.11, -4.87) with (-77.62, 339.70) force
|
||||||
|
[06/07/2026 06:09:33] Red goal scored, red score is now 3
|
||||||
|
[06/07/2026 06:09:33] Dedicated match PATCH success: 200 {"ok":true,"id":163}
|
||||||
|
[06/07/2026 06:09:35] Dedicated match winner PATCH success: 200 {"ok":true,"id":163,"winner_id":46,"economy":{"entry_fee_rc":199,"rc_prize":330,"participant_cc":100}}
|
||||||
|
[06/07/2026 06:09:46] Rematch requested, max bet limit coins: 500
|
||||||
|
[06/07/2026 06:09:51] Rematch was confirmed, closing in 5 secs. new room :
|
||||||
|
[06/07/2026 06:09:51] {"ok":true,"entry_fee":421,"rc_prize":698,"for_red":{"Players":[{"Name":"ris","LastSeen":1780812591135,"l10_wins":2,"l10_losses":0,"UserId":46,"rc":0.0},{"Name":"joy grace","LastSeen":1780812591135,"l10_wins":0,"l10_losses":1,"UserId":48,"rc":0.0}],"GameName":"soccar","Port":26879,"InitTime":1780812591135,"instance_started":true,"match_id":172,"entry_fee":421,"rc_prize":698,"your_team":"red"},"for_blue":{"Players":[{"Name":"ris","LastSeen":1780812591135,"l10_wins":2,"l10_losses":0,"UserId":46,"rc":0.0},{"Name":"joy grace","LastSeen":1780812591135,"l10_wins":0,"l10_losses":1,"UserId":48,"rc":0.0}],"GameName":"soccar","Port":26879,"InitTime":1780812591135,"instance_started":true,"match_id":172,"entry_fee":421,"rc_prize":698,"your_team":"blue"},"your_team":""}
|
||||||
|
[06/07/2026 06:09:51] Mirror server: client disconnected (connId=1990968539)
|
||||||
|
[06/07/2026 06:09:51] Active player connections: 1
|
||||||
|
[06/07/2026 06:09:51] Mirror server: client disconnected (connId=-1154316848)
|
||||||
|
[06/07/2026 06:09:51] Active player connections: 0
|
||||||
|
[06/07/2026 06:09:56] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 06:10:06] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 06:10:16] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 06:10:26] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 06:10:36] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 06:10:46] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 06:10:56] All players left, exiting
|
||||||
|
[06/07/2026 06:10:56] Dedicated match PATCH success: 200 {"ok":true,"id":163}
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
[06/07/2026 06:04:24] Starting server at port 26527
|
||||||
|
[06/07/2026 06:04:24] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 06:04:24] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 06:04:24] Starting auto close watchdog
|
||||||
|
[06/07/2026 06:04:24] Active player connections: 0
|
||||||
|
[06/07/2026 06:04:25] Active player connections: 1
|
||||||
|
[06/07/2026 06:04:25] Client 15 set team to Blue
|
||||||
|
[06/07/2026 06:04:26] Dedicated match PATCH success: 200 {"ok":true,"id":164}
|
||||||
|
[06/07/2026 06:04:41] Mirror server: client disconnected (connId=303660113)
|
||||||
|
[06/07/2026 06:04:41] Active player connections: 0
|
||||||
|
[06/07/2026 06:04:46] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 06:04:56] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 06:05:06] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 06:05:16] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 06:05:26] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 06:05:36] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 06:05:46] All players left, exiting
|
||||||
|
[06/07/2026 06:05:46] Dedicated match PATCH success: 200 {"ok":true,"id":164}
|
||||||
@@ -0,0 +1,92 @@
|
|||||||
|
[06/07/2026 06:04:38] Starting server at port 26789
|
||||||
|
[06/07/2026 06:04:38] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 06:04:38] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 06:04:38] Starting auto close watchdog
|
||||||
|
[06/07/2026 06:04:38] Active player connections: 0
|
||||||
|
[06/07/2026 06:04:39] Active player connections: 2
|
||||||
|
[06/07/2026 06:04:39] Game started On Server
|
||||||
|
[06/07/2026 06:04:39] Client 15 set team to Red
|
||||||
|
[06/07/2026 06:04:39] Client 16 set team to Blue
|
||||||
|
[06/07/2026 06:04:40] Dedicated match PATCH success: 200 {"ok":true,"id":165}
|
||||||
|
[06/07/2026 06:04:40] Dedicated match PATCH success: 200 {"ok":true,"id":165}
|
||||||
|
[06/07/2026 06:04:45] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:04:45] launching puck at (-0.58, -4.97) with (40.59, 346.08) force
|
||||||
|
[06/07/2026 06:04:50] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:04:50] launching puck at (2.81, 4.14) with (-195.58, -288.39) force
|
||||||
|
[06/07/2026 06:04:56] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:04:56] launching puck at (-2.01, -4.58) with (140.12, 319.04) force
|
||||||
|
[06/07/2026 06:04:56] Red goal scored, red score is now 1
|
||||||
|
[06/07/2026 06:05:02] force = 70 * 0.3106114 = 21.7428
|
||||||
|
[06/07/2026 06:05:02] launching puck at (0.01, -1.03) with (-0.16, 22.47) force
|
||||||
|
[06/07/2026 06:05:08] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:08] launching puck at (0.29, -4.99) with (-19.89, 347.89) force
|
||||||
|
[06/07/2026 06:05:12] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:12] launching puck at (0.26, 4.99) with (-18.43, -347.97) force
|
||||||
|
[06/07/2026 06:05:19] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:19] launching puck at (2.00, -4.58) with (-139.43, 319.34) force
|
||||||
|
[06/07/2026 06:05:24] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:24] launching puck at (0.56, 4.97) with (-38.99, -346.26) force
|
||||||
|
[06/07/2026 06:05:29] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:29] launching puck at (3.26, -3.79) with (-227.09, 264.29) force
|
||||||
|
[06/07/2026 06:05:35] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:35] launching puck at (3.61, 3.46) with (-251.58, -241.10) force
|
||||||
|
[06/07/2026 06:05:40] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:40] launching puck at (1.27, -4.84) with (-88.26, 337.09) force
|
||||||
|
[06/07/2026 06:05:45] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:45] launching puck at (-1.46, 4.78) with (101.77, -333.26) force
|
||||||
|
[06/07/2026 06:05:51] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:51] launching puck at (-3.60, 3.47) with (251.06, -241.64) force
|
||||||
|
[06/07/2026 06:05:58] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:58] launching puck at (0.10, 5.00) with (-6.79, -348.39) force
|
||||||
|
[06/07/2026 06:06:03] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:03] launching puck at (-4.96, 0.64) with (345.58, -44.66) force
|
||||||
|
[06/07/2026 06:06:10] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:10] launching puck at (-3.03, 3.98) with (211.06, -277.26) force
|
||||||
|
[06/07/2026 06:06:18] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:18] launching puck at (-2.12, -4.53) with (147.82, 315.54) force
|
||||||
|
[06/07/2026 06:06:19] Red goal scored, red score is now 2
|
||||||
|
[06/07/2026 06:06:25] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:25] launching puck at (0.47, 4.98) with (-32.92, -346.89) force
|
||||||
|
[06/07/2026 06:06:31] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:31] launching puck at (-4.95, 0.70) with (344.98, -49.08) force
|
||||||
|
[06/07/2026 06:06:38] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:38] launching puck at (1.88, 4.63) with (-130.88, -322.94) force
|
||||||
|
[06/07/2026 06:06:44] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:44] launching puck at (4.51, -2.16) with (-314.13, 150.81) force
|
||||||
|
[06/07/2026 06:06:51] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:51] launching puck at (4.86, 1.18) with (-338.53, -82.57) force
|
||||||
|
[06/07/2026 06:06:59] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:59] launching puck at (4.90, -0.98) with (-341.64, 68.58) force
|
||||||
|
[06/07/2026 06:07:05] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:05] launching puck at (2.82, 4.13) with (-196.54, -287.73) force
|
||||||
|
[06/07/2026 06:07:10] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:10] launching puck at (5.00, 0.10) with (-348.38, -6.98) force
|
||||||
|
[06/07/2026 06:07:16] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:16] launching puck at (4.06, 2.92) with (-282.82, -203.55) force
|
||||||
|
[06/07/2026 06:07:23] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:23] launching puck at (5.00, 0.15) with (-348.29, -10.59) force
|
||||||
|
[06/07/2026 06:07:29] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:29] launching puck at (3.19, 3.85) with (-222.36, -268.29) force
|
||||||
|
[06/07/2026 06:07:33] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:33] launching puck at (3.53, 3.54) with (-246.05, -246.73) force
|
||||||
|
[06/07/2026 06:07:39] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:39] launching puck at (3.80, 3.25) with (-265.01, -226.25) force
|
||||||
|
[06/07/2026 06:07:46] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:46] launching puck at (0.14, -5.00) with (-9.46, 348.32) force
|
||||||
|
[06/07/2026 06:07:55] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:55] launching puck at (1.15, -4.87) with (-80.18, 339.10) force
|
||||||
|
[06/07/2026 06:07:56] Red goal scored, red score is now 3
|
||||||
|
[06/07/2026 06:07:56] Dedicated match PATCH success: 200 {"ok":true,"id":165}
|
||||||
|
[06/07/2026 06:07:58] Dedicated match winner PATCH success: 200 {"ok":true,"id":165,"winner_id":24,"economy":{"entry_fee_rc":79,"rc_prize":130,"participant_cc":100}}
|
||||||
|
[06/07/2026 06:08:07] Mirror server: client disconnected (connId=912702551)
|
||||||
|
[06/07/2026 06:08:07] Active player connections: 1
|
||||||
|
[06/07/2026 06:08:13] Mirror server: client disconnected (connId=-1980051880)
|
||||||
|
[06/07/2026 06:08:13] Active player connections: 0
|
||||||
|
[06/07/2026 06:08:18] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 06:08:28] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 06:08:38] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 06:08:48] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 06:08:58] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 06:09:08] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 06:09:18] All players left, exiting
|
||||||
|
[06/07/2026 06:09:18] Dedicated match PATCH success: 200 {"ok":true,"id":165}
|
||||||
@@ -0,0 +1,191 @@
|
|||||||
|
[06/07/2026 06:05:01] Starting server at port 26155
|
||||||
|
[06/07/2026 06:05:01] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 06:05:01] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 06:05:01] Starting auto close watchdog
|
||||||
|
[06/07/2026 06:05:01] Active player connections: 0
|
||||||
|
[06/07/2026 06:05:03] Active player connections: 1
|
||||||
|
[06/07/2026 06:05:03] Client 15 set team to Red
|
||||||
|
[06/07/2026 06:05:03] Active player connections: 2
|
||||||
|
[06/07/2026 06:05:03] Game started On Server
|
||||||
|
[06/07/2026 06:05:03] Dedicated match PATCH success: 200 {"ok":true,"id":166}
|
||||||
|
[06/07/2026 06:05:04] Client 16 set team to Blue
|
||||||
|
[06/07/2026 06:05:04] Dedicated match PATCH success: 200 {"ok":true,"id":166}
|
||||||
|
[06/07/2026 06:05:18] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:18] launching puck at (0.13, -5.00) with (-9.35, 348.33) force
|
||||||
|
[06/07/2026 06:05:22] force = 70 * 0.8129931 = 56.90952
|
||||||
|
[06/07/2026 06:05:22] launching puck at (2.45, -2.14) with (-139.22, 122.03) force
|
||||||
|
[06/07/2026 06:05:27] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:27] launching puck at (-0.28, -4.99) with (19.76, 347.89) force
|
||||||
|
[06/07/2026 06:05:36] force = 70 * 0.9765382 = 68.35767
|
||||||
|
[06/07/2026 06:05:36] launching puck at (1.69, 4.48) with (-115.40, -306.38) force
|
||||||
|
[06/07/2026 06:05:42] force = 70 * 0.640008 = 44.80056
|
||||||
|
[06/07/2026 06:05:42] launching puck at (1.16, -1.90) with (-51.83, 85.00) force
|
||||||
|
[06/07/2026 06:05:42] Red goal scored, red score is now 1
|
||||||
|
[06/07/2026 06:05:50] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:50] launching puck at (0.21, -5.00) with (-14.59, 348.15) force
|
||||||
|
[06/07/2026 06:05:55] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:05:55] launching puck at (-1.21, -4.85) with (84.38, 338.08) force
|
||||||
|
[06/07/2026 06:06:00] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:00] launching puck at (0.07, 5.00) with (-5.09, -348.42) force
|
||||||
|
[06/07/2026 06:06:08] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:08] launching puck at (-4.82, 1.33) with (335.95, -92.52) force
|
||||||
|
[06/07/2026 06:06:14] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:14] launching puck at (-3.13, 3.90) with (218.41, -271.51) force
|
||||||
|
[06/07/2026 06:06:26] force = 70 * 0.9306722 = 65.14705
|
||||||
|
[06/07/2026 06:06:26] launching puck at (-3.47, 2.54) with (225.93, -165.19) force
|
||||||
|
[06/07/2026 06:06:32] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:32] launching puck at (-4.79, 1.43) with (333.99, -99.36) force
|
||||||
|
[06/07/2026 06:06:39] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:39] launching puck at (-3.95, -3.07) with (275.26, 213.67) force
|
||||||
|
[06/07/2026 06:06:45] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:45] launching puck at (-2.04, 4.57) with (141.89, -318.25) force
|
||||||
|
[06/07/2026 06:06:51] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:51] launching puck at (-0.47, -4.98) with (32.47, 346.94) force
|
||||||
|
[06/07/2026 06:06:56] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:56] launching puck at (-5.00, 0.16) with (348.27, -11.44) force
|
||||||
|
[06/07/2026 06:07:06] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:06] launching puck at (-3.20, -3.84) with (222.93, 267.81) force
|
||||||
|
[06/07/2026 06:07:13] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:13] launching puck at (-1.21, 4.85) with (84.18, -338.13) force
|
||||||
|
[06/07/2026 06:07:19] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:19] launching puck at (-2.64, -4.24) with (184.18, 295.80) force
|
||||||
|
[06/07/2026 06:07:24] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:24] launching puck at (-1.85, 4.65) with (128.74, -323.80) force
|
||||||
|
[06/07/2026 06:07:30] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:30] launching puck at (-4.21, -2.69) with (293.60, 187.67) force
|
||||||
|
[06/07/2026 06:07:35] force = 70 * 0.8417282 = 58.92097
|
||||||
|
[06/07/2026 06:07:35] launching puck at (3.28, -1.16) with (-193.10, 68.20) force
|
||||||
|
[06/07/2026 06:07:52] force = 70 * 0.8229277 = 57.60493
|
||||||
|
[06/07/2026 06:07:52] launching puck at (0.73, -3.25) with (-42.03, 187.04) force
|
||||||
|
[06/07/2026 06:07:52] Red goal scored, red score is now 2
|
||||||
|
[06/07/2026 06:07:59] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:59] launching puck at (0.00, 5.00) with (0.17, -348.45) force
|
||||||
|
[06/07/2026 06:08:11] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:11] launching puck at (-3.22, 3.83) with (224.08, -266.85) force
|
||||||
|
[06/07/2026 06:08:17] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:17] launching puck at (-2.63, 4.25) with (183.61, -296.15) force
|
||||||
|
[06/07/2026 06:08:23] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:23] launching puck at (-3.78, -3.27) with (263.76, 227.71) force
|
||||||
|
[06/07/2026 06:08:30] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:30] launching puck at (-1.66, 4.72) with (115.67, -328.69) force
|
||||||
|
[06/07/2026 06:08:36] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:36] launching puck at (-1.38, 4.81) with (96.07, -334.95) force
|
||||||
|
[06/07/2026 06:08:41] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:41] launching puck at (4.23, 2.66) with (-295.07, -185.34) force
|
||||||
|
[06/07/2026 06:08:47] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:47] launching puck at (-0.64, 4.96) with (44.34, -345.62) force
|
||||||
|
[06/07/2026 06:08:52] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:52] launching puck at (-3.57, -3.50) with (248.91, 243.85) force
|
||||||
|
[06/07/2026 06:09:00] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:00] launching puck at (3.88, 3.16) with (-270.26, -219.95) force
|
||||||
|
[06/07/2026 06:09:07] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:07] launching puck at (-4.95, 0.70) with (345.01, -48.89) force
|
||||||
|
[06/07/2026 06:09:14] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:14] launching puck at (2.73, 4.19) with (-190.32, -291.89) force
|
||||||
|
[06/07/2026 06:09:19] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:19] launching puck at (-1.70, 4.70) with (118.66, -327.63) force
|
||||||
|
[06/07/2026 06:09:28] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:28] launching puck at (-4.96, -0.63) with (345.69, 43.83) force
|
||||||
|
[06/07/2026 06:09:33] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:33] launching puck at (-3.66, 3.41) with (255.14, -237.32) force
|
||||||
|
[06/07/2026 06:09:39] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:39] launching puck at (-3.09, -3.93) with (215.37, 273.93) force
|
||||||
|
[06/07/2026 06:09:46] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:46] launching puck at (4.93, 0.85) with (-343.37, -59.32) force
|
||||||
|
[06/07/2026 06:09:52] force = 70 * 0.9572414 = 67.0069
|
||||||
|
[06/07/2026 06:09:52] launching puck at (4.53, -0.65) with (-303.66, 43.49) force
|
||||||
|
[06/07/2026 06:09:56] force = 70 * 0.7467157 = 52.2701
|
||||||
|
[06/07/2026 06:09:56] launching puck at (2.11, 1.85) with (-110.14, -96.75) force
|
||||||
|
[06/07/2026 06:10:02] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:02] launching puck at (-1.78, -4.67) with (123.99, 325.65) force
|
||||||
|
[06/07/2026 06:10:09] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:09] launching puck at (-2.44, -4.37) with (169.78, 304.29) force
|
||||||
|
[06/07/2026 06:10:14] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:14] launching puck at (-1.88, -4.63) with (131.24, 322.79) force
|
||||||
|
[06/07/2026 06:10:19] force = 70 * 0.8135879 = 56.95115
|
||||||
|
[06/07/2026 06:10:19] launching puck at (2.64, 1.91) with (-150.25, -108.83) force
|
||||||
|
[06/07/2026 06:10:24] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:24] launching puck at (2.93, -4.05) with (-204.13, 282.40) force
|
||||||
|
[06/07/2026 06:10:29] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:29] launching puck at (-2.55, -4.30) with (177.63, 299.78) force
|
||||||
|
[06/07/2026 06:10:35] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:35] launching puck at (0.33, -4.99) with (-23.00, 347.69) force
|
||||||
|
[06/07/2026 06:10:45] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:45] launching puck at (-4.89, 1.02) with (341.08, -71.32) force
|
||||||
|
[06/07/2026 06:10:49] force = 70 * 0.9926333 = 69.48434
|
||||||
|
[06/07/2026 06:10:49] launching puck at (-4.64, -1.77) with (322.51, 122.97) force
|
||||||
|
[06/07/2026 06:10:54] force = 70 * 0.8775711 = 61.42998
|
||||||
|
[06/07/2026 06:10:54] launching puck at (2.81, 2.53) with (-172.73, -155.33) force
|
||||||
|
[06/07/2026 06:10:59] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:59] launching puck at (2.16, -4.51) with (-150.46, 314.29) force
|
||||||
|
[06/07/2026 06:11:04] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:04] launching puck at (1.09, 4.88) with (-76.28, -340.00) force
|
||||||
|
[06/07/2026 06:11:05] Blue goal scored, blue score is now 1
|
||||||
|
[06/07/2026 06:11:10] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:10] launching puck at (0.24, -4.99) with (-16.51, 348.06) force
|
||||||
|
[06/07/2026 06:11:15] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:15] launching puck at (-3.78, 3.27) with (263.59, -227.90) force
|
||||||
|
[06/07/2026 06:11:25] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:25] launching puck at (4.93, -0.83) with (-343.62, 57.83) force
|
||||||
|
[06/07/2026 06:11:31] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:31] launching puck at (4.93, 0.82) with (-343.76, -56.97) force
|
||||||
|
[06/07/2026 06:11:35] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:35] launching puck at (1.33, -4.82) with (-92.87, 335.85) force
|
||||||
|
[06/07/2026 06:11:41] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:41] launching puck at (4.04, 2.94) with (-281.88, -204.85) force
|
||||||
|
[06/07/2026 06:11:46] force = 70 * 0.9140816 = 63.98571
|
||||||
|
[06/07/2026 06:11:46] launching puck at (3.92, -1.28) with (-251.04, 82.04) force
|
||||||
|
[06/07/2026 06:11:52] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:52] launching puck at (4.45, 2.29) with (-309.84, -159.43) force
|
||||||
|
[06/07/2026 06:11:59] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:59] launching puck at (3.96, -3.05) with (-275.93, 212.79) force
|
||||||
|
[06/07/2026 06:12:04] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:04] launching puck at (4.17, -2.76) with (-290.35, 192.65) force
|
||||||
|
[06/07/2026 06:12:13] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:13] launching puck at (4.35, -2.46) with (-303.26, 171.62) force
|
||||||
|
[06/07/2026 06:12:20] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:20] launching puck at (4.00, 3.01) with (-278.45, -209.49) force
|
||||||
|
[06/07/2026 06:12:27] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:27] launching puck at (2.44, 4.36) with (-170.13, -304.10) force
|
||||||
|
[06/07/2026 06:12:36] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:36] launching puck at (1.10, 4.88) with (-76.87, -339.87) force
|
||||||
|
[06/07/2026 06:12:42] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:42] launching puck at (1.70, 4.70) with (-118.44, -327.71) force
|
||||||
|
[06/07/2026 06:12:47] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:47] launching puck at (3.70, -3.36) with (-258.09, 234.11) force
|
||||||
|
[06/07/2026 06:12:54] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:54] launching puck at (-3.63, -3.44) with (252.95, 239.66) force
|
||||||
|
[06/07/2026 06:13:00] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:00] launching puck at (-2.57, 4.29) with (179.00, -298.96) force
|
||||||
|
[06/07/2026 06:13:06] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:06] launching puck at (0.31, 4.99) with (-21.83, -347.77) force
|
||||||
|
[06/07/2026 06:13:14] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:14] launching puck at (2.39, 4.39) with (-166.74, -305.97) force
|
||||||
|
[06/07/2026 06:13:18] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:18] launching puck at (-0.04, -5.00) with (2.62, 348.44) force
|
||||||
|
[06/07/2026 06:13:24] force = 70 * 0.9875789 = 69.13052
|
||||||
|
[06/07/2026 06:13:24] launching puck at (-4.52, 1.91) with (312.68, -132.34) force
|
||||||
|
[06/07/2026 06:13:31] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:31] launching puck at (-0.75, -4.94) with (52.48, 344.48) force
|
||||||
|
[06/07/2026 06:13:36] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:36] launching puck at (-2.50, 4.33) with (174.56, -301.58) force
|
||||||
|
[06/07/2026 06:13:44] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:44] launching puck at (0.96, -4.91) with (-66.97, 341.96) force
|
||||||
|
[06/07/2026 06:13:44] Red goal scored, red score is now 3
|
||||||
|
[06/07/2026 06:13:44] Dedicated match PATCH success: 200 {"ok":true,"id":166}
|
||||||
|
[06/07/2026 06:13:46] Dedicated match winner PATCH success: 200 {"ok":true,"id":166,"winner_id":45,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}}
|
||||||
|
[06/07/2026 06:13:52] Rematch requested, max bet limit coins: 500
|
||||||
|
[06/07/2026 06:13:55] Rematch was confirmed, closing in 5 secs. new room :
|
||||||
|
[06/07/2026 06:13:55] {"ok":true,"entry_fee":112,"rc_prize":184,"for_red":{"Players":[{"Name":"ruch","LastSeen":1780812835460,"l10_wins":2,"l10_losses":1,"UserId":45,"rc":0.0},{"Name":"Emmanuel","LastSeen":1780812835460,"l10_wins":0,"l10_losses":1,"UserId":30,"rc":0.0}],"GameName":"soccar","Port":26796,"InitTime":1780812835460,"instance_started":true,"match_id":181,"entry_fee":112,"rc_prize":184,"your_team":"red"},"for_blue":{"Players":[{"Name":"ruch","LastSeen":1780812835460,"l10_wins":2,"l10_losses":1,"UserId":45,"rc":0.0},{"Name":"Emmanuel","LastSeen":1780812835460,"l10_wins":0,"l10_losses":1,"UserId":30,"rc":0.0}],"GameName":"soccar","Port":26796,"InitTime":1780812835460,"instance_started":true,"match_id":181,"entry_fee":112,"rc_prize":184,"your_team":"blue"},"your_team":""}
|
||||||
|
[06/07/2026 06:13:55] Mirror server: client disconnected (connId=1141998854)
|
||||||
|
[06/07/2026 06:13:55] Active player connections: 1
|
||||||
|
[06/07/2026 06:13:55] Mirror server: client disconnected (connId=-1154288299)
|
||||||
|
[06/07/2026 06:13:55] Active player connections: 0
|
||||||
|
[06/07/2026 06:14:00] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 06:14:10] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 06:14:20] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 06:14:30] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 06:14:40] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 06:14:50] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 06:15:00] All players left, exiting
|
||||||
|
[06/07/2026 06:15:01] Dedicated match PATCH success: 200 {"ok":true,"id":166}
|
||||||
@@ -0,0 +1,102 @@
|
|||||||
|
[06/07/2026 06:06:13] Starting server at port 26280
|
||||||
|
[06/07/2026 06:06:13] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 06:06:13] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 06:06:13] Starting auto close watchdog
|
||||||
|
[06/07/2026 06:06:13] Active player connections: 0
|
||||||
|
[06/07/2026 06:06:17] Active player connections: 1
|
||||||
|
[06/07/2026 06:06:17] Active player connections: 2
|
||||||
|
[06/07/2026 06:06:17] Game started On Server
|
||||||
|
[06/07/2026 06:06:17] Client 15 set team to Blue
|
||||||
|
[06/07/2026 06:06:17] Client 16 set team to Red
|
||||||
|
[06/07/2026 06:06:18] Dedicated match PATCH success: 200 {"ok":true,"id":167}
|
||||||
|
[06/07/2026 06:06:18] Dedicated match PATCH success: 200 {"ok":true,"id":167}
|
||||||
|
[06/07/2026 06:06:20] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:20] launching puck at (0.04, -5.00) with (-3.06, 348.44) force
|
||||||
|
[06/07/2026 06:06:27] force = 70 * 0.8676178 = 60.73325
|
||||||
|
[06/07/2026 06:06:27] launching puck at (-0.69, -3.63) with (41.97, 220.34) force
|
||||||
|
[06/07/2026 06:06:34] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:34] launching puck at (-2.34, -4.42) with (162.84, 308.06) force
|
||||||
|
[06/07/2026 06:06:40] force = 70 * 0.9066225 = 63.46358
|
||||||
|
[06/07/2026 06:06:40] launching puck at (-1.37, -3.82) with (86.82, 242.20) force
|
||||||
|
[06/07/2026 06:06:47] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:47] launching puck at (0.80, 4.94) with (-55.74, -343.97) force
|
||||||
|
[06/07/2026 06:06:52] force = 70 * 0.624337 = 43.70359
|
||||||
|
[06/07/2026 06:06:52] launching puck at (-2.04, 0.67) with (89.16, -29.32) force
|
||||||
|
[06/07/2026 06:06:59] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:06:59] launching puck at (0.32, -4.99) with (-22.42, 347.73) force
|
||||||
|
[06/07/2026 06:07:00] Red goal scored, red score is now 1
|
||||||
|
[06/07/2026 06:07:06] Client 16 sent emoji emote 3
|
||||||
|
[06/07/2026 06:07:10] force = 70 * 0.989964 = 69.29748
|
||||||
|
[06/07/2026 06:07:10] launching puck at (-0.27, -4.93) with (18.77, 341.67) force
|
||||||
|
[06/07/2026 06:07:15] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:15] launching puck at (-0.18, -5.00) with (12.55, 348.23) force
|
||||||
|
[06/07/2026 06:07:20] force = 70 * 0.2891138 = 20.23796
|
||||||
|
[06/07/2026 06:07:20] launching puck at (-0.98, 0.18) with (19.81, -3.65) force
|
||||||
|
[06/07/2026 06:07:25] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:25] launching puck at (-0.31, -4.99) with (21.36, 347.80) force
|
||||||
|
[06/07/2026 06:07:36] force = 70 * 0.7729287 = 54.10501
|
||||||
|
[06/07/2026 06:07:36] launching puck at (-2.10, -2.11) with (113.47, 113.96) force
|
||||||
|
[06/07/2026 06:07:43] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:43] launching puck at (4.02, 2.97) with (-280.41, -206.86) force
|
||||||
|
[06/07/2026 06:07:47] force = 70 * 0.9415571 = 65.909
|
||||||
|
[06/07/2026 06:07:47] launching puck at (-3.26, -2.97) with (214.75, 195.87) force
|
||||||
|
[06/07/2026 06:07:54] force = 70 * 0.9568988 = 66.98292
|
||||||
|
[06/07/2026 06:07:54] launching puck at (-4.01, -2.21) with (268.45, 147.72) force
|
||||||
|
[06/07/2026 06:07:59] force = 70 * 0.9397507 = 65.78255
|
||||||
|
[06/07/2026 06:07:59] launching puck at (-0.88, -4.30) with (58.18, 282.93) force
|
||||||
|
[06/07/2026 06:08:05] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:05] launching puck at (-0.40, -4.98) with (27.67, 347.35) force
|
||||||
|
[06/07/2026 06:08:09] force = 70 * 0.649278 = 45.44946
|
||||||
|
[06/07/2026 06:08:09] launching puck at (2.07, 0.92) with (-94.21, -41.79) force
|
||||||
|
[06/07/2026 06:08:15] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:15] launching puck at (4.58, 2.01) with (-319.12, -139.93) force
|
||||||
|
[06/07/2026 06:08:28] force = 70 * 0.5050408 = 35.35286
|
||||||
|
[06/07/2026 06:08:28] launching puck at (1.42, -0.69) with (-50.10, 24.45) force
|
||||||
|
[06/07/2026 06:08:34] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:34] launching puck at (-2.59, -4.28) with (180.71, 297.93) force
|
||||||
|
[06/07/2026 06:08:55] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:55] launching puck at (-0.38, -4.99) with (26.18, 347.47) force
|
||||||
|
[06/07/2026 06:09:10] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:10] launching puck at (4.72, 1.64) with (-329.25, -114.08) force
|
||||||
|
[06/07/2026 06:09:17] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:17] launching puck at (0.76, 4.94) with (-53.24, -344.36) force
|
||||||
|
[06/07/2026 06:09:23] force = 70 * 0.8240268 = 57.68188
|
||||||
|
[06/07/2026 06:09:23] launching puck at (-0.92, -3.21) with (52.99, 185.01) force
|
||||||
|
[06/07/2026 06:09:30] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:30] launching puck at (-3.02, -3.98) with (210.59, 277.62) force
|
||||||
|
[06/07/2026 06:09:44] force = 70 * 0.271639 = 19.01473
|
||||||
|
[06/07/2026 06:09:44] launching puck at (0.73, -0.63) with (-13.96, 11.94) force
|
||||||
|
[06/07/2026 06:09:49] force = 70 * 0.2030787 = 14.21551
|
||||||
|
[06/07/2026 06:09:49] launching puck at (0.45, 0.74) with (-6.42, -10.45) force
|
||||||
|
[06/07/2026 06:09:59] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:59] launching puck at (1.64, -4.72) with (-114.12, 329.24) force
|
||||||
|
[06/07/2026 06:10:03] force = 70 * 0.8520278 = 59.64194
|
||||||
|
[06/07/2026 06:10:03] launching puck at (1.41, 3.27) with (-84.35, -194.87) force
|
||||||
|
[06/07/2026 06:10:13] force = 70 * 0.8383347 = 58.68343
|
||||||
|
[06/07/2026 06:10:13] launching puck at (-1.34, -3.18) with (78.92, 186.34) force
|
||||||
|
[06/07/2026 06:10:18] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:18] launching puck at (-1.48, -4.78) with (103.25, 332.80) force
|
||||||
|
[06/07/2026 06:10:20] Red goal scored, red score is now 2
|
||||||
|
[06/07/2026 06:10:37] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:37] launching puck at (-1.84, 4.65) with (128.54, -323.88) force
|
||||||
|
[06/07/2026 06:10:41] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:41] launching puck at (2.41, -4.38) with (-168.23, 305.15) force
|
||||||
|
[06/07/2026 06:10:48] force = 70 * 0.9427053 = 65.98937
|
||||||
|
[06/07/2026 06:10:48] launching puck at (-1.34, 4.22) with (88.13, -278.19) force
|
||||||
|
[06/07/2026 06:10:53] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:53] launching puck at (-1.98, -4.59) with (137.77, 320.06) force
|
||||||
|
[06/07/2026 06:10:53] Red goal scored, red score is now 3
|
||||||
|
[06/07/2026 06:10:54] Dedicated match PATCH success: 200 {"ok":true,"id":167}
|
||||||
|
[06/07/2026 06:10:55] Dedicated match winner PATCH success: 200 {"ok":true,"id":167,"winner_id":55,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}}
|
||||||
|
[06/07/2026 06:11:01] Mirror server: client disconnected (connId=-1479577959)
|
||||||
|
[06/07/2026 06:11:01] Active player connections: 1
|
||||||
|
[06/07/2026 06:11:26] Mirror server: client disconnected (connId=-1798137462)
|
||||||
|
[06/07/2026 06:11:26] Active player connections: 0
|
||||||
|
[06/07/2026 06:11:31] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 06:11:41] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 06:11:51] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 06:12:01] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 06:12:11] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 06:12:21] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 06:12:31] All players left, exiting
|
||||||
|
[06/07/2026 06:12:31] Dedicated match PATCH success: 200 {"ok":true,"id":167}
|
||||||
@@ -0,0 +1,65 @@
|
|||||||
|
[06/07/2026 06:07:03] Starting server at port 26339
|
||||||
|
[06/07/2026 06:07:03] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 06:07:03] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 06:07:03] Starting auto close watchdog
|
||||||
|
[06/07/2026 06:07:03] Active player connections: 0
|
||||||
|
[06/07/2026 06:07:04] Active player connections: 2
|
||||||
|
[06/07/2026 06:07:04] Game started On Server
|
||||||
|
[06/07/2026 06:07:04] Client 16 set team to Red
|
||||||
|
[06/07/2026 06:07:04] Client 15 set team to Blue
|
||||||
|
[06/07/2026 06:07:05] Dedicated match PATCH success: 200 {"ok":true,"id":168}
|
||||||
|
[06/07/2026 06:07:05] Dedicated match PATCH success: 200 {"ok":true,"id":168}
|
||||||
|
[06/07/2026 06:07:09] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:09] launching puck at (0.08, -5.00) with (-5.52, 348.41) force
|
||||||
|
[06/07/2026 06:07:18] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:18] launching puck at (-4.90, 0.99) with (341.56, -68.97) force
|
||||||
|
[06/07/2026 06:07:24] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:24] launching puck at (0.98, -4.90) with (-68.44, 341.67) force
|
||||||
|
[06/07/2026 06:07:25] Red goal scored, red score is now 1
|
||||||
|
[06/07/2026 06:07:31] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:31] launching puck at (-0.27, 4.99) with (18.48, -347.96) force
|
||||||
|
[06/07/2026 06:07:39] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:39] launching puck at (3.25, -3.80) with (-226.62, 264.69) force
|
||||||
|
[06/07/2026 06:07:46] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:46] launching puck at (4.98, -0.49) with (-346.77, 34.25) force
|
||||||
|
[06/07/2026 06:07:52] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:52] launching puck at (2.12, -4.53) with (-147.64, 315.63) force
|
||||||
|
[06/07/2026 06:08:04] force = 70 * 0.7586962 = 53.10873
|
||||||
|
[06/07/2026 06:08:04] launching puck at (-1.70, -2.32) with (90.31, 123.44) force
|
||||||
|
[06/07/2026 06:08:04] Red goal scored, red score is now 2
|
||||||
|
[06/07/2026 06:08:13] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:13] launching puck at (-0.10, 5.00) with (7.27, -348.38) force
|
||||||
|
[06/07/2026 06:08:21] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:21] launching puck at (-1.33, -4.82) with (92.36, 335.99) force
|
||||||
|
[06/07/2026 06:08:30] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:30] launching puck at (0.76, 4.94) with (-52.69, -344.45) force
|
||||||
|
[06/07/2026 06:08:46] force = 70 * 0.9527265 = 66.69086
|
||||||
|
[06/07/2026 06:08:46] launching puck at (3.61, -2.74) with (-240.77, 182.40) force
|
||||||
|
[06/07/2026 06:08:52] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:52] launching puck at (-0.16, 5.00) with (11.35, -348.27) force
|
||||||
|
[06/07/2026 06:08:59] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:59] launching puck at (-3.17, -3.87) with (220.70, 269.65) force
|
||||||
|
[06/07/2026 06:09:05] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:05] launching puck at (-2.75, 4.17) with (191.93, -290.83) force
|
||||||
|
[06/07/2026 06:09:11] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:11] launching puck at (1.33, -4.82) with (-92.76, 335.88) force
|
||||||
|
[06/07/2026 06:09:18] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:18] launching puck at (4.69, 1.73) with (-326.81, -120.89) force
|
||||||
|
[06/07/2026 06:09:23] force = 70 * 0.9099606 = 63.69724
|
||||||
|
[06/07/2026 06:09:23] launching puck at (0.08, -4.09) with (-5.10, 260.27) force
|
||||||
|
[06/07/2026 06:09:23] Red goal scored, red score is now 3
|
||||||
|
[06/07/2026 06:09:23] Dedicated match PATCH success: 200 {"ok":true,"id":168}
|
||||||
|
[06/07/2026 06:09:25] Dedicated match winner PATCH success: 200 {"ok":true,"id":168,"winner_id":36,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}}
|
||||||
|
[06/07/2026 06:09:42] Mirror server transport error (connId=-1154336312, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting.
|
||||||
|
[06/07/2026 06:09:42] Mirror server: client disconnected (connId=-1154336312)
|
||||||
|
[06/07/2026 06:09:42] Active player connections: 1
|
||||||
|
[06/07/2026 06:09:55] Mirror server: client disconnected (connId=1804772926)
|
||||||
|
[06/07/2026 06:09:55] Active player connections: 0
|
||||||
|
[06/07/2026 06:10:00] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 06:10:10] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 06:10:20] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 06:10:30] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 06:10:40] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 06:10:50] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 06:11:00] All players left, exiting
|
||||||
|
[06/07/2026 06:11:00] Dedicated match PATCH success: 200 {"ok":true,"id":168}
|
||||||
@@ -0,0 +1,60 @@
|
|||||||
|
[06/07/2026 06:07:30] Starting server at port 26506
|
||||||
|
[06/07/2026 06:07:30] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 06:07:30] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 06:07:30] Starting auto close watchdog
|
||||||
|
[06/07/2026 06:07:30] Active player connections: 0
|
||||||
|
[06/07/2026 06:07:32] Active player connections: 1
|
||||||
|
[06/07/2026 06:07:32] Client 15 set team to Blue
|
||||||
|
[06/07/2026 06:07:33] Dedicated match PATCH success: 200 {"ok":true,"id":169}
|
||||||
|
[06/07/2026 06:07:35] Active player connections: 2
|
||||||
|
[06/07/2026 06:07:35] Game started On Server
|
||||||
|
[06/07/2026 06:07:35] Client 16 set team to Blue
|
||||||
|
[06/07/2026 06:07:54] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:07:54] launching puck at (-0.10, 5.00) with (6.68, -348.39) force
|
||||||
|
[06/07/2026 06:08:15] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:15] launching puck at (1.80, 4.67) with (-125.23, -325.17) force
|
||||||
|
[06/07/2026 06:08:37] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:37] launching puck at (-4.99, -0.28) with (347.90, 19.59) force
|
||||||
|
[06/07/2026 06:08:52] Client 15 sent text emote What a save!
|
||||||
|
[06/07/2026 06:08:57] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:57] launching puck at (2.78, 4.16) with (-193.43, -289.84) force
|
||||||
|
[06/07/2026 06:08:57] Blue goal scored, blue score is now 1
|
||||||
|
[06/07/2026 06:09:20] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:20] launching puck at (-1.25, 4.84) with (87.08, -337.40) force
|
||||||
|
[06/07/2026 06:09:44] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:44] launching puck at (2.74, 4.18) with (-190.84, -291.54) force
|
||||||
|
[06/07/2026 06:10:05] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:05] launching puck at (0.64, 4.96) with (-44.64, -345.58) force
|
||||||
|
[06/07/2026 06:10:26] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:26] launching puck at (-1.56, 4.75) with (108.98, -330.97) force
|
||||||
|
[06/07/2026 06:10:46] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:46] launching puck at (-2.81, 4.14) with (195.62, -288.36) force
|
||||||
|
[06/07/2026 06:11:07] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:07] launching puck at (0.19, 5.00) with (-13.13, -348.21) force
|
||||||
|
[06/07/2026 06:11:12] Mirror server transport error (connId=-412415509, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting.
|
||||||
|
[06/07/2026 06:11:12] Mirror server: client disconnected (connId=-412415509)
|
||||||
|
[06/07/2026 06:11:12] Active player connections: 1
|
||||||
|
[06/07/2026 06:11:28] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:28] launching puck at (-0.46, 4.98) with (32.02, -346.98) force
|
||||||
|
[06/07/2026 06:11:48] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:48] launching puck at (-3.46, 3.61) with (240.96, -251.71) force
|
||||||
|
[06/07/2026 06:11:48] Blue goal scored, blue score is now 2
|
||||||
|
[06/07/2026 06:13:20] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:20] launching puck at (-1.87, 4.64) with (130.25, -323.19) force
|
||||||
|
[06/07/2026 06:13:44] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:44] launching puck at (-1.96, 4.60) with (136.77, -320.49) force
|
||||||
|
[06/07/2026 06:14:09] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:09] launching puck at (3.75, 3.30) with (-261.50, -230.30) force
|
||||||
|
[06/07/2026 06:14:09] Blue goal scored, blue score is now 3
|
||||||
|
[06/07/2026 06:14:09] Dedicated match PATCH success: 200 {"ok":true,"id":169}
|
||||||
|
[06/07/2026 06:14:11] Dedicated match winner PATCH success: 200 {"ok":true,"id":169,"winner_id":33,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}}
|
||||||
|
[06/07/2026 06:14:40] Mirror server: client disconnected (connId=1190221266)
|
||||||
|
[06/07/2026 06:14:40] Active player connections: 0
|
||||||
|
[06/07/2026 06:14:45] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 06:14:55] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 06:15:05] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 06:15:15] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 06:15:25] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 06:15:35] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 06:15:45] All players left, exiting
|
||||||
|
[06/07/2026 06:15:45] Dedicated match PATCH success: 200 {"ok":true,"id":169}
|
||||||
@@ -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,95 @@
|
|||||||
|
[06/07/2026 06:08:27] Starting server at port 26431
|
||||||
|
[06/07/2026 06:08:27] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 06:08:27] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 06:08:27] Starting auto close watchdog
|
||||||
|
[06/07/2026 06:08:27] Active player connections: 0
|
||||||
|
[06/07/2026 06:08:29] Active player connections: 1
|
||||||
|
[06/07/2026 06:08:29] Client 15 set team to Blue
|
||||||
|
[06/07/2026 06:08:29] Dedicated match PATCH success: 200 {"ok":true,"id":170}
|
||||||
|
[06/07/2026 06:08:30] Active player connections: 2
|
||||||
|
[06/07/2026 06:08:30] Game started On Server
|
||||||
|
[06/07/2026 06:08:31] Client 16 set team to Red
|
||||||
|
[06/07/2026 06:08:31] Dedicated match PATCH success: 200 {"ok":true,"id":170}
|
||||||
|
[06/07/2026 06:08:35] force = 70 * 0.936977 = 65.58839
|
||||||
|
[06/07/2026 06:08:35] launching puck at (-0.74, -4.30) with (48.36, 281.97) force
|
||||||
|
[06/07/2026 06:08:42] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:42] launching puck at (3.98, -3.02) with (-277.49, 210.75) force
|
||||||
|
[06/07/2026 06:08:48] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:48] launching puck at (-1.43, -4.79) with (99.83, 333.85) force
|
||||||
|
[06/07/2026 06:08:54] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:08:54] launching puck at (-2.65, 4.24) with (184.94, -295.32) force
|
||||||
|
[06/07/2026 06:09:04] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:04] launching puck at (2.22, -4.48) with (-154.60, 312.28) force
|
||||||
|
[06/07/2026 06:09:10] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:10] launching puck at (-2.27, 4.46) with (158.15, -310.50) force
|
||||||
|
[06/07/2026 06:09:17] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:17] launching puck at (-4.31, 2.53) with (300.58, -176.26) force
|
||||||
|
[06/07/2026 06:09:22] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:22] launching puck at (-2.01, 4.58) with (140.07, -319.06) force
|
||||||
|
[06/07/2026 06:09:29] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:29] launching puck at (-2.83, -4.12) with (197.47, 287.10) force
|
||||||
|
[06/07/2026 06:09:35] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:35] launching puck at (-0.98, 4.90) with (68.48, -341.66) force
|
||||||
|
[06/07/2026 06:09:42] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:42] launching puck at (-1.95, -4.60) with (135.97, 320.83) force
|
||||||
|
[06/07/2026 06:09:47] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:47] launching puck at (-1.75, 4.68) with (121.85, -326.45) force
|
||||||
|
[06/07/2026 06:09:53] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:53] launching puck at (-3.87, 3.16) with (269.87, -220.43) force
|
||||||
|
[06/07/2026 06:09:57] force = 70 * 0.8432565 = 59.02795
|
||||||
|
[06/07/2026 06:09:57] launching puck at (2.55, 2.38) with (-150.28, -140.74) force
|
||||||
|
[06/07/2026 06:10:03] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:03] launching puck at (-2.40, 4.39) with (167.36, -305.63) force
|
||||||
|
[06/07/2026 06:10:10] force = 70 * 0.945753 = 66.20271
|
||||||
|
[06/07/2026 06:10:10] launching puck at (2.11, 3.92) with (-139.72, -259.70) force
|
||||||
|
[06/07/2026 06:10:17] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:17] launching puck at (-0.38, -4.99) with (26.32, 347.46) force
|
||||||
|
[06/07/2026 06:10:27] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:27] launching puck at (-1.79, -4.67) with (125.00, 325.26) force
|
||||||
|
[06/07/2026 06:10:35] force = 70 * 0.8410895 = 58.87626
|
||||||
|
[06/07/2026 06:10:35] launching puck at (1.58, -3.09) with (-93.22, 181.83) force
|
||||||
|
[06/07/2026 06:10:42] force = 70 * 0.9256535 = 64.79575
|
||||||
|
[06/07/2026 06:10:42] launching puck at (3.74, -2.01) with (-242.35, 130.03) force
|
||||||
|
[06/07/2026 06:10:48] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:48] launching puck at (-2.54, 4.31) with (177.13, -300.07) force
|
||||||
|
[06/07/2026 06:11:03] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:03] launching puck at (1.15, -4.87) with (-80.17, 339.11) force
|
||||||
|
[06/07/2026 06:11:08] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:08] launching puck at (2.44, -4.36) with (-169.97, 304.18) force
|
||||||
|
[06/07/2026 06:11:22] Mirror server transport error (connId=-1251401133, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting.
|
||||||
|
[06/07/2026 06:11:22] Mirror server: client disconnected (connId=-1251401133)
|
||||||
|
[06/07/2026 06:11:22] Active player connections: 1
|
||||||
|
[06/07/2026 06:11:30] force = 70 * 0.6776251 = 47.43375
|
||||||
|
[06/07/2026 06:11:30] launching puck at (-0.85, -2.26) with (40.48, 107.00) force
|
||||||
|
[06/07/2026 06:11:52] force = 70 * 0.9178268 = 64.24787
|
||||||
|
[06/07/2026 06:11:52] launching puck at (-2.51, 3.32) with (161.36, -213.47) force
|
||||||
|
[06/07/2026 06:12:13] force = 70 * 0.723862 = 50.67034
|
||||||
|
[06/07/2026 06:12:13] launching puck at (1.87, -1.90) with (-94.63, 96.51) force
|
||||||
|
[06/07/2026 06:12:34] force = 70 * 0.9784808 = 68.49366
|
||||||
|
[06/07/2026 06:12:34] launching puck at (2.02, -4.36) with (-138.70, 298.90) force
|
||||||
|
[06/07/2026 06:12:35] Red goal scored, red score is now 1
|
||||||
|
[06/07/2026 06:12:56] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:56] launching puck at (-0.34, -4.99) with (23.65, 347.65) force
|
||||||
|
[06/07/2026 06:13:10] Client 16 sent emoji emote 2
|
||||||
|
[06/07/2026 06:13:17] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:17] launching puck at (0.98, -4.90) with (-68.49, 341.66) force
|
||||||
|
[06/07/2026 06:13:17] Red goal scored, red score is now 2
|
||||||
|
[06/07/2026 06:13:39] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:39] launching puck at (0.01, -5.00) with (-0.87, 348.45) force
|
||||||
|
[06/07/2026 06:14:00] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:00] launching puck at (-0.04, -5.00) with (2.60, 348.44) force
|
||||||
|
[06/07/2026 06:14:20] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:20] launching puck at (2.26, -4.46) with (-157.56, 310.79) force
|
||||||
|
[06/07/2026 06:14:21] Red goal scored, red score is now 3
|
||||||
|
[06/07/2026 06:14:21] Dedicated match PATCH success: 200 {"ok":true,"id":170}
|
||||||
|
[06/07/2026 06:14:23] Dedicated match winner PATCH success: 200 {"ok":true,"id":170,"winner_id":24,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}}
|
||||||
|
[06/07/2026 06:14:38] Mirror server: client disconnected (connId=-1980041245)
|
||||||
|
[06/07/2026 06:14:38] Active player connections: 0
|
||||||
|
[06/07/2026 06:14:42] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 06:14:52] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 06:15:02] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 06:15:12] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 06:15:22] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 06:15:33] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 06:15:42] All players left, exiting
|
||||||
|
[06/07/2026 06:15:43] Dedicated match PATCH success: 200 {"ok":true,"id":170}
|
||||||
@@ -0,0 +1,133 @@
|
|||||||
|
[06/07/2026 06:09:42] Starting server at port 26617
|
||||||
|
[06/07/2026 06:09:42] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 06:09:42] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 06:09:42] Starting auto close watchdog
|
||||||
|
[06/07/2026 06:09:42] Active player connections: 0
|
||||||
|
[06/07/2026 06:09:44] Active player connections: 1
|
||||||
|
[06/07/2026 06:09:45] Active player connections: 2
|
||||||
|
[06/07/2026 06:09:45] Game started On Server
|
||||||
|
[06/07/2026 06:09:45] Client 15 set team to Blue
|
||||||
|
[06/07/2026 06:09:45] Client 16 set team to Red
|
||||||
|
[06/07/2026 06:09:45] Dedicated match PATCH success: 200 {"ok":true,"id":171}
|
||||||
|
[06/07/2026 06:09:45] Dedicated match PATCH success: 200 {"ok":true,"id":171}
|
||||||
|
[06/07/2026 06:09:47] Active player connections: 3
|
||||||
|
[06/07/2026 06:09:47] Client 17 set team to Blue
|
||||||
|
[06/07/2026 06:09:48] Mirror server: client disconnected (connId=-1006361513)
|
||||||
|
[06/07/2026 06:09:48] Active player connections: 2
|
||||||
|
[06/07/2026 06:09:52] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:52] launching puck at (0.12, -5.00) with (-8.47, 348.35) force
|
||||||
|
[06/07/2026 06:09:57] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:57] launching puck at (1.27, 4.84) with (-88.34, -337.07) force
|
||||||
|
[06/07/2026 06:10:03] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:03] launching puck at (4.09, -2.88) with (-284.98, 200.52) force
|
||||||
|
[06/07/2026 06:10:08] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:08] launching puck at (-0.05, 5.00) with (3.15, -348.44) force
|
||||||
|
[06/07/2026 06:10:16] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:16] launching puck at (4.00, -2.99) with (-279.08, 208.65) force
|
||||||
|
[06/07/2026 06:10:26] force = 70 * 0.7571192 = 52.99835
|
||||||
|
[06/07/2026 06:10:26] launching puck at (-2.87, 0.04) with (152.08, -1.98) force
|
||||||
|
[06/07/2026 06:10:30] force = 70 * 0.3197722 = 22.38405
|
||||||
|
[06/07/2026 06:10:30] launching puck at (-0.86, -0.60) with (19.25, 13.50) force
|
||||||
|
[06/07/2026 06:10:35] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:35] launching puck at (-1.42, 4.79) with (99.13, -334.06) force
|
||||||
|
[06/07/2026 06:10:40] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:40] launching puck at (-4.78, -1.48) with (332.79, 103.28) force
|
||||||
|
[06/07/2026 06:10:49] force = 70 * 0.9387622 = 65.71336
|
||||||
|
[06/07/2026 06:10:49] launching puck at (0.26, 4.37) with (-17.16, -287.35) force
|
||||||
|
[06/07/2026 06:10:54] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:54] launching puck at (3.77, -3.28) with (-262.77, 228.85) force
|
||||||
|
[06/07/2026 06:11:00] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:00] launching puck at (4.77, 1.51) with (-332.26, -104.99) force
|
||||||
|
[06/07/2026 06:11:06] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:06] launching puck at (4.95, -0.72) with (-344.84, 50.07) force
|
||||||
|
[06/07/2026 06:11:19] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:19] launching puck at (0.53, 4.97) with (-37.19, -346.46) force
|
||||||
|
[06/07/2026 06:11:30] force = 70 * 0.912852 = 63.89964
|
||||||
|
[06/07/2026 06:11:30] launching puck at (1.50, 3.83) with (-96.04, -244.81) force
|
||||||
|
[06/07/2026 06:11:35] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:35] launching puck at (3.86, 3.17) with (-269.22, -221.22) force
|
||||||
|
[06/07/2026 06:11:39] Client 15 sent emoji emote 4
|
||||||
|
[06/07/2026 06:11:41] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:41] launching puck at (-3.03, 3.98) with (210.95, -277.35) force
|
||||||
|
[06/07/2026 06:11:47] force = 70 * 0.9732744 = 68.1292
|
||||||
|
[06/07/2026 06:11:47] launching puck at (3.12, 3.58) with (-212.66, -244.23) force
|
||||||
|
[06/07/2026 06:11:52] force = 70 * 0.9705904 = 67.94133
|
||||||
|
[06/07/2026 06:11:52] launching puck at (-4.05, 2.44) with (274.94, -165.58) force
|
||||||
|
[06/07/2026 06:11:56] Client 15 sent text emote What a save!
|
||||||
|
[06/07/2026 06:11:57] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:57] launching puck at (-0.71, 4.95) with (49.42, -344.93) force
|
||||||
|
[06/07/2026 06:12:03] force = 70 * 0.925817 = 64.80719
|
||||||
|
[06/07/2026 06:12:03] launching puck at (4.03, -1.35) with (-260.92, 87.43) force
|
||||||
|
[06/07/2026 06:12:07] force = 70 * 0.6985973 = 48.90181
|
||||||
|
[06/07/2026 06:12:07] launching puck at (0.49, 2.48) with (-23.89, -121.11) force
|
||||||
|
[06/07/2026 06:12:07] Blue goal scored, blue score is now 1
|
||||||
|
[06/07/2026 06:12:12] Client 15 sent emoji emote 5
|
||||||
|
[06/07/2026 06:12:16] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:16] launching puck at (0.00, -5.00) with (0.31, 348.45) force
|
||||||
|
[06/07/2026 06:12:21] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:21] launching puck at (-2.32, 4.43) with (161.48, -308.78) force
|
||||||
|
[06/07/2026 06:12:29] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:29] launching puck at (-1.24, -4.84) with (86.36, 337.58) force
|
||||||
|
[06/07/2026 06:12:37] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:37] launching puck at (-4.43, 2.31) with (308.88, -161.29) force
|
||||||
|
[06/07/2026 06:12:42] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:42] launching puck at (-1.44, -4.79) with (100.25, 333.72) force
|
||||||
|
[06/07/2026 06:12:46] force = 70 * 0.930147 = 65.11029
|
||||||
|
[06/07/2026 06:12:46] launching puck at (2.53, -3.46) with (-164.82, 225.57) force
|
||||||
|
[06/07/2026 06:12:51] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:51] launching puck at (-3.87, 3.17) with (269.57, -220.80) force
|
||||||
|
[06/07/2026 06:12:56] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:56] launching puck at (-0.06, 5.00) with (3.94, -348.43) force
|
||||||
|
[06/07/2026 06:13:02] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:02] launching puck at (-3.05, -3.96) with (212.65, 276.05) force
|
||||||
|
[06/07/2026 06:13:07] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:07] launching puck at (-4.73, -1.61) with (329.82, 112.41) force
|
||||||
|
[06/07/2026 06:13:10] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:10] launching puck at (-1.02, -4.89) with (71.19, 341.10) force
|
||||||
|
[06/07/2026 06:13:16] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:16] launching puck at (-4.97, 0.53) with (346.50, -36.88) force
|
||||||
|
[06/07/2026 06:13:21] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:21] launching puck at (-2.73, -4.19) with (189.93, 292.14) force
|
||||||
|
[06/07/2026 06:13:26] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:26] launching puck at (-4.94, -0.80) with (343.93, 55.99) force
|
||||||
|
[06/07/2026 06:13:27] Blue goal scored, blue score is now 2
|
||||||
|
[06/07/2026 06:13:31] Client 15 sent emoji emote 5
|
||||||
|
[06/07/2026 06:13:39] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:39] launching puck at (-0.08, -5.00) with (5.88, 348.40) force
|
||||||
|
[06/07/2026 06:13:46] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:46] launching puck at (-0.82, 4.93) with (56.85, -343.78) force
|
||||||
|
[06/07/2026 06:13:52] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:52] launching puck at (-0.63, -4.96) with (43.99, 345.67) force
|
||||||
|
[06/07/2026 06:13:53] Red goal scored, red score is now 1
|
||||||
|
[06/07/2026 06:13:55] Client 15 sent text emote Nice shot!
|
||||||
|
[06/07/2026 06:13:58] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:58] launching puck at (-0.02, 5.00) with (1.31, -348.45) force
|
||||||
|
[06/07/2026 06:14:05] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:05] launching puck at (-3.25, -3.80) with (226.80, 264.54) force
|
||||||
|
[06/07/2026 06:14:10] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:10] launching puck at (3.56, 3.51) with (-248.11, -244.67) force
|
||||||
|
[06/07/2026 06:14:16] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:16] launching puck at (3.17, -3.86) with (-221.18, 269.26) force
|
||||||
|
[06/07/2026 06:14:22] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:22] launching puck at (0.90, 4.92) with (-62.94, -342.72) force
|
||||||
|
[06/07/2026 06:14:30] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:30] launching puck at (3.08, 3.94) with (-214.50, -274.61) force
|
||||||
|
[06/07/2026 06:14:35] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:35] launching puck at (-0.45, 4.98) with (31.35, -347.04) force
|
||||||
|
[06/07/2026 06:14:41] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:41] launching puck at (3.28, -3.78) with (-228.24, 263.30) force
|
||||||
|
[06/07/2026 06:14:46] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:46] launching puck at (-2.47, 4.35) with (172.32, -302.86) force
|
||||||
|
[06/07/2026 06:15:00] Mirror server transport error (connId=-1479577795, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting.
|
||||||
|
[06/07/2026 06:15:00] Mirror server: client disconnected (connId=-1479577795)
|
||||||
|
[06/07/2026 06:15:00] Mirror server transport error (connId=912708292, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting.
|
||||||
|
[06/07/2026 06:15:00] Mirror server: client disconnected (connId=912708292)
|
||||||
|
[06/07/2026 06:15:00] Active player connections: 0
|
||||||
|
[06/07/2026 06:15:05] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 06:15:15] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 06:15:25] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 06:15:35] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 06:15:45] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 06:15:55] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 06:16:05] All players left, exiting
|
||||||
|
[06/07/2026 06:16:05] Dedicated match PATCH success: 200 {"ok":true,"id":171}
|
||||||
@@ -0,0 +1,92 @@
|
|||||||
|
[06/07/2026 06:09:52] Starting server at port 26879
|
||||||
|
[06/07/2026 06:09:53] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 06:09:53] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 06:09:53] Starting auto close watchdog
|
||||||
|
[06/07/2026 06:09:53] Active player connections: 0
|
||||||
|
[06/07/2026 06:09:55] Active player connections: 1
|
||||||
|
[06/07/2026 06:09:56] Client 15 set team to Red
|
||||||
|
[06/07/2026 06:09:56] Dedicated match PATCH success: 200 {"ok":true,"id":172}
|
||||||
|
[06/07/2026 06:09:56] Active player connections: 2
|
||||||
|
[06/07/2026 06:09:56] Game started On Server
|
||||||
|
[06/07/2026 06:09:56] Client 16 set team to Blue
|
||||||
|
[06/07/2026 06:09:57] Dedicated match PATCH success: 200 {"ok":true,"id":172}
|
||||||
|
[06/07/2026 06:09:58] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:09:58] launching puck at (0.13, -5.00) with (-8.94, 348.34) force
|
||||||
|
[06/07/2026 06:10:07] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:07] launching puck at (0.33, 4.99) with (-22.92, -347.70) force
|
||||||
|
[06/07/2026 06:10:13] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:13] launching puck at (1.61, -4.73) with (-112.12, 329.92) force
|
||||||
|
[06/07/2026 06:10:21] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:21] launching puck at (0.37, 4.99) with (-25.54, -347.52) force
|
||||||
|
[06/07/2026 06:10:26] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:26] launching puck at (-3.88, -3.16) with (270.10, 220.14) force
|
||||||
|
[06/07/2026 06:10:36] force = 70 * 0.8807864 = 61.65505
|
||||||
|
[06/07/2026 06:10:36] launching puck at (3.78, 0.49) with (-233.02, -29.96) force
|
||||||
|
[06/07/2026 06:10:43] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:43] launching puck at (-1.85, -4.65) with (128.61, 323.85) force
|
||||||
|
[06/07/2026 06:10:43] Red goal scored, red score is now 1
|
||||||
|
[06/07/2026 06:10:50] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:50] launching puck at (0.12, 5.00) with (-8.37, -348.35) force
|
||||||
|
[06/07/2026 06:10:55] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:10:55] launching puck at (0.77, -4.94) with (-53.74, 344.28) force
|
||||||
|
[06/07/2026 06:11:02] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:02] launching puck at (2.60, 4.27) with (-180.98, -297.77) force
|
||||||
|
[06/07/2026 06:11:07] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:07] launching puck at (2.76, 4.17) with (-192.38, -290.53) force
|
||||||
|
[06/07/2026 06:11:17] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:17] launching puck at (3.55, 3.52) with (-247.45, -245.33) force
|
||||||
|
[06/07/2026 06:11:18] Blue goal scored, blue score is now 1
|
||||||
|
[06/07/2026 06:11:20] Client 15 sent emoji emote 0
|
||||||
|
[06/07/2026 06:11:24] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:24] launching puck at (-0.12, -5.00) with (8.23, 348.36) force
|
||||||
|
[06/07/2026 06:11:30] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:30] launching puck at (-0.56, 4.97) with (39.05, -346.26) force
|
||||||
|
[06/07/2026 06:11:37] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:37] launching puck at (-4.92, 0.90) with (342.74, -62.86) force
|
||||||
|
[06/07/2026 06:11:47] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:47] launching puck at (0.64, 4.96) with (-44.86, -345.55) force
|
||||||
|
[06/07/2026 06:11:53] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:53] launching puck at (-0.96, -4.91) with (66.67, 342.02) force
|
||||||
|
[06/07/2026 06:12:00] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:00] launching puck at (4.26, 2.63) with (-296.55, -182.97) force
|
||||||
|
[06/07/2026 06:12:06] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:06] launching puck at (3.48, -3.59) with (-242.22, 250.49) force
|
||||||
|
[06/07/2026 06:12:14] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:14] launching puck at (0.18, 5.00) with (-12.46, -348.23) force
|
||||||
|
[06/07/2026 06:12:18] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:18] launching puck at (4.19, -2.72) with (-292.24, 189.78) force
|
||||||
|
[06/07/2026 06:12:24] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:24] launching puck at (3.73, -3.34) with (-259.61, 232.43) force
|
||||||
|
[06/07/2026 06:12:31] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:31] launching puck at (4.78, -1.45) with (-333.39, 101.33) force
|
||||||
|
[06/07/2026 06:12:37] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:37] launching puck at (-0.83, 4.93) with (57.86, -343.62) force
|
||||||
|
[06/07/2026 06:12:38] Blue goal scored, blue score is now 2
|
||||||
|
[06/07/2026 06:12:40] Client 15 sent text emote Nice shot!
|
||||||
|
[06/07/2026 06:12:44] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:44] launching puck at (1.82, -4.66) with (-126.82, 324.55) force
|
||||||
|
[06/07/2026 06:12:49] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:49] launching puck at (3.27, 3.79) with (-227.60, -263.85) force
|
||||||
|
[06/07/2026 06:12:55] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:55] launching puck at (4.94, 0.79) with (-344.05, -55.22) force
|
||||||
|
[06/07/2026 06:13:02] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:02] launching puck at (3.35, 3.71) with (-233.49, -258.65) force
|
||||||
|
[06/07/2026 06:13:07] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:07] launching puck at (3.98, -3.02) with (-277.57, 210.65) force
|
||||||
|
[06/07/2026 06:13:13] force = 70 * 0.9379858 = 65.659
|
||||||
|
[06/07/2026 06:13:13] launching puck at (-0.47, 4.35) with (31.05, -285.40) force
|
||||||
|
[06/07/2026 06:13:14] Blue goal scored, blue score is now 3
|
||||||
|
[06/07/2026 06:13:14] Dedicated match PATCH success: 200 {"ok":true,"id":172}
|
||||||
|
[06/07/2026 06:13:16] Dedicated match winner PATCH success: 200 {"ok":true,"id":172,"winner_id":48,"economy":{"entry_fee_rc":421,"rc_prize":698,"participant_cc":100}}
|
||||||
|
[06/07/2026 06:13:21] Mirror server: client disconnected (connId=1990966683)
|
||||||
|
[06/07/2026 06:13:21] Active player connections: 1
|
||||||
|
[06/07/2026 06:13:45] Mirror server: client disconnected (connId=-1154315887)
|
||||||
|
[06/07/2026 06:13:45] Active player connections: 0
|
||||||
|
[06/07/2026 06:13:50] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 06:14:00] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 06:14:10] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 06:14:20] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 06:14:30] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 06:14:40] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 06:14:50] All players left, exiting
|
||||||
|
[06/07/2026 06:14:50] Dedicated match PATCH success: 200 {"ok":true,"id":172}
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
[06/07/2026 06:10:15] Starting server at port 26610
|
||||||
|
[06/07/2026 06:10:15] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 06:10:15] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 06:10:15] Starting auto close watchdog
|
||||||
|
[06/07/2026 06:10:15] Active player connections: 0
|
||||||
|
[06/07/2026 06:10:20] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 06:10:30] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 06:10:40] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 06:10:50] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 06:11:00] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 06:11:10] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 06:11:20] No players joined, exiting
|
||||||
|
[06/07/2026 06:11:20] Dedicated match PATCH success: 200 {"ok":true,"id":173}
|
||||||
@@ -0,0 +1,67 @@
|
|||||||
|
[06/07/2026 06:11:08] Starting server at port 26132
|
||||||
|
[06/07/2026 06:11:08] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 06:11:08] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 06:11:08] Starting auto close watchdog
|
||||||
|
[06/07/2026 06:11:08] Active player connections: 0
|
||||||
|
[06/07/2026 06:11:10] Active player connections: 1
|
||||||
|
[06/07/2026 06:11:10] Client 15 set team to Blue
|
||||||
|
[06/07/2026 06:11:10] Dedicated match PATCH success: 200 {"ok":true,"id":174}
|
||||||
|
[06/07/2026 06:11:11] Active player connections: 2
|
||||||
|
[06/07/2026 06:11:11] Game started On Server
|
||||||
|
[06/07/2026 06:11:12] Client 16 set team to Red
|
||||||
|
[06/07/2026 06:11:12] Dedicated match PATCH success: 200 {"ok":true,"id":174}
|
||||||
|
[06/07/2026 06:11:17] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:17] launching puck at (0.05, -5.00) with (-3.34, 348.44) force
|
||||||
|
[06/07/2026 06:11:29] force = 70 * 0.1763686 = 12.3458
|
||||||
|
[06/07/2026 06:11:29] launching puck at (0.05, -0.82) with (-0.64, 10.18) force
|
||||||
|
[06/07/2026 06:11:33] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:33] launching puck at (-1.88, -4.63) with (130.94, 322.92) force
|
||||||
|
[06/07/2026 06:11:40] force = 70 * 0.3706437 = 25.94506
|
||||||
|
[06/07/2026 06:11:40] launching puck at (-1.11, -0.30) with (28.91, 7.87) force
|
||||||
|
[06/07/2026 06:11:46] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:46] launching puck at (0.00, -5.00) with (0.06, 348.45) force
|
||||||
|
[06/07/2026 06:11:49] force = 70 * 0.3070431 = 21.49302
|
||||||
|
[06/07/2026 06:11:49] launching puck at (-0.85, 0.57) with (18.33, -12.29) force
|
||||||
|
[06/07/2026 06:11:54] force = 70 * 0.9892845 = 69.24991
|
||||||
|
[06/07/2026 06:11:54] launching puck at (-0.76, -4.87) with (52.46, 337.37) force
|
||||||
|
[06/07/2026 06:11:54] Red goal scored, red score is now 1
|
||||||
|
[06/07/2026 06:12:07] force = 70 * 0.2621559 = 18.35091
|
||||||
|
[06/07/2026 06:12:07] launching puck at (-0.38, 0.87) with (7.00, -15.98) force
|
||||||
|
[06/07/2026 06:12:11] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:11] launching puck at (0.14, -5.00) with (-9.97, 348.31) force
|
||||||
|
[06/07/2026 06:12:21] force = 70 * 0.5943346 = 41.60342
|
||||||
|
[06/07/2026 06:12:21] launching puck at (1.91, 0.63) with (-79.38, -26.36) force
|
||||||
|
[06/07/2026 06:12:26] force = 70 * 0.875194 = 61.26358
|
||||||
|
[06/07/2026 06:12:26] launching puck at (1.12, -3.59) with (-68.51, 219.94) force
|
||||||
|
[06/07/2026 06:12:36] force = 70 * 0.4566746 = 31.96722
|
||||||
|
[06/07/2026 06:12:36] launching puck at (-1.32, -0.42) with (42.32, 13.55) force
|
||||||
|
[06/07/2026 06:12:40] force = 70 * 0.6342872 = 44.40011
|
||||||
|
[06/07/2026 06:12:40] launching puck at (-1.32, -1.75) with (58.63, 77.83) force
|
||||||
|
[06/07/2026 06:12:40] Red goal scored, red score is now 2
|
||||||
|
[06/07/2026 06:12:46] force = 70 * 0.8655959 = 60.59171
|
||||||
|
[06/07/2026 06:12:46] launching puck at (-0.06, -3.68) with (3.59, 222.69) force
|
||||||
|
[06/07/2026 06:12:47] Client 16 sent emoji emote 1
|
||||||
|
[06/07/2026 06:12:51] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:51] launching puck at (0.10, -5.00) with (-6.95, 348.38) force
|
||||||
|
[06/07/2026 06:13:00] force = 70 * 0.7416043 = 51.9123
|
||||||
|
[06/07/2026 06:13:00] launching puck at (-2.76, 0.25) with (143.38, -12.95) force
|
||||||
|
[06/07/2026 06:13:04] force = 70 * 0.6795553 = 47.56887
|
||||||
|
[06/07/2026 06:13:04] launching puck at (-0.55, -2.36) with (26.26, 112.17) force
|
||||||
|
[06/07/2026 06:13:04] Red goal scored, red score is now 3
|
||||||
|
[06/07/2026 06:13:05] Dedicated match PATCH success: 200 {"ok":true,"id":174}
|
||||||
|
[06/07/2026 06:13:07] Dedicated match winner PATCH success: 200 {"ok":true,"id":174,"winner_id":57,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}}
|
||||||
|
[06/07/2026 06:13:12] Rematch requested, max bet limit coins: 500
|
||||||
|
[06/07/2026 06:13:19] Mirror server transport error (connId=-1006356812, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting.
|
||||||
|
[06/07/2026 06:13:19] Mirror server: client disconnected (connId=-1006356812)
|
||||||
|
[06/07/2026 06:13:19] Active player connections: 1
|
||||||
|
[06/07/2026 06:15:42] Mirror server transport error (connId=-982417286, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting.
|
||||||
|
[06/07/2026 06:15:42] Mirror server: client disconnected (connId=-982417286)
|
||||||
|
[06/07/2026 06:15:42] Active player connections: 0
|
||||||
|
[06/07/2026 06:15:47] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 06:15:57] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 06:16:11] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 06:16:21] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 06:16:31] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 06:16:41] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 06:16:51] All players left, exiting
|
||||||
|
[06/07/2026 06:16:51] Dedicated match PATCH success: 200 {"ok":true,"id":174}
|
||||||
@@ -0,0 +1,124 @@
|
|||||||
|
[06/07/2026 06:11:22] Starting server at port 26955
|
||||||
|
[06/07/2026 06:11:22] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 06:11:22] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 06:11:22] Starting auto close watchdog
|
||||||
|
[06/07/2026 06:11:22] Active player connections: 0
|
||||||
|
[06/07/2026 06:11:25] Active player connections: 1
|
||||||
|
[06/07/2026 06:11:25] Active player connections: 2
|
||||||
|
[06/07/2026 06:11:25] Game started On Server
|
||||||
|
[06/07/2026 06:11:25] Client 15 set team to Red
|
||||||
|
[06/07/2026 06:11:25] Client 16 set team to Blue
|
||||||
|
[06/07/2026 06:11:25] Dedicated match PATCH success: 200 {"ok":true,"id":175}
|
||||||
|
[06/07/2026 06:11:25] Dedicated match PATCH success: 200 {"ok":true,"id":175}
|
||||||
|
[06/07/2026 06:11:29] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:29] launching puck at (-0.05, -5.00) with (3.33, 348.44) force
|
||||||
|
[06/07/2026 06:11:40] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:40] launching puck at (0.49, 4.98) with (-34.29, -346.76) force
|
||||||
|
[06/07/2026 06:11:44] Client 15 sent emoji emote 2
|
||||||
|
[06/07/2026 06:11:47] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:47] launching puck at (-0.15, -5.00) with (10.29, 348.30) force
|
||||||
|
[06/07/2026 06:11:49] Client 16 sent emoji emote 1
|
||||||
|
[06/07/2026 06:11:54] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:54] launching puck at (-3.57, 3.50) with (249.03, -243.73) force
|
||||||
|
[06/07/2026 06:11:55] Client 15 sent text emote Oops
|
||||||
|
[06/07/2026 06:12:00] Client 16 sent emoji emote 0
|
||||||
|
[06/07/2026 06:12:00] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:00] launching puck at (1.62, -4.73) with (-112.92, 329.65) force
|
||||||
|
[06/07/2026 06:12:03] Client 15 sent emoji emote 1
|
||||||
|
[06/07/2026 06:12:05] Client 15 sent emoji emote 1
|
||||||
|
[06/07/2026 06:12:05] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:05] launching puck at (2.39, 4.39) with (-166.82, -305.93) force
|
||||||
|
[06/07/2026 06:12:10] force = 70 * 0.8743499 = 61.20449
|
||||||
|
[06/07/2026 06:12:10] launching puck at (-0.38, 3.73) with (22.96, -228.53) force
|
||||||
|
[06/07/2026 06:12:18] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:18] launching puck at (-3.17, 3.87) with (220.72, -269.64) force
|
||||||
|
[06/07/2026 06:12:23] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:23] launching puck at (-2.44, -4.37) with (169.93, 304.21) force
|
||||||
|
[06/07/2026 06:12:30] Client 15 sent emoji emote 4
|
||||||
|
[06/07/2026 06:12:33] force = 70 * 0.911639 = 63.81473
|
||||||
|
[06/07/2026 06:12:33] launching puck at (-1.23, -3.91) with (78.65, 249.77) force
|
||||||
|
[06/07/2026 06:12:38] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:38] launching puck at (0.82, -4.93) with (-57.26, 343.72) force
|
||||||
|
[06/07/2026 06:12:38] Red goal scored, red score is now 1
|
||||||
|
[06/07/2026 06:12:41] Client 15 sent emoji emote 0
|
||||||
|
[06/07/2026 06:12:46] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:46] launching puck at (-0.08, 5.00) with (5.30, -348.41) force
|
||||||
|
[06/07/2026 06:12:53] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:53] launching puck at (-1.25, -4.84) with (86.96, 337.43) force
|
||||||
|
[06/07/2026 06:13:00] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:00] launching puck at (-1.18, 4.86) with (82.09, -338.65) force
|
||||||
|
[06/07/2026 06:13:05] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:05] launching puck at (-3.52, -3.55) with (245.49, 247.29) force
|
||||||
|
[06/07/2026 06:13:12] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:12] launching puck at (0.17, 5.00) with (-12.02, -348.25) force
|
||||||
|
[06/07/2026 06:13:18] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:18] launching puck at (-4.81, -1.35) with (335.51, 94.09) force
|
||||||
|
[06/07/2026 06:13:24] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:24] launching puck at (-2.51, 4.32) with (175.00, -301.32) force
|
||||||
|
[06/07/2026 06:13:30] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:30] launching puck at (1.40, -4.80) with (-97.58, 334.51) force
|
||||||
|
[06/07/2026 06:13:36] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:36] launching puck at (-1.58, 4.74) with (110.46, -330.48) force
|
||||||
|
[06/07/2026 06:13:43] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:43] launching puck at (-1.46, -4.78) with (101.74, 333.27) force
|
||||||
|
[06/07/2026 06:13:47] Client 15 sent emoji emote 1
|
||||||
|
[06/07/2026 06:13:50] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:50] launching puck at (-2.71, 4.20) with (188.91, -292.80) force
|
||||||
|
[06/07/2026 06:13:54] Client 16 sent emoji emote 1
|
||||||
|
[06/07/2026 06:13:56] force = 70 * 0.9634856 = 67.44399
|
||||||
|
[06/07/2026 06:13:56] launching puck at (2.64, 3.82) with (-177.90, -257.95) force
|
||||||
|
[06/07/2026 06:14:05] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:05] launching puck at (0.25, 4.99) with (-17.30, -348.02) force
|
||||||
|
[06/07/2026 06:14:11] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:11] launching puck at (-4.83, -1.30) with (336.52, 90.40) force
|
||||||
|
[06/07/2026 06:14:14] Client 15 sent emoji emote 1
|
||||||
|
[06/07/2026 06:14:17] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:17] launching puck at (-2.88, 4.09) with (200.74, -284.82) force
|
||||||
|
[06/07/2026 06:14:26] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:26] launching puck at (-3.94, -3.08) with (274.71, 214.36) force
|
||||||
|
[06/07/2026 06:14:39] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:39] launching puck at (-0.70, -4.95) with (48.93, 345.00) force
|
||||||
|
[06/07/2026 06:14:44] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:44] launching puck at (1.42, -4.79) with (-99.20, 334.04) force
|
||||||
|
[06/07/2026 06:14:55] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:55] launching puck at (2.63, -4.25) with (-183.44, 296.26) force
|
||||||
|
[06/07/2026 06:15:00] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:15:00] launching puck at (0.18, -5.00) with (-12.25, 348.24) force
|
||||||
|
[06/07/2026 06:15:00] Red goal scored, red score is now 2
|
||||||
|
[06/07/2026 06:15:04] Client 16 sent emoji emote 1
|
||||||
|
[06/07/2026 06:15:08] Client 15 sent emoji emote 3
|
||||||
|
[06/07/2026 06:15:08] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:15:08] launching puck at (-0.09, 5.00) with (6.44, -348.39) force
|
||||||
|
[06/07/2026 06:15:14] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:15:14] launching puck at (-1.26, -4.84) with (87.82, 337.20) force
|
||||||
|
[06/07/2026 06:15:21] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:15:21] launching puck at (0.34, 4.99) with (-23.73, -347.64) force
|
||||||
|
[06/07/2026 06:15:21] Blue goal scored, blue score is now 1
|
||||||
|
[06/07/2026 06:15:24] Client 15 sent text emote Nice shot!
|
||||||
|
[06/07/2026 06:15:24] Client 16 sent emoji emote 0
|
||||||
|
[06/07/2026 06:15:27] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:15:27] launching puck at (-0.02, -5.00) with (1.69, 348.45) force
|
||||||
|
[06/07/2026 06:15:38] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:15:38] launching puck at (-3.52, 3.55) with (245.32, -247.46) force
|
||||||
|
[06/07/2026 06:15:45] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:15:45] launching puck at (2.91, -4.06) with (-202.98, 283.23) force
|
||||||
|
[06/07/2026 06:15:46] Red goal scored, red score is now 3
|
||||||
|
[06/07/2026 06:15:46] Dedicated match PATCH success: 200 {"ok":true,"id":175}
|
||||||
|
[06/07/2026 06:15:48] Dedicated match winner PATCH success: 200 {"ok":true,"id":175,"winner_id":55,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}}
|
||||||
|
[06/07/2026 06:15:48] Client 15 sent emoji emote 3
|
||||||
|
[06/07/2026 06:15:50] Client 16 sent emoji emote 0
|
||||||
|
[06/07/2026 06:15:54] Rematch requested, max bet limit coins: 500
|
||||||
|
[06/07/2026 06:16:07] Rematch was confirmed, closing in 5 secs. new room :
|
||||||
|
[06/07/2026 06:16:07] {"ok":true,"entry_fee":872,"rc_prize":1446,"for_red":{"Players":[{"Name":"peachy","LastSeen":1780812967494,"l10_wins":2,"l10_losses":0,"UserId":55,"rc":0.0},{"Name":"Zharntech","LastSeen":1780812967494,"l10_wins":2,"l10_losses":2,"UserId":33,"rc":0.0}],"GameName":"soccar","Port":26083,"InitTime":1780812967494,"instance_started":true,"match_id":187,"entry_fee":872,"rc_prize":1446,"your_team":"red"},"for_blue":{"Players":[{"Name":"peachy","LastSeen":1780812967494,"l10_wins":2,"l10_losses":0,"UserId":55,"rc":0.0},{"Name":"Zharntech","LastSeen":1780812967494,"l10_wins":2,"l10_losses":2,"UserId":33,"rc":0.0}],"GameName":"soccar","Port":26083,"InitTime":1780812967494,"instance_started":true,"match_id":187,"entry_fee":872,"rc_prize":1446,"your_team":"blue"},"your_team":""}
|
||||||
|
[06/07/2026 06:16:07] Mirror server: client disconnected (connId=-1479577740)
|
||||||
|
[06/07/2026 06:16:07] Active player connections: 1
|
||||||
|
[06/07/2026 06:16:08] Mirror server: client disconnected (connId=-412358232)
|
||||||
|
[06/07/2026 06:16:08] Active player connections: 0
|
||||||
|
[06/07/2026 06:16:12] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 06:16:22] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 06:16:32] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 06:16:42] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 06:16:52] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 06:17:03] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 06:17:13] All players left, exiting
|
||||||
|
[06/07/2026 06:17:13] Dedicated match PATCH success: 200 {"ok":true,"id":175}
|
||||||
@@ -0,0 +1,187 @@
|
|||||||
|
[06/07/2026 06:11:46] Starting server at port 26368
|
||||||
|
[06/07/2026 06:11:46] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 06:11:46] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 06:11:46] Starting auto close watchdog
|
||||||
|
[06/07/2026 06:11:46] Active player connections: 0
|
||||||
|
[06/07/2026 06:11:49] Active player connections: 1
|
||||||
|
[06/07/2026 06:11:49] Active player connections: 2
|
||||||
|
[06/07/2026 06:11:49] Game started On Server
|
||||||
|
[06/07/2026 06:11:50] Client 15 set team to Blue
|
||||||
|
[06/07/2026 06:11:50] Client 16 set team to Red
|
||||||
|
[06/07/2026 06:11:50] Dedicated match PATCH success: 200 {"ok":true,"id":176}
|
||||||
|
[06/07/2026 06:11:50] Dedicated match PATCH success: 200 {"ok":true,"id":176}
|
||||||
|
[06/07/2026 06:11:55] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:11:55] launching puck at (-0.01, -5.00) with (0.92, 348.45) force
|
||||||
|
[06/07/2026 06:12:01] force = 70 * 0.4974616 = 34.82231
|
||||||
|
[06/07/2026 06:12:01] launching puck at (0.69, 1.38) with (-23.89, -48.18) force
|
||||||
|
[06/07/2026 06:12:33] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:33] launching puck at (-1.51, 4.77) with (104.95, -332.27) force
|
||||||
|
[06/07/2026 06:12:41] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:41] launching puck at (-4.12, -2.83) with (287.04, 197.55) force
|
||||||
|
[06/07/2026 06:12:48] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:48] launching puck at (-2.67, 4.23) with (185.91, -294.72) force
|
||||||
|
[06/07/2026 06:13:03] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:03] launching puck at (-0.67, -4.96) with (46.62, 345.32) force
|
||||||
|
[06/07/2026 06:13:09] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:09] launching puck at (4.79, 1.43) with (-333.94, -99.52) force
|
||||||
|
[06/07/2026 06:13:15] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:15] launching puck at (2.62, -4.26) with (-182.75, 296.68) force
|
||||||
|
[06/07/2026 06:13:22] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:22] launching puck at (1.11, 4.87) with (-77.53, -339.72) force
|
||||||
|
[06/07/2026 06:13:28] force = 70 * 0.8946888 = 62.62822
|
||||||
|
[06/07/2026 06:13:28] launching puck at (3.89, -0.65) with (-243.34, 40.72) force
|
||||||
|
[06/07/2026 06:13:37] force = 70 * 0.9875268 = 69.12688
|
||||||
|
[06/07/2026 06:13:37] launching puck at (4.26, -2.44) with (-294.66, 168.57) force
|
||||||
|
[06/07/2026 06:13:44] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:44] launching puck at (3.15, -3.88) with (-219.55, 270.59) force
|
||||||
|
[06/07/2026 06:13:50] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:50] launching puck at (4.00, 3.00) with (-278.78, -209.04) force
|
||||||
|
[06/07/2026 06:13:57] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:57] launching puck at (-0.03, 5.00) with (2.25, -348.45) force
|
||||||
|
[06/07/2026 06:14:15] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:15] launching puck at (1.34, 4.82) with (-93.26, -335.74) force
|
||||||
|
[06/07/2026 06:14:22] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:22] launching puck at (-3.45, -3.62) with (240.27, 252.37) force
|
||||||
|
[06/07/2026 06:14:38] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:38] launching puck at (0.27, 4.99) with (-18.68, -347.95) force
|
||||||
|
[06/07/2026 06:14:39] Blue goal scored, blue score is now 1
|
||||||
|
[06/07/2026 06:14:47] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:47] launching puck at (0.12, -5.00) with (-8.07, 348.36) force
|
||||||
|
[06/07/2026 06:14:54] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:54] launching puck at (0.87, 4.92) with (-60.70, -343.12) force
|
||||||
|
[06/07/2026 06:15:08] force = 70 * 0.9467126 = 66.26988
|
||||||
|
[06/07/2026 06:15:08] launching puck at (4.46, 0.12) with (-295.77, -8.18) force
|
||||||
|
[06/07/2026 06:15:23] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:15:23] launching puck at (-2.72, 4.20) with (189.54, -292.40) force
|
||||||
|
[06/07/2026 06:15:29] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:15:29] launching puck at (-3.09, -3.93) with (215.42, 273.88) force
|
||||||
|
[06/07/2026 06:15:51] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:15:51] launching puck at (0.84, -4.93) with (-58.22, 343.56) force
|
||||||
|
[06/07/2026 06:15:52] Red goal scored, red score is now 1
|
||||||
|
[06/07/2026 06:16:14] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:16:14] launching puck at (-0.22, -4.99) with (15.61, 348.10) force
|
||||||
|
[06/07/2026 06:16:26] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:16:26] launching puck at (1.31, 4.83) with (-91.36, -336.26) force
|
||||||
|
[06/07/2026 06:16:41] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:16:41] launching puck at (-0.25, -4.99) with (17.72, 348.00) force
|
||||||
|
[06/07/2026 06:16:48] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:16:48] launching puck at (0.88, 4.92) with (-61.53, -342.98) force
|
||||||
|
[06/07/2026 06:16:59] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:16:59] launching puck at (-0.19, -5.00) with (13.45, 348.19) force
|
||||||
|
[06/07/2026 06:17:09] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:17:09] launching puck at (-1.98, 4.59) with (138.26, -319.85) force
|
||||||
|
[06/07/2026 06:17:09] Blue goal scored, blue score is now 2
|
||||||
|
[06/07/2026 06:17:18] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:17:18] launching puck at (-0.04, -5.00) with (2.53, 348.44) force
|
||||||
|
[06/07/2026 06:17:28] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:17:28] launching puck at (-1.98, 4.59) with (137.75, -320.07) force
|
||||||
|
[06/07/2026 06:17:33] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:17:33] launching puck at (-2.32, -4.43) with (161.64, 308.69) force
|
||||||
|
[06/07/2026 06:17:48] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:17:48] launching puck at (-3.92, 3.11) with (273.06, -216.47) force
|
||||||
|
[06/07/2026 06:17:55] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:17:55] launching puck at (0.99, -4.90) with (-69.17, 341.52) force
|
||||||
|
[06/07/2026 06:18:02] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:18:02] launching puck at (2.74, 4.18) with (-191.24, -291.29) force
|
||||||
|
[06/07/2026 06:18:10] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:18:10] launching puck at (1.61, -4.73) with (-112.45, 329.81) force
|
||||||
|
[06/07/2026 06:18:20] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:18:20] launching puck at (1.60, 4.74) with (-111.22, -330.23) force
|
||||||
|
[06/07/2026 06:18:26] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:18:26] launching puck at (1.44, -4.79) with (-100.23, 333.73) force
|
||||||
|
[06/07/2026 06:18:43] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:18:43] launching puck at (-0.26, 4.99) with (17.89, -347.99) force
|
||||||
|
[06/07/2026 06:18:49] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:18:49] launching puck at (-1.01, -4.90) with (70.63, 341.22) force
|
||||||
|
[06/07/2026 06:18:57] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:18:57] launching puck at (2.67, 4.23) with (-186.26, -294.50) force
|
||||||
|
[06/07/2026 06:19:21] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:19:21] launching puck at (-3.84, 3.20) with (267.63, -223.15) force
|
||||||
|
[06/07/2026 06:19:27] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:19:27] launching puck at (-4.68, -1.75) with (326.33, 122.19) force
|
||||||
|
[06/07/2026 06:19:34] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:19:34] launching puck at (2.79, 4.15) with (-194.36, -289.21) force
|
||||||
|
[06/07/2026 06:19:44] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:19:44] launching puck at (0.18, -5.00) with (-12.68, 348.22) force
|
||||||
|
[06/07/2026 06:19:59] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:19:59] launching puck at (-3.00, 4.00) with (208.95, -278.85) force
|
||||||
|
[06/07/2026 06:20:07] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:20:07] launching puck at (0.84, -4.93) with (-58.49, 343.51) force
|
||||||
|
[06/07/2026 06:20:13] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:20:13] launching puck at (4.76, 1.54) with (-331.43, -107.58) force
|
||||||
|
[06/07/2026 06:20:27] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:20:27] launching puck at (-0.20, -5.00) with (13.83, 348.18) force
|
||||||
|
[06/07/2026 06:20:27] Red goal scored, red score is now 2
|
||||||
|
[06/07/2026 06:20:37] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:20:37] launching puck at (-0.08, 5.00) with (5.81, -348.40) force
|
||||||
|
[06/07/2026 06:20:43] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:20:43] launching puck at (-0.48, -4.98) with (33.67, 346.82) force
|
||||||
|
[06/07/2026 06:20:54] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:20:54] launching puck at (1.56, 4.75) with (-108.41, -331.16) force
|
||||||
|
[06/07/2026 06:21:01] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:21:01] launching puck at (3.05, -3.96) with (-212.82, 275.91) force
|
||||||
|
[06/07/2026 06:21:09] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:21:09] launching puck at (0.52, 4.97) with (-36.30, -346.56) force
|
||||||
|
[06/07/2026 06:21:22] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:21:22] launching puck at (3.16, -3.87) with (-220.24, 270.02) force
|
||||||
|
[06/07/2026 06:21:28] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:21:28] launching puck at (2.57, 4.29) with (-179.36, -298.74) force
|
||||||
|
[06/07/2026 06:21:33] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:21:33] launching puck at (4.91, -0.94) with (-342.24, 65.51) force
|
||||||
|
[06/07/2026 06:21:46] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:21:46] launching puck at (3.81, -3.24) with (-265.40, 225.79) force
|
||||||
|
[06/07/2026 06:21:54] force = 70 * 0.8237678 = 57.66375
|
||||||
|
[06/07/2026 06:21:54] launching puck at (3.03, -1.38) with (-174.99, 79.67) force
|
||||||
|
[06/07/2026 06:22:02] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:22:02] launching puck at (-0.54, 4.97) with (37.73, -346.40) force
|
||||||
|
[06/07/2026 06:22:08] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:22:08] launching puck at (4.98, -0.41) with (-347.25, 28.88) force
|
||||||
|
[06/07/2026 06:22:16] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:22:16] launching puck at (4.39, -2.39) with (-306.17, 166.38) force
|
||||||
|
[06/07/2026 06:22:24] force = 70 * 0.7026878 = 49.18814
|
||||||
|
[06/07/2026 06:22:24] launching puck at (2.53, -0.27) with (-124.58, 13.17) force
|
||||||
|
[06/07/2026 06:22:35] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:22:35] launching puck at (2.26, 4.46) with (-157.67, -310.74) force
|
||||||
|
[06/07/2026 06:22:39] force = 70 * 0.7874221 = 55.11954
|
||||||
|
[06/07/2026 06:22:39] launching puck at (-2.29, -2.05) with (126.11, 112.85) force
|
||||||
|
[06/07/2026 06:22:48] force = 70 * 0.9554104 = 66.87872
|
||||||
|
[06/07/2026 06:22:48] launching puck at (-4.54, 0.37) with (303.85, -24.72) force
|
||||||
|
[06/07/2026 06:23:03] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:23:03] launching puck at (-3.03, -3.98) with (211.00, 277.31) force
|
||||||
|
[06/07/2026 06:23:16] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:23:16] launching puck at (-3.77, 3.28) with (262.79, -228.83) force
|
||||||
|
[06/07/2026 06:23:23] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:23:23] launching puck at (-3.87, -3.16) with (269.91, 220.38) force
|
||||||
|
[06/07/2026 06:23:36] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:23:36] launching puck at (3.19, -3.85) with (-222.26, 268.36) force
|
||||||
|
[06/07/2026 06:23:47] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:23:47] launching puck at (1.14, -4.87) with (-79.54, 339.25) force
|
||||||
|
[06/07/2026 06:23:59] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:23:59] launching puck at (-3.56, -3.51) with (248.33, 244.44) force
|
||||||
|
[06/07/2026 06:24:05] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:24:05] launching puck at (-0.42, -4.98) with (29.02, 347.24) force
|
||||||
|
[06/07/2026 06:24:16] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:24:16] launching puck at (4.04, -2.94) with (-281.88, 204.84) force
|
||||||
|
[06/07/2026 06:24:26] force = 70 * 0.8496501 = 59.47551
|
||||||
|
[06/07/2026 06:24:26] launching puck at (-3.28, -1.33) with (195.09, 79.23) force
|
||||||
|
[06/07/2026 06:24:33] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:24:33] launching puck at (-4.28, -2.59) with (298.25, 180.19) force
|
||||||
|
[06/07/2026 06:24:40] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:24:40] launching puck at (1.32, -4.82) with (-92.26, 336.02) force
|
||||||
|
[06/07/2026 06:25:02] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:25:02] launching puck at (1.26, -4.84) with (-87.53, 337.28) force
|
||||||
|
[06/07/2026 06:25:02] Red goal scored, red score is now 3
|
||||||
|
[06/07/2026 06:25:04] Dedicated match PATCH success: 200 {"ok":true,"id":176}
|
||||||
|
[06/07/2026 06:25:06] Dedicated match winner PATCH success: 200 {"ok":true,"id":176,"winner_id":53,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}}
|
||||||
|
[06/07/2026 06:25:11] Mirror server: client disconnected (connId=-1154293846)
|
||||||
|
[06/07/2026 06:25:11] Active player connections: 1
|
||||||
|
[06/07/2026 06:25:36] Mirror server: client disconnected (connId=-1798118326)
|
||||||
|
[06/07/2026 06:25:36] Active player connections: 0
|
||||||
|
[06/07/2026 06:25:41] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 06:25:51] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 06:26:01] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 06:26:11] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 06:26:21] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 06:26:31] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 06:26:41] All players left, exiting
|
||||||
|
[06/07/2026 06:26:41] Dedicated match PATCH success: 200 {"ok":true,"id":176}
|
||||||
@@ -0,0 +1,70 @@
|
|||||||
|
[06/07/2026 06:11:56] Starting server at port 26754
|
||||||
|
[06/07/2026 06:11:56] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 06:11:56] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 06:11:56] Starting auto close watchdog
|
||||||
|
[06/07/2026 06:11:56] Active player connections: 0
|
||||||
|
[06/07/2026 06:11:57] Active player connections: 2
|
||||||
|
[06/07/2026 06:11:57] Game started On Server
|
||||||
|
[06/07/2026 06:11:58] Client 16 set team to Red
|
||||||
|
[06/07/2026 06:11:58] Client 15 set team to Blue
|
||||||
|
[06/07/2026 06:11:58] Dedicated match PATCH success: 200 {"ok":true,"id":177}
|
||||||
|
[06/07/2026 06:11:58] Dedicated match PATCH success: 200 {"ok":true,"id":177}
|
||||||
|
[06/07/2026 06:12:02] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:02] launching puck at (0.26, -4.99) with (-18.41, 347.97) force
|
||||||
|
[06/07/2026 06:12:02] Active player connections: 3
|
||||||
|
[06/07/2026 06:12:03] Mirror server: client disconnected (connId=1804738377)
|
||||||
|
[06/07/2026 06:12:03] Active player connections: 2
|
||||||
|
[06/07/2026 06:12:17] force = 70 * 0.4952451 = 34.66716
|
||||||
|
[06/07/2026 06:12:17] launching puck at (0.99, -1.18) with (-34.22, 40.75) force
|
||||||
|
[06/07/2026 06:12:23] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:23] launching puck at (-0.40, -4.98) with (27.57, 347.36) force
|
||||||
|
[06/07/2026 06:12:23] Red goal scored, red score is now 1
|
||||||
|
[06/07/2026 06:12:28] force = 70 * 0.5048913 = 35.34239
|
||||||
|
[06/07/2026 06:12:28] launching puck at (-0.26, -1.56) with (9.06, 54.97) force
|
||||||
|
[06/07/2026 06:12:37] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:37] launching puck at (-0.06, -5.00) with (4.16, 348.43) force
|
||||||
|
[06/07/2026 06:12:41] force = 70 * 0.4472328 = 31.3063
|
||||||
|
[06/07/2026 06:12:41] launching puck at (-1.24, -0.57) with (38.69, 17.70) force
|
||||||
|
[06/07/2026 06:12:47] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:12:47] launching puck at (2.72, -4.20) with (-189.32, 292.53) force
|
||||||
|
[06/07/2026 06:12:48] Red goal scored, red score is now 2
|
||||||
|
[06/07/2026 06:13:21] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:21] launching puck at (-1.06, -4.89) with (73.64, 340.58) force
|
||||||
|
[06/07/2026 06:13:25] force = 70 * 0.3731504 = 26.12053
|
||||||
|
[06/07/2026 06:13:25] launching puck at (-0.94, -0.68) with (24.52, 17.83) force
|
||||||
|
[06/07/2026 06:13:38] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:38] launching puck at (4.51, -2.16) with (-314.15, 150.77) force
|
||||||
|
[06/07/2026 06:13:42] force = 70 * 0.9460524 = 66.22367
|
||||||
|
[06/07/2026 06:13:42] launching puck at (-4.41, -0.66) with (291.96, 43.69) force
|
||||||
|
[06/07/2026 06:13:57] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:13:57] launching puck at (3.09, -3.93) with (-215.26, 274.01) force
|
||||||
|
[06/07/2026 06:14:03] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:03] launching puck at (-4.55, 2.07) with (317.23, -144.16) force
|
||||||
|
[06/07/2026 06:14:08] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:08] launching puck at (1.11, 4.87) with (-77.65, -339.69) force
|
||||||
|
[06/07/2026 06:14:12] force = 70 * 0.9351808 = 65.46265
|
||||||
|
[06/07/2026 06:14:12] launching puck at (-3.95, -1.81) with (258.40, 118.58) force
|
||||||
|
[06/07/2026 06:14:21] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:21] launching puck at (4.56, 2.06) with (-317.65, -143.23) force
|
||||||
|
[06/07/2026 06:14:30] force = 70 * 0.9918025 = 69.42617
|
||||||
|
[06/07/2026 06:14:30] launching puck at (-4.54, -2.00) with (315.07, 138.64) force
|
||||||
|
[06/07/2026 06:14:35] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:35] launching puck at (2.37, -4.40) with (-165.39, 306.70) force
|
||||||
|
[06/07/2026 06:14:35] Red goal scored, red score is now 3
|
||||||
|
[06/07/2026 06:14:35] Dedicated match PATCH success: 200 {"ok":true,"id":177}
|
||||||
|
[06/07/2026 06:14:37] Dedicated match winner PATCH success: 200 {"ok":true,"id":177,"winner_id":35,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}}
|
||||||
|
[06/07/2026 06:14:46] Rematch requested, max bet limit coins: 500
|
||||||
|
[06/07/2026 06:14:57] Rematch was confirmed, closing in 5 secs. new room :
|
||||||
|
[06/07/2026 06:14:57] {"ok":true,"entry_fee":1620,"rc_prize":2688,"for_red":{"Players":[{"Name":"cirill","LastSeen":1780812897593,"l10_wins":1,"l10_losses":0,"UserId":35,"rc":0.0},{"Name":"Ayomide","LastSeen":1780812897593,"l10_wins":0,"l10_losses":0,"UserId":47,"rc":0.0}],"GameName":"soccar","Port":26615,"InitTime":1780812897593,"instance_started":true,"match_id":184,"entry_fee":1620,"rc_prize":2688,"your_team":"red"},"for_blue":{"Players":[{"Name":"cirill","LastSeen":1780812897593,"l10_wins":1,"l10_losses":0,"UserId":35,"rc":0.0},{"Name":"Ayomide","LastSeen":1780812897593,"l10_wins":0,"l10_losses":0,"UserId":47,"rc":0.0}],"GameName":"soccar","Port":26615,"InitTime":1780812897593,"instance_started":true,"match_id":184,"entry_fee":1620,"rc_prize":2688,"your_team":"blue"},"your_team":""}
|
||||||
|
[06/07/2026 06:14:57] Mirror server: client disconnected (connId=94424669)
|
||||||
|
[06/07/2026 06:14:57] Active player connections: 1
|
||||||
|
[06/07/2026 06:14:57] Mirror server: client disconnected (connId=-1502530233)
|
||||||
|
[06/07/2026 06:14:57] Active player connections: 0
|
||||||
|
[06/07/2026 06:15:02] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 06:15:12] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 06:15:22] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 06:15:32] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 06:15:42] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 06:15:52] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 06:16:02] All players left, exiting
|
||||||
|
[06/07/2026 06:16:03] Dedicated match PATCH success: 200 {"ok":true,"id":177}
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
[06/07/2026 06:12:44] Starting server at port 26821
|
||||||
|
[06/07/2026 06:12:44] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 06:12:44] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 06:12:44] Starting auto close watchdog
|
||||||
|
[06/07/2026 06:12:45] Active player connections: 0
|
||||||
|
[06/07/2026 06:12:47] Active player connections: 1
|
||||||
|
[06/07/2026 06:12:48] Client 15 set team to Blue
|
||||||
|
[06/07/2026 06:12:48] Dedicated match PATCH success: 200 {"ok":true,"id":179}
|
||||||
|
[06/07/2026 06:12:48] Active player connections: 2
|
||||||
|
[06/07/2026 06:12:48] Game started On Server
|
||||||
|
[06/07/2026 06:12:49] Client 16 set team to Red
|
||||||
|
[06/07/2026 06:12:49] Dedicated match PATCH success: 200 {"ok":true,"id":179}
|
||||||
|
[06/07/2026 06:13:05] force = 70 * 0.8698716 = 60.89101
|
||||||
|
[06/07/2026 06:13:05] launching puck at (3.68, 0.49) with (-224.10, -29.95) force
|
||||||
|
[06/07/2026 06:13:09] Mirror server transport error (connId=1804761685, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting.
|
||||||
|
[06/07/2026 06:13:09] Mirror server: client disconnected (connId=1804761685)
|
||||||
|
[06/07/2026 06:13:09] Active player connections: 1
|
||||||
|
[06/07/2026 06:13:10] Client 15 sent text emote Nice shot!
|
||||||
|
[06/07/2026 06:13:24] force = 70 * 0.6314172 = 44.1992
|
||||||
|
[06/07/2026 06:13:24] launching puck at (2.02, -0.82) with (-89.36, 36.15) force
|
||||||
|
[06/07/2026 06:13:45] force = 70 * 0.6302164 = 44.11515
|
||||||
|
[06/07/2026 06:13:45] launching puck at (-0.22, -2.16) with (9.53, 95.49) force
|
||||||
|
[06/07/2026 06:14:05] force = 70 * 0.8221992 = 57.55395
|
||||||
|
[06/07/2026 06:14:05] launching puck at (2.16, -2.52) with (-124.48, 145.15) force
|
||||||
|
[06/07/2026 06:14:25] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:25] launching puck at (-3.06, 3.95) with (213.30, -275.54) force
|
||||||
|
[06/07/2026 06:14:41] Mirror server transport error (connId=-411167342, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting.
|
||||||
|
[06/07/2026 06:14:41] Mirror server: client disconnected (connId=-411167342)
|
||||||
|
[06/07/2026 06:14:41] Active player connections: 0
|
||||||
|
[06/07/2026 06:14:46] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 06:14:56] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 06:15:06] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 06:15:16] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 06:15:26] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 06:15:36] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 06:15:46] All players left, exiting
|
||||||
|
[06/07/2026 06:15:46] Dedicated match PATCH success: 200 {"ok":true,"id":179}
|
||||||
@@ -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,46 @@
|
|||||||
|
[06/07/2026 06:13:45] Starting server at port 26591
|
||||||
|
[06/07/2026 06:13:46] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 06:13:46] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 06:13:46] Starting auto close watchdog
|
||||||
|
[06/07/2026 06:13:46] Active player connections: 0
|
||||||
|
[06/07/2026 06:13:46] Active player connections: 1
|
||||||
|
[06/07/2026 06:13:47] Client 15 set team to Blue
|
||||||
|
[06/07/2026 06:13:47] Dedicated match PATCH success: 200 {"ok":true,"id":180}
|
||||||
|
[06/07/2026 06:13:48] Active player connections: 2
|
||||||
|
[06/07/2026 06:13:48] Game started On Server
|
||||||
|
[06/07/2026 06:13:48] Client 16 set team to Blue
|
||||||
|
[06/07/2026 06:13:51] Active player connections: 3
|
||||||
|
[06/07/2026 06:13:52] Mirror server: client disconnected (connId=303628978)
|
||||||
|
[06/07/2026 06:13:52] Active player connections: 2
|
||||||
|
[06/07/2026 06:14:08] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:08] launching puck at (0.11, 5.00) with (-7.33, -348.38) force
|
||||||
|
[06/07/2026 06:14:28] force = 70 * 0.6459141 = 45.21399
|
||||||
|
[06/07/2026 06:14:28] launching puck at (0.50, 2.20) with (-22.47, -99.27) force
|
||||||
|
[06/07/2026 06:14:29] Blue goal scored, blue score is now 1
|
||||||
|
[06/07/2026 06:14:50] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:50] launching puck at (0.05, 5.00) with (-3.73, -348.43) force
|
||||||
|
[06/07/2026 06:15:11] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:15:11] launching puck at (-0.11, 5.00) with (7.79, -348.37) force
|
||||||
|
[06/07/2026 06:15:32] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:15:32] launching puck at (-2.66, 4.23) with (185.26, -295.12) force
|
||||||
|
[06/07/2026 06:15:32] Blue goal scored, blue score is now 2
|
||||||
|
[06/07/2026 06:15:54] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:15:54] launching puck at (-0.11, 5.00) with (7.87, -348.36) force
|
||||||
|
[06/07/2026 06:15:54] Client 16 sent text emote Oops
|
||||||
|
[06/07/2026 06:16:15] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:16:15] launching puck at (-0.66, 4.96) with (45.85, -345.42) force
|
||||||
|
[06/07/2026 06:16:15] Blue goal scored, blue score is now 3
|
||||||
|
[06/07/2026 06:16:16] Dedicated match PATCH success: 200 {"ok":true,"id":180}
|
||||||
|
[06/07/2026 06:16:17] Dedicated match winner PATCH success: 200 {"ok":true,"id":180,"winner_id":27,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}}
|
||||||
|
[06/07/2026 06:16:24] Mirror server: client disconnected (connId=-340578061)
|
||||||
|
[06/07/2026 06:16:24] Active player connections: 1
|
||||||
|
[06/07/2026 06:16:29] Mirror server: client disconnected (connId=1990947465)
|
||||||
|
[06/07/2026 06:16:29] Active player connections: 0
|
||||||
|
[06/07/2026 06:16:34] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 06:16:44] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 06:16:54] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 06:17:04] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 06:17:14] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 06:17:24] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 06:17:34] All players left, exiting
|
||||||
|
[06/07/2026 06:17:35] Dedicated match PATCH success: 200 {"ok":true,"id":180}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
[06/07/2026 06:14:00] Starting server at port 26796
|
||||||
|
[06/07/2026 06:14:00] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 06:14:00] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 06:14:00] Starting auto close watchdog
|
||||||
|
[06/07/2026 06:14:00] Active player connections: 0
|
||||||
|
[06/07/2026 06:14:06] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 06:14:10] Mirror server transport error (connId=-1154299556, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting.
|
||||||
|
[06/07/2026 06:14:10] Mirror server: client disconnected (connId=-1154299556)
|
||||||
|
[06/07/2026 06:14:16] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 06:14:26] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 06:14:36] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 06:14:46] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 06:14:56] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 06:15:06] No players joined, exiting
|
||||||
|
[06/07/2026 06:15:07] Dedicated match PATCH success: 200 {"ok":true,"id":181}
|
||||||
@@ -0,0 +1,58 @@
|
|||||||
|
[06/07/2026 06:14:09] Starting server at port 26369
|
||||||
|
[06/07/2026 06:14:09] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 06:14:09] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 06:14:09] Starting auto close watchdog
|
||||||
|
[06/07/2026 06:14:10] Active player connections: 0
|
||||||
|
[06/07/2026 06:14:10] Active player connections: 1
|
||||||
|
[06/07/2026 06:14:11] Client 15 set team to Red
|
||||||
|
[06/07/2026 06:14:11] Dedicated match PATCH success: 200 {"ok":true,"id":182}
|
||||||
|
[06/07/2026 06:14:12] Active player connections: 2
|
||||||
|
[06/07/2026 06:14:12] Game started On Server
|
||||||
|
[06/07/2026 06:14:13] Client 16 set team to Blue
|
||||||
|
[06/07/2026 06:14:13] Dedicated match PATCH success: 200 {"ok":true,"id":182}
|
||||||
|
[06/07/2026 06:14:26] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:26] launching puck at (0.03, -5.00) with (-2.37, 348.45) force
|
||||||
|
[06/07/2026 06:14:32] force = 70 * 0.270622 = 18.94354
|
||||||
|
[06/07/2026 06:14:32] launching puck at (-0.24, -0.93) with (4.55, 17.69) force
|
||||||
|
[06/07/2026 06:14:38] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:38] launching puck at (-0.35, -4.99) with (24.07, 347.62) force
|
||||||
|
[06/07/2026 06:14:47] force = 70 * 0.5182092 = 36.27464
|
||||||
|
[06/07/2026 06:14:47] launching puck at (-0.40, 1.59) with (14.69, -57.53) force
|
||||||
|
[06/07/2026 06:14:53] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:53] launching puck at (-1.63, -4.73) with (113.63, 329.40) force
|
||||||
|
[06/07/2026 06:14:53] Red goal scored, red score is now 1
|
||||||
|
[06/07/2026 06:15:00] force = 70 * 0.7125592 = 49.87915
|
||||||
|
[06/07/2026 06:15:00] launching puck at (-2.56, 0.49) with (127.51, -24.27) force
|
||||||
|
[06/07/2026 06:15:05] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:15:05] launching puck at (0.29, -4.99) with (-19.91, 347.88) force
|
||||||
|
[06/07/2026 06:15:05] Red goal scored, red score is now 2
|
||||||
|
[06/07/2026 06:15:14] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:15:14] launching puck at (-1.74, -4.69) with (121.10, 326.73) force
|
||||||
|
[06/07/2026 06:15:19] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:15:19] launching puck at (-0.50, -4.98) with (34.67, 346.72) force
|
||||||
|
[06/07/2026 06:15:26] force = 70 * 0.5630906 = 39.41634
|
||||||
|
[06/07/2026 06:15:26] launching puck at (-1.86, -0.12) with (73.18, 4.64) force
|
||||||
|
[06/07/2026 06:15:34] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:15:34] launching puck at (0.04, -5.00) with (-2.98, 348.44) force
|
||||||
|
[06/07/2026 06:15:44] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:15:44] launching puck at (0.57, -4.97) with (-40.03, 346.15) force
|
||||||
|
[06/07/2026 06:15:53] force = 70 * 0.9460553 = 66.22387
|
||||||
|
[06/07/2026 06:15:53] launching puck at (1.58, -4.17) with (-104.93, 275.93) force
|
||||||
|
[06/07/2026 06:15:55] Red goal scored, red score is now 3
|
||||||
|
[06/07/2026 06:15:55] Dedicated match PATCH success: 200 {"ok":true,"id":182}
|
||||||
|
[06/07/2026 06:15:57] Dedicated match winner PATCH success: 200 {"ok":true,"id":182,"winner_id":48,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}}
|
||||||
|
[06/07/2026 06:16:07] Rematch requested, max bet limit coins: 500
|
||||||
|
[06/07/2026 06:16:11] Rematch was confirmed, closing in 5 secs. new room :
|
||||||
|
[06/07/2026 06:16:11] {"ok":true,"entry_fee":306,"rc_prize":506,"for_red":{"Players":[{"Name":"joy grace","LastSeen":1780812971900,"l10_wins":2,"l10_losses":1,"UserId":48,"rc":0.0},{"Name":"oxford","LastSeen":1780812971900,"l10_wins":0,"l10_losses":2,"UserId":27,"rc":0.0}],"GameName":"soccar","Port":26067,"InitTime":1780812971900,"instance_started":true,"match_id":188,"entry_fee":306,"rc_prize":506,"your_team":"red"},"for_blue":{"Players":[{"Name":"joy grace","LastSeen":1780812971900,"l10_wins":2,"l10_losses":1,"UserId":48,"rc":0.0},{"Name":"oxford","LastSeen":1780812971900,"l10_wins":0,"l10_losses":2,"UserId":27,"rc":0.0}],"GameName":"soccar","Port":26067,"InitTime":1780812971900,"instance_started":true,"match_id":188,"entry_fee":306,"rc_prize":506,"your_team":"blue"},"your_team":""}
|
||||||
|
[06/07/2026 06:16:12] Mirror server: client disconnected (connId=-1154316636)
|
||||||
|
[06/07/2026 06:16:12] Active player connections: 1
|
||||||
|
[06/07/2026 06:16:12] Mirror server: client disconnected (connId=303630639)
|
||||||
|
[06/07/2026 06:16:12] Active player connections: 0
|
||||||
|
[06/07/2026 06:16:17] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 06:16:27] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 06:16:37] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 06:16:47] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 06:16:57] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 06:17:07] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 06:17:17] All players left, exiting
|
||||||
|
[06/07/2026 06:17:18] Dedicated match PATCH success: 200 {"ok":true,"id":182}
|
||||||
@@ -0,0 +1,71 @@
|
|||||||
|
[06/07/2026 06:14:50] Starting server at port 26617
|
||||||
|
[06/07/2026 06:14:50] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 06:14:50] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 06:14:50] Starting auto close watchdog
|
||||||
|
[06/07/2026 06:14:50] Active player connections: 0
|
||||||
|
[06/07/2026 06:14:52] Active player connections: 1
|
||||||
|
[06/07/2026 06:14:53] Client 15 set team to Blue
|
||||||
|
[06/07/2026 06:14:53] Active player connections: 2
|
||||||
|
[06/07/2026 06:14:53] Game started On Server
|
||||||
|
[06/07/2026 06:14:53] Dedicated match PATCH success: 200 {"ok":true,"id":183}
|
||||||
|
[06/07/2026 06:14:54] Client 16 set team to Red
|
||||||
|
[06/07/2026 06:14:54] Dedicated match PATCH success: 200 {"ok":true,"id":183}
|
||||||
|
[06/07/2026 06:14:58] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:14:58] launching puck at (0.03, -5.00) with (-2.18, 348.45) force
|
||||||
|
[06/07/2026 06:15:09] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:15:09] launching puck at (-3.06, -3.95) with (213.34, 275.51) force
|
||||||
|
[06/07/2026 06:15:15] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:15:15] launching puck at (-1.52, -4.76) with (106.17, 331.89) force
|
||||||
|
[06/07/2026 06:15:16] Red goal scored, red score is now 1
|
||||||
|
[06/07/2026 06:15:22] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:15:22] launching puck at (-1.13, 4.87) with (78.90, -339.40) force
|
||||||
|
[06/07/2026 06:15:28] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:15:28] launching puck at (2.06, -4.56) with (-143.65, 317.47) force
|
||||||
|
[06/07/2026 06:15:33] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:15:33] launching puck at (2.74, 4.19) with (-190.60, -291.70) force
|
||||||
|
[06/07/2026 06:15:38] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:15:38] launching puck at (3.08, -3.94) with (-214.74, 274.42) force
|
||||||
|
[06/07/2026 06:15:45] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:15:45] launching puck at (-4.53, -2.12) with (315.68, 147.53) force
|
||||||
|
[06/07/2026 06:15:49] force = 70 * 0.6345464 = 44.41825
|
||||||
|
[06/07/2026 06:15:49] launching puck at (-0.67, -2.09) with (29.87, 92.86) force
|
||||||
|
[06/07/2026 06:15:54] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:15:54] launching puck at (4.06, -2.91) with (-283.21, 203.00) force
|
||||||
|
[06/07/2026 06:16:01] force = 70 * 0.9287286 = 65.011
|
||||||
|
[06/07/2026 06:16:01] launching puck at (3.77, -2.01) with (-245.34, 130.72) force
|
||||||
|
[06/07/2026 06:16:05] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:16:05] launching puck at (-1.12, 4.87) with (78.34, -339.53) force
|
||||||
|
[06/07/2026 06:16:12] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:16:12] launching puck at (4.99, 0.32) with (-347.75, -22.14) force
|
||||||
|
[06/07/2026 06:16:13] Red goal scored, red score is now 2
|
||||||
|
[06/07/2026 06:16:19] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:16:19] launching puck at (-0.44, 4.98) with (30.39, -347.13) force
|
||||||
|
[06/07/2026 06:16:27] force = 70 * 0.9807782 = 68.65447
|
||||||
|
[06/07/2026 06:16:27] launching puck at (-4.38, -2.05) with (300.87, 140.43) force
|
||||||
|
[06/07/2026 06:16:35] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:16:35] launching puck at (-4.94, 0.75) with (344.48, -52.47) force
|
||||||
|
[06/07/2026 06:16:41] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:16:41] launching puck at (-4.64, 1.86) with (323.44, -129.64) force
|
||||||
|
[06/07/2026 06:16:49] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:16:49] launching puck at (-4.87, 1.15) with (339.11, -80.16) force
|
||||||
|
[06/07/2026 06:16:56] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:16:56] launching puck at (3.12, -3.91) with (-217.39, 272.33) force
|
||||||
|
[06/07/2026 06:17:01] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:17:01] launching puck at (4.57, 2.03) with (-318.31, -141.76) force
|
||||||
|
[06/07/2026 06:17:07] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:17:07] launching puck at (4.64, -1.87) with (-323.26, 130.08) force
|
||||||
|
[06/07/2026 06:17:07] Red goal scored, red score is now 3
|
||||||
|
[06/07/2026 06:17:08] Dedicated match PATCH success: 200 {"ok":true,"id":183}
|
||||||
|
[06/07/2026 06:17:11] Dedicated match winner PATCH success: 200 {"ok":true,"id":183,"winner_id":30,"economy":{"entry_fee_rc":21,"rc_prize":34,"participant_cc":100}}
|
||||||
|
[06/07/2026 06:17:16] Mirror server: client disconnected (connId=-1980051730)
|
||||||
|
[06/07/2026 06:17:16] Active player connections: 1
|
||||||
|
[06/07/2026 06:17:39] Mirror server: client disconnected (connId=-1154286476)
|
||||||
|
[06/07/2026 06:17:39] Active player connections: 0
|
||||||
|
[06/07/2026 06:17:44] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 06:17:54] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 06:18:04] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 06:18:14] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 06:18:24] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 06:18:34] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 06:18:44] All players left, exiting
|
||||||
|
[06/07/2026 06:18:45] Dedicated match PATCH success: 200 {"ok":true,"id":183}
|
||||||
@@ -0,0 +1,59 @@
|
|||||||
|
[06/07/2026 06:14:59] Starting server at port 26615
|
||||||
|
[06/07/2026 06:14:59] Mirror server exception logging enabled
|
||||||
|
[06/07/2026 06:14:59] Failed to fetch red and blue names, isServer?
|
||||||
|
[06/07/2026 06:14:59] Starting auto close watchdog
|
||||||
|
[06/07/2026 06:14:59] Active player connections: 0
|
||||||
|
[06/07/2026 06:15:03] Active player connections: 2
|
||||||
|
[06/07/2026 06:15:03] Game started On Server
|
||||||
|
[06/07/2026 06:15:04] Client 15 set team to Blue
|
||||||
|
[06/07/2026 06:15:04] Client 16 set team to Red
|
||||||
|
[06/07/2026 06:15:04] Dedicated match PATCH success: 200 {"ok":true,"id":184}
|
||||||
|
[06/07/2026 06:15:04] Dedicated match PATCH success: 200 {"ok":true,"id":184}
|
||||||
|
[06/07/2026 06:15:08] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:15:08] launching puck at (0.09, -5.00) with (-6.49, 348.39) force
|
||||||
|
[06/07/2026 06:15:22] Mirror server transport error (connId=-1502497733, Timeout): kcp2k.KcpServerConnection: Connection timed out after not receiving any message for 10000ms. Disconnecting.
|
||||||
|
[06/07/2026 06:15:22] Mirror server: client disconnected (connId=-1502497733)
|
||||||
|
[06/07/2026 06:15:22] Active player connections: 1
|
||||||
|
[06/07/2026 06:15:32] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:15:32] launching puck at (2.14, -4.52) with (-149.13, 314.93) force
|
||||||
|
[06/07/2026 06:16:29] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:16:29] launching puck at (4.99, 0.28) with (-347.92, -19.19) force
|
||||||
|
[06/07/2026 06:16:49] force = 70 * 0.8968054 = 62.77638
|
||||||
|
[06/07/2026 06:16:49] launching puck at (-3.85, -0.91) with (241.94, 57.00) force
|
||||||
|
[06/07/2026 06:17:11] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:17:11] launching puck at (-0.14, -5.00) with (9.59, 348.32) force
|
||||||
|
[06/07/2026 06:17:12] Red goal scored, red score is now 1
|
||||||
|
[06/07/2026 06:17:36] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:17:36] launching puck at (0.05, -5.00) with (-3.47, 348.44) force
|
||||||
|
[06/07/2026 06:17:59] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:17:59] launching puck at (-4.95, -0.69) with (345.09, 48.33) force
|
||||||
|
[06/07/2026 06:18:20] force = 70 * 0.8879317 = 62.15522
|
||||||
|
[06/07/2026 06:18:20] launching puck at (3.87, 0.29) with (-240.27, -17.72) force
|
||||||
|
[06/07/2026 06:18:52] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:18:52] launching puck at (0.59, -4.97) with (-40.78, 346.06) force
|
||||||
|
[06/07/2026 06:19:24] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:19:24] launching puck at (2.11, -4.53) with (-147.22, 315.83) force
|
||||||
|
[06/07/2026 06:19:46] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:19:46] launching puck at (1.33, -4.82) with (-92.68, 335.90) force
|
||||||
|
[06/07/2026 06:20:05] force = 70 * 0.7749988 = 54.24992
|
||||||
|
[06/07/2026 06:20:05] launching puck at (0.28, -2.97) with (-14.99, 161.30) force
|
||||||
|
[06/07/2026 06:20:05] Red goal scored, red score is now 2
|
||||||
|
[06/07/2026 06:20:27] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:20:27] launching puck at (0.03, -5.00) with (-2.06, 348.45) force
|
||||||
|
[06/07/2026 06:20:50] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:20:50] launching puck at (0.19, -5.00) with (-12.94, 348.21) force
|
||||||
|
[06/07/2026 06:21:10] force = 70 * 0.9955804 = 69.69063
|
||||||
|
[06/07/2026 06:21:10] launching puck at (1.53, -4.76) with (-106.28, 331.85) force
|
||||||
|
[06/07/2026 06:21:10] Red goal scored, red score is now 3
|
||||||
|
[06/07/2026 06:21:10] Dedicated match PATCH success: 200 {"ok":true,"id":184}
|
||||||
|
[06/07/2026 06:21:12] Dedicated match winner PATCH success: 200 {"ok":true,"id":184,"winner_id":35,"economy":{"entry_fee_rc":1620,"rc_prize":2688,"participant_cc":100}}
|
||||||
|
[06/07/2026 06:21:18] Mirror server: client disconnected (connId=94418100)
|
||||||
|
[06/07/2026 06:21:18] Active player connections: 0
|
||||||
|
[06/07/2026 06:21:23] Server will be closed due to no players in, 60
|
||||||
|
[06/07/2026 06:21:33] Server will be closed due to no players in, 50
|
||||||
|
[06/07/2026 06:21:43] Server will be closed due to no players in, 40
|
||||||
|
[06/07/2026 06:21:53] Server will be closed due to no players in, 30
|
||||||
|
[06/07/2026 06:22:03] Server will be closed due to no players in, 20
|
||||||
|
[06/07/2026 06:22:13] Server will be closed due to no players in, 10
|
||||||
|
[06/07/2026 06:22:23] All players left, exiting
|
||||||
|
[06/07/2026 06:22:23] Dedicated match PATCH success: 200 {"ok":true,"id":184}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user