What's new

Warlords of Draenor 6.2.3&6.2.4 , Legion 7.3.5 , Battle for Azeroth 8.3.7, Shadowlands 9.2.7, Dragonflight 10.2.7, The War Within 11.2.5

Hello again, so I'm new to this type of repack. I downloaded Legion client from Firestorm. I downloaded from your link SPPV2 Praevous Core and Thorignir v2. I extracted the zip.
What's the next step ? I search a bit but couldn't find a guide or a step by step to how to install. I checked your video for playing offline but I guess that would be after installing the whole repack. Thanks !
Hello, you don't install anything it's ready to use
but first check bnetserver.conf and worldserver.conf
there's a setting calle game.build.versioncheck if it's set to 26365
1762012411831.png

SPPV2 execute them in this order
1762012350510.png


thorignir 2
there you also would need to check that setting in the configs
start mysql, bnetserver, worldserver


don't forget to change the portal (127.0.0.1) in firestorm's client config
 
Hello
Did you look at the bottom of the tutorial. There's a guide how to update the realmlist build(video and text file) in tc
you go to the source page of tc, check if they support your build and if they do copy the query and in execute it in the auth db and then verify that the build in the realmlist table is correct(your wow.exe build)

Also on that post you quoted is seen that that 63796 build number is not 11.2.0-it's 11.2.5. the exact one required to connect and I forgot to add the link,thank you for that

Here's the query updating from 63796 to 61154: Execute it in auth db

DELETE FROM `build_info` WHERE `build` IN (64154);
INSERT INTO `build_info` (`build`,`majorVersion`,`minorVersion`,`bugfixVersion`,`hotfixVersion`) VALUES
(64154,11,2,5,NULL);

DELETE FROM `build_auth_key` WHERE `build`=64154 AND `platform`='Mac' AND `arch`='A64' AND `type`='WoW';
DELETE FROM `build_auth_key` WHERE `build`=64154 AND `platform`='Mac' AND `arch`='A64' AND `type`='WoWC';
DELETE FROM `build_auth_key` WHERE `build`=64154 AND `platform`='Mac' AND `arch`='x64' AND `type`='WoW';
DELETE FROM `build_auth_key` WHERE `build`=64154 AND `platform`='Mac' AND `arch`='x64' AND `type`='WoWC';
DELETE FROM `build_auth_key` WHERE `build`=64154 AND `platform`='Win' AND `arch`='A64' AND `type`='WoW';
DELETE FROM `build_auth_key` WHERE `build`=64154 AND `platform`='Win' AND `arch`='x64' AND `type`='WoW';
DELETE FROM `build_auth_key` WHERE `build`=64154 AND `platform`='Win' AND `arch`='x64' AND `type`='WoWC';
INSERT INTO `build_auth_key` (`build`,`platform`,`arch`,`type`,`key`) VALUES
(64154,'Mac','A64','WoW',0x2B47687B97FB51EFCC28274BF094EF7B),
(64154,'Mac','A64','WoWC',0x676F3B5CD92799B5CE6ECBFD42EBBC96),
(64154,'Mac','x64','WoW',0xD39F3B03CD34DC2CDDB7173EA9DA008E),
(64154,'Mac','x64','WoWC',0x410B672FD200829F2B39E91CA637DDBD),
(64154,'Win','A64','WoW',0xBDE661AFFD07520A536913612098913A),
(64154,'Win','x64','WoW',0x205D71769E2A1C2C04516A5CE36B35C2),
(64154,'Win','x64','WoWC',0x38F784495ED0129FF391B27EC34548E0);

UPDATE `realmlist` SET `gamebuild`=64154 WHERE `gamebuild`=63796;

ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int unsigned NOT NULL DEFAULT '64154';




next week when new build comes don't launch bnet and don't update retail until trinity core supports the new build
when tc adds support to it copy the query and install the weekly wow update
you can keep up to date as to what are the latest game builds here: https://wago.tools/
Thanks for all that. I had downloaded the latest repack last night 63906Precompiled and editied the database including what you outlined above but it is still not working. I can log into the client and get to the realm selection screen but when I try to enter I get kicked back to the log in screen with a message that I have been disconnected.

However I don't think Arctium launcher is hooking in properly and I am still connecting to the blizzard server at some point. I see the pop up for the Blizzard update on the 4th November and I should not be seeing that. I have also confirmed in the connection logs that I am still connecting.

The portal in the WTF/Config.wtf is set to 127.0.0.1 but this is seemingly being ignored.

I have downloaded the latest Arctium Game Launcher 1.2.3.141 from their website. So it "should" be compatible. I think I have tried everything and I feel i am so close to getting it sorted but there is obviously a missing piece to this puzzle.
 
