First of all, Thank you very much for making this public!
I feel a bit rusty and also unsure about some of these things as ive been away from the OT scene for at least 5 years now.
And before that I mainly dabbled in pre-compiled distros and on Windows.
Ive managed to get everything up and "running(?)".
Its all hosted on the same machine as the client under Garuda(Arch) Linux OS
My first issue was when trying to load the game it was complaining about not finding 'Zanera'.
Checking the Worlds tables in sqlite showed that it was empty
so I added it into the tibia.db via sqlite
LUA:
INSERT INTO worlds (name, ip, port, password) VALUES ('Zanera', '127.0.0.1', 7173, 'nXE?/>j`');
INSERT INTO worlds (name, ip, port, password) VALUES ('Zanera', '127.0.0.1', 7174, 'nXE?/>j`');
INSERT INTO worlds (name, ip, port, password) VALUES ('Zanera', '127.0.0.1', 7175, 'nXE?/>j`');
INSERT INTO worlds (name, ip, port, password) VALUES ('Zanera', '127.0.0.1', 7176, 'nXE?/>j`');
Perhaps this is an issue?
Then I got it to successfully boot.
Got the WebUI running and created an account
Sorted out the RSA by patching my client with the forked IP-Changer by
minhkey. (Awesome)
Managed to login into account and upon selecting character I was greeted with the lack of premium account.
So I went back to tibia.db with sqlite and updated my account with
Code:
UPDATE Accounts
SET PremiumEnd = strftime('%s','now','+365 days')
WHERE AccountID = 12345;
Now I got past the Premium needed to access Zanera
But once again blocked by a login queue. And that is where I am currently stuck
Any help that enables me to login and re-live some nostalgia is very much appreciated!