Jump to content
TrinityCore

Shauren

Developers
  • Posts

    470
  • Joined

  • Last visited

  • Days Won

    84

Everything posted by Shauren

  1. Unlike CMaNGOS, we don't store completed and turned in quests in character_queststatus table but move them to character_queststatus_rewarded
  2. --- Canned message start --- It appears the issue in the original post was solved, so this thread shall be closed. Should you encounter any other difficulties, please open a new thread. --- Canned message end ---
  3. It would certainly help you to stop trying to use tools designed for legion client on wotlk client. Build extractors from 3.3.5 branch, not master
  4. The only fucked up thing is your configuration/installation 7.2.5 works exactly the same as 7.2.0 did (assuming you updated everything properly)
  5. If this was a regular linux I would just tell you to run make install step with sudo because you are trying to put files into a system dir
  6. Yes, master branch auth database IS structurally backwards compatible with 3.3.5 master branch has additional tables not present in 3.3.5 (all of bnet) and columns (Region/Battlegroup in realmlist table)
  7. They are not compatible in the way that you can run one and connect from both clients but they can share the same database (even if you run them both at the same time - but you need to use the database structure from master, there are more fields in tables)
  8. Do git checkout 0b0d4c4011b1be37590104dae6a5b7a6ae378eef to go back to last supported 7.1.5 version
  9. Shauren

    Build

    I liked it more when they also had a history of cdn configs for past builds
  10. authservers are compatible (up to wod, old auth code removed from client) if you just add the neccessary build info https://github.com/TrinityCore/TrinityCore/blob/3.3.5/src/server/authserver/Authentication/AuthCodes.cpp
  11. report libssl-dev version (the package used for compile), not openssl version (binary openssl tools) your error message indicates that libssl-dev version is 1.1.0
  12. Use absolute path for DataDir config, not relative (this standard linux path behavior, not TC specific)
  13. I don't know what core you are using but its not TC, our hotfix database item_sparse table does not have any fields with the names like on your screenshot
  14. yes (isnt that guide from ancient times - from before cmake on windows?)
  15. When using visual studio please DONT use Release build ever, use RelWithDebInfo, the difference is tiny but it is actually possible to debug crashes
  16. but you CAN put in the string in realmlist, the catch is that the machine that runs your authserver must be able to resolve that address to ip (you cant send the string to client)
  17. download 1.0.2k then? any 1.0.x version works (1.1.x does not)
  18. gcc is SLOW, it might produce slightly better optimized binaries but i wouldnt use it for any kind of dev builds, you should switch to clang at least
  19. You probably should fill hotfix_data anyway
  20. You can override existing entries if you fill hotfix_data too
  21. Whenever you see uint32 near the end of structure its not uint32, its something called varint and its size will be determined by the field table block in header (https://github.com/TrinityCore/TrinityCore/blob/master/src/server/shared/DataStores/DB2StorageLoader.cpp#L197)
  22. They are not aligned to 4 bytes, they are aligned to RecordSize from db2 header
×
×
  • Create New...