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: 5
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
 
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.
If the buid in realmlist table is correct(forgot the exact name could've been build) and the portal in config.wtf and you launch the arctium launcher. Now something that has happened which basically made me bump my head in a wall, One time the uploader of retail core forgot to change IP address, that caused me a lot of trouble and frustatrion(why doesn't work), check address and localaddress in realmlist table also nothing wrong to check the build since you are opening there and opening bnetserver.conf and checking loginrest.internaladdress and loginrest.externaladdress. Are they all 127.0.0.1?

Unable to connect or you have been disconected has 3 causes-wrong Ip in the portal in the config, wrong address in the server, realmlist and client build mismatch or the build in the reamlist table is correct but the keys to authenticate account login are not in build_info table

If the build in realmlist table and the addresses in realmlist table and bnetserver.conf are correct, and the portal in the config of the game is correct

support for the launcher
 
Last edited:
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
Hello, again not sure what could be wrong, launching them in order works for me, now could be some other mysql running in the background, sometimes it remains as a process in task manager when it should be closed/shut down,
folder read/write access and permissions,
something triggered the antivirus and it scanned it, maybe quarantened some files and corrupted it
Hope it helps as that error is very strange indeed and don't know what could be wrong(it works fine for me), I make some guesses based on problems I had in the past

here's the discord maybe screenshot it and ask there
 
Hello, again not sure what could be wrong, launching them in order works for me, now could be some other mysql running in the background, sometimes it remains as a process in task manager when it should be closed/shut down,
folder read/write access and permissions,
something triggered the antivirus and it scanned it, maybe quarantened some files and corrupted it
Hope it helps as that error is very strange indeed and don't know what could be wrong(it works fine for me), I make some guesses based on problems I had in the past

here's the discord maybe screenshot it and ask there
Thanks again. It always helps to kick around ideas because I can cross things off the list.
 
If the buid in realmlist table is correct(forgot the exact name could've been build) and the portal in config.wtf and you launch the arctium launcher. Now something that has happened which basically made me bump my head in a wall, One time the uploader of retail core forgot to change IP address, that caused me a lot of trouble and frustatrion(why doesn't work), check address and localaddress in realmlist table also nothing wrong to check the build since you are opening there and opening bnetserver.conf and checking loginrest.internaladdress and loginrest.externaladdress. Are they all 127.0.0.1?

Unable to connect or you have been disconected has 3 causes-wrong Ip in the portal in the config, wrong address in the server, realmlist and client build mismatch or the build in the reamlist table is correct but the keys to authenticate account login are not in build_info table

If the build in realmlist table and the addresses in realmlist table and bnetserver.conf are correct, and the portal in the config of the game is correct

support for the launcher

The addresses are all correct. Address and local address in the realmlist table are set to 127.0.0.1

Portal address in the Client config.wtf is also 127.0.0.1

Build numbers are correct.

There is obviously something I am missing because others have this working.

Can you confirm that those entries in the client connection log are the same as yours? It may give me a clue as to what is going wrong.

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
 
The addresses are all correct. Address and local address in the realmlist table are set to 127.0.0.1

Portal address in the Client config.wtf is also 127.0.0.1

Build numbers are correct.

There is obviously something I am missing because others have this working.

Can you confirm that those entries in the client connection log are the same as yours? It may give me a clue as to what is going wrong.

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
That's the strange part I don't know what is wrong with it, for me it works,
what about loginrest.internaladdress and loginrest.externaladdress in the bnetserver.conf in the repack?
They need to match the ones in the db, You verified the ones in realmlist are correct but didn't mention these two in bnetserver.conf

Maybe it could be as you say the arctium launcher, maybe download the latest and ask Fabian on arctium's discord
Arctium launcher it has some parameters, --path, binary, More on them on the readme
maybe you are correct and it's somethng related to the launcher

you ask sicalicous on draconic wow discord https://discord.gg/BrfZXqmm
since my knowledge gets exhausted
Apologies for not being able to help you , but as you said we can keep guessing and ruling out stuff

build ruled out but left as information to others
you mentioned downloading the 63906 one, my copy is 63796 and is older which means you got it from draconic wow by sicalicous directly
sicalicous copied the sql update from tc , it updates 63906 to 64154. You did that part

1762111275029.png

some people get confused on that part as the underlined is the overwriten build, if you skeep weeks and updates, you need to replace that one with the currect build of the realmlist to be replaced successfully, you didn't need to do it as that which you downloaded was 1 build behind

Now as a last resort, you can redownload my backup and redownload my wow.exe, the one compatible with the repack I backed up which is probably already behind sicalicous, put the wow.exe in _retail let it run in the background it will open when it downloads the initial files

My upload speed isn't good 5mbps :(, when the last build of TWW comes on the last patch, I will join together all the parts and backup the launcher and wow.exe hopefully when Fstorm finally upgrades to 11.2.7 I hope we can use their client and cdn
This I set up as a temporary guide and gave link to draconic wow, Now the problem is tww patch cycle new builds come and it takes time to update even sicalicous skips weeks, tc does updates weekly, the bad part is need to run sql query and pack and upload every week or just give users the sql to update the build, some are tech-savy others don't know how to change a portal setting, usually I write as if I'm explaining to 5 years old, apologies if you are familiar with this staff, an expert would understand something written for a 5 years old but the opposite isn't true

and there's the skraventure dude who downloaded sppv2 from me, Worked for me and I packed it and now this dude his database can't launch and has some errors in french and I honestly don't know what is wrong -can only make some generic guesses and hope it is indeed one of them

I usually put every repack on : D disk where I got access, download vcredist all versions and openssl, sometimes I search manually for the dll files especially older versions of openssl, but I don't pack and upload I repack which I didn't manage to log into, I had problems with wrong settings-port, address, sometimes had databases which I shut down but mysql remains as a process and next time I can't launch the repack and kill the process and launch again
That's how I've got the repacks to work for me, I joined the parts maps, db, dll files , fixed some settings, made an account a/a or bnetaccount a@a/a to test that it works and then uploaded it
what I write in the connection guide is how I managed to run it and connect successfully most of the time someone misunderstood, didn't do something or did something wrong or had an antivirus intervere and tell them to do it correctly and for the most part we manage it but sometimes someone comes and says he checked and did everything that I thought him and this is where I get lost

I had a wod repack I made account a@a/a someone told me he keeps making accounts and can't connect but managed to log into my account that I made, he can't login into an account of his own but can log into mine or I had simply forgotten how I did it and I don't know what is wrong, exhausted all options-make normal account, make bnetaccount, make both accounts and link them in the db(nothing worked) and he came with a clever solution make an account on another wod repack which has the same structure and dump the accounts into sql and then insert the info
the popular saying but it works on my pc yes but we're not giving your pc to the customer
 
Last edited:
Back
Top