[DiscordArchive] Let's say, for example, I wanted to change the name of the "Lazy Peon"s in the den of trials to "Laz
[DiscordArchive] Let's say, for example, I wanted to change the name of the "Lazy Peon"s in the den of trials to "Laz
Archived author: Bauf • Posted: 2025-09-24T23:15:25.418000+00:00
Original source
Whats the best reccommended method for dropping the database
Archived author: Mithria • Posted: 2025-09-24T23:17:57.359000+00:00
Original source
If ur using heidisql right click acore_world and pick drop. Otherwise `drop database acore_world;` would work
Archived author: Bauf • Posted: 2025-09-24T23:23:36.966000+00:00
Original source
Ya'll are the best. I can now get my dirty little modding hands all over this database.
Archived author: Hitalot • Posted: 2025-09-24T23:33:39.179000+00:00
Original source
Hey guys, kinda new to the business.
i have read the wiki and all but im still not sure. If i wanna host a local tbc server is azerothcore the right choice? for me it looks like its a wotlk only version
Archived author: Mithria • Posted: 2025-09-24T23:40:31.317000+00:00
Original source
azerothcore is wotlk only. You'd be best looking into cmangos-tbc i believe
Archived author: Hitalot • Posted: 2025-09-24T23:41:12.139000+00:00
Original source
all right thank you
Archived author: Exlex • Posted: 2025-09-25T00:45:06.168000+00:00
Original source
For curiosity's sake, does the custom/ sql scripts run every time the world server starts up?
Working out if I need to always pair an insert with a corresponding delete if exists
Archived author: Spargel • Posted: 2025-09-25T01:38:16.808000+00:00
Original source
It's good practice to use delete before insert, but it should only be run automatically again if the hash for the file has changed since the last time it was applied (like if you edit it).
Using `REPLACE INTO` should also be fine instead of separate `DELETE`+`INSERT`s.