[DiscordArchive] Hey there, I'm brand new to this (only did front end JS before this) but I'm learning and I have som
[DiscordArchive] Hey there, I'm brand new to this (only did front end JS before this) but I'm learning and I have som
Archived author: Zimo • Posted: 2023-05-11T23:09:59.184000+00:00
Original source
Hey there, I'm brand new to this (only did front end JS before this) but I'm learning and I have some questions.
Can someone please elaborate a little on what does `./acore.sh docker client-data` actually does?
Where is this `client-data` actually generated/downloaded from?
Does this means there is an official, specific client I should use instead of whatever I find on the internet?
Archived author: Visk • Posted: 2023-05-11T23:13:34.866000+00:00
Original source
I believe it's referring to this - https://github.com/wowgaming/client-data/releases/
[Embed: Releases · wowgaming/client-data]
Dbc, Map and some MPQ to use in your editors/viewer tools (EN-US) - wowgaming/client-data
https://github.com/wowgaming/client-data/releases/
Archived author: Revision • Posted: 2023-05-11T23:22:43.267000+00:00
Original source
That one
Archived author: Revision • Posted: 2023-05-11T23:23:25.241000+00:00
Original source
It's not at all related to the client, it's just already extracted client data files that you can use instead of having to extract them yourself. There is no unofficial 3.3.5 client, for the record.
Archived author: Revision • Posted: 2023-05-11T23:23:40.403000+00:00
Original source
At this rate there never will be either
Archived author: Zimo • Posted: 2023-05-11T23:26:25.427000+00:00
Original source
Thank you. So I have two follow up questions:
1. If I make a change to the world, say add a custom race, I should make the changes in both the client and the server, replacing these `client-data` files and making an MPQ file for the client (No idea how to do that yet, but I'm sure I'll find out). Is that correct?
2. I'm getting this error from an addon (using docker on windows):
```
Updating World database...
>> World database is up-to-date! Containing 35 new and 4024 archived updates.
Loading World Information...
> RealmID: 1
> Version DB world: ACDB 335.10-dev
Will clear `logs` table of entries older than 1209600 seconds every 10 minutes.
> Config: Bad value defined for name 'Death.SicknessLevel', going to use '11' instead
Using DataDir /azerothcore/env/dist/data/
WORLD: VMap support included. LineOfSight:true, getHeight:true, indoorCheck:true PetLOS:true
Loading transmog appearance collection cache....
[1146] Table 'acore_characters.custom_unlocked_appearances' doesn't exist
Your database structure is not up to date. Please make sure you've executed all queries in the sql/updates folders.
```
Am I missing something? The git page mentions I have to make an SQL edit, but the adding modules section did not mention it so I assumed the DB edits were automated.
Archived author: Revision • Posted: 2023-05-11T23:26:46.741000+00:00
Original source
Yes, both the server and client needs to know about those changes.
Archived author: Revision • Posted: 2023-05-11T23:27:15.199000+00:00
Original source
I assume you're talking about a module and it's because the SQL file included with that module hasn't been executed
Archived author: Revision • Posted: 2023-05-11T23:27:36.508000+00:00
Original source
Whichever module has `custom_unlocked_appearances`, that one
Archived author: Zimo • Posted: 2023-05-11T23:27:51.903000+00:00
Original source
It's the Transmog from the AzerothCore repo