[2026-02-26 23:33:03.737] [MQ] [debug] [MacroQuest.cpp:375] Logging Initialized
[2026-02-26 23:33:03.738] [MQ] [info] [MacroQuest.cpp:1889] Starting MacroQuest Loader. Built Sun Jan 4 19:08:04 2026
[2026-02-26 23:33:03.773] [MQ] [info] [Crashpad.cpp:117] Initializing crashpad handler
[2026-02-26 23:33:03.774] [MQ] [debug] [Crashpad.cpp:118] Handler Path: C:\Users\Public\redfetch\Downloads\VanillaMQ_LIVE\crashpad_handler.exe
[2026-02-26 23:33:03.775] [MQ] [info] [Crashpad.cpp:123] Crash report submission is: enabled
[2026-02-26 23:33:03.776] [MQ] [info] [Crashpad.cpp:127] Crash report guid: 0bee0aa9-68b4-4d56-951c-62244b311cd7
[2026-02-26 23:33:03.776] [MQ] [info] [Crashpad.cpp:137] Using shared crash reporter for all MacroQuest instances
[2026-02-26 23:33:03.812] [MQ] [info] [MacroQuest.cpp:1446] MQ2Main Path: C:\Users\Public\redfetch\Downloads\VanillaMQ_LIVE\MQ2Main.dll
[2026-02-26 23:33:03.827] [MQ] [info] [MacroQuest.cpp:1466] Build: MacroQuest [Feb 5 2026 (Live)]
[2026-02-26 23:33:03.844] [MQ] [info] [ServerPostOffice.cpp:55] PostOffice {launcher [7781]}: Starting Post Office on pipe \\.\pipe\mqpipe and port 7781
[2026-02-26 23:33:03.898] [MQ] [info] [Login.cpp:2565] AutoLogin Opening database at C:\Users\Public\redfetch\Downloads\VanillaMQ_LIVE\Config\login.db
[2026-02-26 23:33:03.904] [MQ] [info] [Login.cpp:2244] AutoLogin Error Migration failed
CREATE TABLE new_profiles (
id integer primary key,
character_id integer not null,
group_id integer not null,
eq_path text,
hotkey text,
end_after_select integer,
char_select_delay integer,
selected integer,
custom_client_ini text,
foreign key (character_id) references characters(id) on delete cascade,
foreign key (group_id) references profile_groups(id) on delete cascade,
unique (character_id, group_id));
INSERT INTO new_profiles
SELECT id, character_id, group_id, eq_path, hotkey, null, null, selected, null
FROM profiles;
DROP TABLE profiles;
ALTER TABLE new_profiles RENAME TO profiles;
CREATE TABLE server_types (
type text primary key,
eq_path text not null);
INSERT INTO server_types(type, eq_path)
SELECT 'import', '' FROM accounts LIMIT 1;
CREATE TABLE new_accounts (
id integer primary key,
account text not null,
password text not null,
server_type text default 'import' not null,
foreign key (server_type) references server_types(type) on delete cascade,
unique(account, server_type));
INSERT INTO new_accounts(account, password)
SELECT account, COALESCE(password, 'invalid')
FROM accounts;
DROP TABLE accounts;
ALTER TABLE new_accounts RENAME TO accounts;
CREATE TABLE new_characters (
id integer primary key,
character text not null,
server text not null,
account_id integer not null,
foreign key (account_id) references accounts(id) on delete cascade,
unique (character, server));
INSERT INTO new_characters
SELECT
id,
character,
server,
account_id
FROM characters
JOIN (SELECT id AS account_id, account FROM accounts) USING (account);
DROP TABLE characters;
ALTER TABLE new_characters RENAME TO characters;
: no such column: selected
[2026-02-26 23:33:03.911] [MQ] [error] [LoaderAutoLogin.cpp:316] Could not load autologin database, Autologin functionality will be disabled
[2026-02-26 23:33:03.927] [MQ] [info] [ProcessMonitor.cpp:436] Process monitor using ToolHelp started
[2026-02-26 23:33:03.928] [MQ] [debug] [ProcessList.cpp:1161] Initializing injector
[2026-02-26 23:33:03.938] [MQ] [info] [ProcessList.cpp:703] Performing injections on any existing eqgame.exe processes
[2026-02-26 23:33:03.938] [MQ] [debug] [ProcessList.cpp:1054] Injector thread started
[2026-02-26 23:33:05.025] [MQ] [info] [MacroQuest.cpp:2108] Waiting for events...