Thanks for all that. I had downloaded the latest repack last night 63906Precompiled and editied the database including what you outlined above but it is still not working. I can log into the client and get to the realm selection screen but when I try to enter I get kicked back to the log in screen with a message that I have been disconnected.

However I don't think Arctium launcher is hooking in properly and I am still connecting to the blizzard server at some point. I see the pop up for the Blizzard update on the 4th November and I should not be seeing that. I have also confirmed in the connection logs that I am still connecting.

The portal in the WTF/Config.wtf is set to 127.0.0.1 but this is seemingly being ignored.

I have downloaded the latest Arctium Game Launcher 1.2.3.141 from their website. So it "should" be compatible. I think I have tried everything and I feel i am so close to getting it sorted but there is obviously a missing piece to this puzzle.
Hello, again you getting kicked is likely a realmlist build and game build mistmatch , they need to match, but that should be the verion 64154
now did you check the build in the realmlist table does it say 64154, the problem is there are 2 parts in the sql query the first part inserts the encrypted keys for the build in build_info and the second changes the build number of the realmlist in realmlist. The thing is when you copy the query from tc it changes the realmlist build number from the previous to the present, but the repack I gave is a couple builds behinds and that part may not have worked, you can even change the build number in realmlist table manually and also very important after executing the query you restart bnetserver and worldserv
by that I mean the reamlist in the db may still be the old build, as the query is designed to overwrithe one build with another
 
