[DiscordArchive] Is it possible to seperate moduels by realm? Basically I want to have a realm that has the individua
[DiscordArchive] Is it possible to seperate moduels by realm? Basically I want to have a realm that has the individua
Archived author: CommanderX • Posted: 2025-01-31T15:03:12.150000+00:00
Original source
Is it possible to seperate moduels by realm? Basically I want to have a realm that has the individual progression module on it, and another that doesn't. However, I think that would require another database for realm 2, but from what I can tell, realms share databases. Is this correct?
Archived author: Honey • Posted: 2025-01-31T15:04:44.271000+00:00
Original source
No, they only possibly share auth. You want an additional build directory with a separate world and character DB with different names.
Archived author: CommanderX • Posted: 2025-01-31T15:05:55.614000+00:00
Original source
Oh cool. So basically, since I'm doing it with the docker compose, I just need to create sperate services for everything, which will then in turn create those seperate parts, right?
Archived author: Ryan Turner • Posted: 2025-01-31T15:08:27.793000+00:00
Original source
If you want the users to use the same account.
You only need to run 1 auth (which also tells you what realms should exist and what ports).
You need 1 world and character per realm.
acore_auth
acore_character_1
acore_world_1
acore_character_2
acore_world_2
For each worldserver you have to change their respective database and directory information.
If you're using the same Data (DBCs, MAPs etc...) between both you can just use a commun directory.
But for the connection to each database, only auth (if shared) should be the same, rest needs to be their respective worldserver information
this is for classic way to do. Like honey, in my case i've no experience with docker
Archived author: Honey • Posted: 2025-01-31T15:08:32.199000+00:00
Original source
No advice from me regarding docker, sorry. Except maybe to not touch it with a stick
Archived author: Honey • Posted: 2025-01-31T15:09:37.494000+00:00
Original source
What Ryan said
Edit the worldserver.conf and realmlist table, that's about it.
Archived author: CommanderX • Posted: 2025-01-31T15:10:34.886000+00:00
Original source
I think I can translate that into the docker setup. Thanks for the information!
Archived author: NuptupTDOW • Posted: 2025-01-31T15:12:55.896000+00:00
Original source
Doing a fresh build of AC Core and during the build process, I had no errors until the very end and it threw these out. Anyone have any idea why?
```
19>C:\AzerothCore\azerothcore-wotlk\modules\mod-reforging\src\npc_reforger.cpp(322,1): error C1090: PDB API call failed, error code '23': (0x00000005)
19>C:\AzerothCore\azerothcore-wotlk\modules\mod-reset-raid-cooldowns\src\mod_reset_raid_cooldowns_handler.cpp(136,1): error C1090: PDB API call failed, error code '23': (0x00000005)
19>C:\AzerothCore\azerothcore-wotlk\modules\mod-reforging\src\mod_reforging_worldscript.cpp(41,1): error C1090: PDB API call failed, error code '23': (0x00000005)
19>C:\AzerothCore\azerothcore-wotlk\modules\mod-reset-raid-cooldowns\src\mod_reset_raid_cooldowns_scripts.cpp(135,1): error C1090: PDB API call failed, error code '23': (0x00000005)
19>C:\AzerothCore\azerothcore-wotlk\modules\mod-solo-lfg\src\Lfg_Solo.cpp(63,1): error C1090: PDB API call failed, error code '23': (0x000006BA)
19>C:\AzerothCore\azerothcore-wotlk\modules\mod-starter-guild\src\mod_starterguild.cpp(72,1): error C1090: PDB API call failed, error code '23': (0x000006BA)
19>C:\AzerothCore\azerothcore-wotlk\modules\mod-transmog\src\Transmogrification.cpp(1338,1): error C1090: PDB API call failed, error code '23': (0x000006BA)
19>C:\AzerothCore\azerothcore-wotlk\modules\mod-transmog\src\cs_transmog.cpp(319,1): error C1090: PDB API call failed, error code '23': (0x000006BA)
19>C:\AzerothCore\azerothcore-wotlk\modules\mod-transmog\src\transmog_scripts.cpp(1318,1): error C1090: PDB API call failed, error code '23': (0x000006BA)
```
![[Image: image.png?ex=690c1246&is=690ac0c6&hm=861...ed17ffef5&]](https://cdn.discordapp.com/attachments/1255602330431127753/1334904316225650709/image.png?ex=690c1246&is=690ac0c6&hm=861e0cac2f1ffad6a8317a65bec9832a5bc32927e475b13afabb012ed17ffef5&)
Archived author: NuptupTDOW • Posted: 2025-01-31T15:13:10.348000+00:00
Original source
![[Image: image.png?ex=690c1246&is=690ac0c6&hm=861...ed17ffef5&]](https://cdn.discordapp.com/attachments/1255602330431127753/1334904316225650709/image.png?ex=690c1246&is=690ac0c6&hm=861e0cac2f1ffad6a8317a65bec9832a5bc32927e475b13afabb012ed17ffef5&)
Archived author: Ryan Turner • Posted: 2025-01-31T15:13:36.063000+00:00
Original source
That's not a fresh AC build.