Jump to content
TrinityCore

Elckerlijc

Members
  • Posts

    20
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Elckerlijc's Achievements

Newbie

Newbie (1/14)

2

Reputation

  1. To clarify things, you are using linux and you follow linux guide right ? If so, you should run executables directly through your terminal and not through wine. Can you post a screenshot of your TrinityCore bin folder ?
  2. Hi, If you're using GNU/Linux, why would you use windows exe ? You can build TrinityCore for your platform
  3. Hello, - If your client is 6.2.3:20779, you can't connect to TC server yet. You'll need to wait for new TC upgrade. - To connect to your server you need to edit config.WTF to SET portal "ip of your server" and patch your WoW binary with the connection_patcher - Login to a live account (was needed) to download bnet modules before patching the binary (the patcher patchs both binary and modules). Afaik, on Win/Linux it's not needed anymore because the patcher will download bnet modules automatically. On OS X, I still need to connect to a live account before running the patcher or I won't be able to connect to my server. Oh and another bug on OS X, you need to patch everytime you want to connect to the game.
  4. Patched WoW.exe isn't enough. You need to re-launch the connection_patcher to download/patch bnet modules. Keep in mind that connection_patcher patch both WoW binary & BNet modules.
  5. Hello, On which platform are you? On GNU/Linux, you'll need GCC (of course), CMake, OpenSSL, Boost (1.59 for example), mysql server 5.6.x and ZeroMQ. On Windows, I don't know well but as far as I know, you'll need Visual Studio Community (2013?), CMake, OpenSSL binaries, boost binaries, mysql server and ZeroMQ. And wiki works at https://www.trinitycore.info
  6. Hi. Each command is listed with syntax in the "command" table of the "world" database. Try to execute "SELECT * FROM command;" without quotes on world database. You can also see commands in source code at https://github.com/TrinityCore/TrinityCore/blob/6.x/src/server/scripts/Commands/
  7. For AND ONLY FOR GNU/Linux users : To get connection_patcher (linux version obviously...) working, you need to change bnet modules default path in the connection patcher source code. On Linux, bnet modules are located in /home/larry/.wine/drive_c/users/Public/Application Data/Blizzard Entertainment/Battle.net/Cache/ edit tools/connection_patcher/Program.cpp case Constants::BinaryTypes::Pe32: std::cout << "Win32 client...\n"; boost::algorithm::replace_all(renamed_binary_path, ".exe", "_Patched.exe"); do_patches<Patches::Windows::x86, Patterns::Windows::x86> (&patcher, renamed_binary_path, patchVersionPath, wowBuild); do_module<Patches::Windows::x86, Patterns::Windows::x86> ( "8f52906a2c85b416a595702251570f96d3522f39237603115f2f1ab24962043c.auth" , std::wstring(L"/home/larry/.wine/drive_c/users/Public/Application Data/Blizzard Entertainment/Battle.net/Cache/") ); break; case Constants::BinaryTypes::Pe64: std::cout << "Win64 client...\n"; boost::algorithm::replace_all(renamed_binary_path, ".exe", "_Patched.exe"); do_patches<Patches::Windows::x64, Patterns::Windows::x64> (&patcher, renamed_binary_path, patchVersionPath, wowBuild); do_module<Patches::Windows::x64, Patterns::Windows::x64> ( "0a3afee2cade3a0e8b458c4b4660104cac7fc50e2ca9bef0d708942e77f15c1d.auth" , std::wstring(L"/home/larry/.wine/drive_c/users/Public/Application Data/Blizzard Entertainment/Battle.net/Cache/") ); break;replace larry with your session username.
  8. Hi first of all, which commit version of the core are you using? Install git properly not to have "rev. unknown" in your logserver... dbc were updated to 6.2.0 20216 recently.
  9. E:\Trinity\src\server\game\DataStores\DBCStores.cpp:332 in LoadGameTable ASSERTION FAILED: found Game table BarberShopCostBase definition not found in GameTables.dbc is an error i had before commit dea6c0b122c8f4b97cb7b3833b41d9bef5c0d911 Now afaik, it's fixed. Maybe you should try to update core/tools to last commit and re-extract dbc with updated tools
  10. You can't downgrade your client. You can grab a 6.1.2 executable somewhere and play with it (thanks to blizzard streaming system) but you won't be able to extract dbc/maps/vmaps because your client will be incomplete. 6.2.0 20216 works with last commit. It's not fully working but it works. Check github
  11. Wondering... [...] (Win32, Release) [...] You built the core for 32 bits so -> are libeay32.dll & ssleay32.dll from 32bits OpenSSL? EDIT: for OpenSSL 1.0.2c 32bits should be both 1,231 KB & 289KB. For 64 bits 2,028KB & 371KB
  12. Hi, First of all, make sure that authserver.conf & worldserver.conf are in the same directory than authserver.exe & worldserver.exe. Look at the file extension: it should be .conf and not .conf.dist (rename them). Are dbc, maps, vmaps folders in the same directory than authserver.exe & worldserver.exe ?
×
×
  • Create New...