Jump to content
TrinityCore

Leaderboard

Popular Content

Showing content with the highest reputation on 07/04/16 in all areas

  1. All of hotfix database used by 6.x is filled from data from one opcode - SMSG_DB_REPLY (atm WPP doesn't handle filling all hotfix tables we use)
    1 point
  2. Another new purple, Snapper https://community.trinitycore.org/profile/29323-snapper/
    1 point
  3. I got the @CGUID thing to work. This is a Variable, its need to be set at the beginning. Look in your Database for the highest guid to set this Variable. For example your highest guid is 5999999 you set "@CGUID" to 6000000... At the top of the SQL file the variable need to be set for example like this: SET @CGUID := 6000000; With this line the other lines will be calculated automatically: @CGUID+1 = 6000001 @CGUID+2 = 6000002 @CGUID+3 = 6000003 [...] But there is a Problem/Bug The apostrophes need to be removed in each line: Change every line from this: ('@CGUID+0', 88999, 1116 ... ('@CGUID+1', 88999, 1116 ... ('@CGUID+2', 88999, 1116 ... To this (no apostrophes around variable): (@CGUID+0, 88999, 1116 ... (@CGUID+1, 88999, 1116 ... (@CGUID+2, 88999, 1116 ... My Fixed Test-SQL file in attachments (Some Spawns in south Gorgrond, see my last post) - Freddy G. 2016_06_12_13_29_06_21742_2016-06-12_12-57-25_176A7C80.pkt.sql
    1 point
  4. You really do not want 5.7 due to many security issues For starts there is a backdoor right into your sql server that anyone with any knowledge of it can exploit which is not just limited to your sql server but actual access to all data one of the newer things is SSL issues that allows intelligence agencies into your system. It seems they plug one hole and open an other with the patch to plug the previous issue Then we go to the performance ... we wont mention all the issues there Please dont rush to move your core over to 5.7 you are asking for big issues because 5.7 is a mess and a lot of people dont even realize it I miss the orig MySQL pre oracle they totally fubared the new release and continue to do so with each patch -.-
    -1 points
×
×
  • Create New...