Last edited:
you mention downloading the 63906 repack from last night well you got it from sicalicous the discord as mine is even older(it's a temporary solution untill the last build comes for 11.2.7 then I will make a proper backup and put all the parts together)
since you are updating 63906 to 64154, you keep that query, the one I told you yesterday updates from 63796 to 64154 skipping a couple of builds

DELETE FROM `build_info` WHERE `build` IN (64154);
INSERT INTO `build_info` (`build`,`majorVersion`,`minorVersion`,`bugfixVersion`,`hotfixVersion`) VALUES
(64154,11,2,5,NULL);

DELETE FROM `build_auth_key` WHERE `build`=64154 AND `platform`='Mac' AND `arch`='A64' AND `type`='WoW';
DELETE FROM `build_auth_key` WHERE `build`=64154 AND `platform`='Mac' AND `arch`='A64' AND `type`='WoWC';
DELETE FROM `build_auth_key` WHERE `build`=64154 AND `platform`='Mac' AND `arch`='x64' AND `type`='WoW';
DELETE FROM `build_auth_key` WHERE `build`=64154 AND `platform`='Mac' AND `arch`='x64' AND `type`='WoWC';
DELETE FROM `build_auth_key` WHERE `build`=64154 AND `platform`='Win' AND `arch`='A64' AND `type`='WoW';
DELETE FROM `build_auth_key` WHERE `build`=64154 AND `platform`='Win' AND `arch`='x64' AND `type`='WoW';
DELETE FROM `build_auth_key` WHERE `build`=64154 AND `platform`='Win' AND `arch`='x64' AND `type`='WoWC';
INSERT INTO `build_auth_key` (`build`,`platform`,`arch`,`type`,`key`) VALUES
(64154,'Mac','A64','WoW',0x2B47687B97FB51EFCC28274BF094EF7B),
(64154,'Mac','A64','WoWC',0x676F3B5CD92799B5CE6ECBFD42EBBC96),
(64154,'Mac','x64','WoW',0xD39F3B03CD34DC2CDDB7173EA9DA008E),
(64154,'Mac','x64','WoWC',0x410B672FD200829F2B39E91CA637DDBD),
(64154,'Win','A64','WoW',0xBDE661AFFD07520A536913612098913A),
(64154,'Win','x64','WoW',0x205D71769E2A1C2C04516A5CE36B35C2),
(64154,'Win','x64','WoWC',0x38F784495ED0129FF391B27EC34548E0);

UPDATE `realmlist` SET `gamebuild`=64154 WHERE `gamebuild`=63906;

ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int unsigned NOT NULL DEFAULT '64154';

restart bnetserver and worldserver if they are running
 

Attachments

  • 1762034618927.png
    1762034618927.png
    114.9 KB · Views: 4
you mention downloading the 63906 repack from last night well you got it from sicalicous the discord as mine is even older(it's a temporary solution untill the last build comes for 11.2.7 then I will make a proper backup and put all the parts together)
since you are updating 63906 to 64154, you keep that query, the one I told you yesterday updates from 63796 to 64154 skipping a couple of builds

DELETE FROM `build_info` WHERE `build` IN (64154);
INSERT INTO `build_info` (`build`,`majorVersion`,`minorVersion`,`bugfixVersion`,`hotfixVersion`) VALUES
(64154,11,2,5,NULL);

DELETE FROM `build_auth_key` WHERE `build`=64154 AND `platform`='Mac' AND `arch`='A64' AND `type`='WoW';
DELETE FROM `build_auth_key` WHERE `build`=64154 AND `platform`='Mac' AND `arch`='A64' AND `type`='WoWC';
DELETE FROM `build_auth_key` WHERE `build`=64154 AND `platform`='Mac' AND `arch`='x64' AND `type`='WoW';
DELETE FROM `build_auth_key` WHERE `build`=64154 AND `platform`='Mac' AND `arch`='x64' AND `type`='WoWC';
DELETE FROM `build_auth_key` WHERE `build`=64154 AND `platform`='Win' AND `arch`='A64' AND `type`='WoW';
DELETE FROM `build_auth_key` WHERE `build`=64154 AND `platform`='Win' AND `arch`='x64' AND `type`='WoW';
DELETE FROM `build_auth_key` WHERE `build`=64154 AND `platform`='Win' AND `arch`='x64' AND `type`='WoWC';
INSERT INTO `build_auth_key` (`build`,`platform`,`arch`,`type`,`key`) VALUES
(64154,'Mac','A64','WoW',0x2B47687B97FB51EFCC28274BF094EF7B),
(64154,'Mac','A64','WoWC',0x676F3B5CD92799B5CE6ECBFD42EBBC96),
(64154,'Mac','x64','WoW',0xD39F3B03CD34DC2CDDB7173EA9DA008E),
(64154,'Mac','x64','WoWC',0x410B672FD200829F2B39E91CA637DDBD),
(64154,'Win','A64','WoW',0xBDE661AFFD07520A536913612098913A),
(64154,'Win','x64','WoW',0x205D71769E2A1C2C04516A5CE36B35C2),
(64154,'Win','x64','WoWC',0x38F784495ED0129FF391B27EC34548E0);

UPDATE `realmlist` SET `gamebuild`=64154 WHERE `gamebuild`=63906;

ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int unsigned NOT NULL DEFAULT '64154';

restart bnetserver and worldserver if they are running
Thanks again for your help.

I think the issue I have is that the client is internally still trying to connect to blizzard servers. In the client connection log it looks like this:

11/1 23:35:06.855 Connection Initialize
11/1 23:35:26.255 Glue Start Login
11/1 23:35:26.255 BattleNet Attempt Logon
11/1 23:35:26.417 BattleNet Front Connected
11/1 23:35:26.484 BattleNet External Challenge
11/1 23:35:26.484 BattleNet Get Logon Form
11/1 23:35:26.534 BattleNet Logon Form
11/1 23:35:26.950 BattleNet Logon Complete
11/1 23:35:26.983 BattleNet Game Account Name
11/1 23:35:26.983 BattleNet Attempt Complete Login
11/1 23:35:27.017 BattleNet Realm List Ticket
11/1 23:35:27.050 BattleNet Sub Region List
11/1 23:35:27.084 BattleNet Last Played Char
11/1 23:35:27.117 BattleNet Realm List
11/1 23:35:30.517 BattleNet Join Realm
11/1 23:35:30.550 BattleNet Realm Join
11/1 23:35:30.550 Change Connection
11/1 23:35:30.550 Connect
11/1 23:35:30.567 Handle Connect
11/1 23:35:30.617 Handle Disconnect
11/1 23:35:30.617 Glue WoW Disconnect
11/1 23:35:30.617 BattleNet Defer Disconnect
11/1 23:35:30.617 BattleNet Front Disconnecting
11/1 23:35:30.800 BattleNet Front Disconnected
11/1 23:35:34.722 Connection Destroy

I'm no expert but that looks like the Arctium Game Launcher is not doing anything, even though it's terminal window indicates that it is.
 
Hello, you don't install anything it's ready to use
but first check bnetserver.conf and worldserver.conf
there's a setting calle game.build.versioncheck if it's set to 26365
View attachment 4830
SPPV2 execute them in this order
View attachment 4829

thorignir 2
there you also would need to check that setting in the configs
start mysql, bnetserver, worldserver


don't forget to change the portal (127.0.0.1) in firestorm's client config
Hello, thanks again for the answer. So i changed the portal (but its name FS735 and not config.wtf) ; game config is good.

However : When i start 1_Database+Web, a command window opens and there is theses lines just appearing and disappearing (in french so i translate it roughly) :

specified access way is not find
specified access way is not find
specified access way is not find
A subfolder or a Logs folder already exist
 
Back
Top