Jump to content

Splash

Members
  • Posts

    6
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

Splash's Achievements

Newbie

Newbie (1/3)

0

Reputation

  1. Apply this patch and recompile: http://pastebin.org/420751 This should solve the problem
  2. With this modification you have the possibility to add a description to the chars showed in ".gm ingame". Its possible to extend this modification so that this additional information is showed in other commands like ".player info", I will do this if there is a demand for this mod. Note: Don't forget the SQL Update. Download: http://rapidshare.com/files/387695477/accountbuisness.txt SQL Code for adding new column at account table: ALTER TABLE account ADD business varchar(255) NOT NULL; Best regards Splash
  3. Because it should be active_realm_id instead of realm. The following should fix it. diff --git a/src/mangosd/CliRunnable.cpp b/src/mangosd/CliRunnable.cpp index 1f11037..549d578 100644 --- a/src/mangosd/CliRunnable.cpp +++ b/src/mangosd/CliRunnable.cpp @@ -483,7 +483,7 @@ bool ChatHandler::HandleAccountOnlineListCommand(const char* args) ///- Get the list of accounts ID logged to the realm // 0 1 2 3 4 - QueryResult *result = loginDatabase.PQuery("SELECT id, username, last_ip, gmlevel, expansion FROM account WHERE realm = %u", realmID); + QueryResult *result = loginDatabase.PQuery("SELECT id, username, last_ip, gmlevel, expansion FROM account WHERE active_realm_id = %u", realmID); return ShowAccountListHelper(result,&limit); }
  4. Apply this to make compile work. It might be not the best way to fix the problem but it works. diff --git a/src/game/SpellMgr.h b/src/game/SpellMgr.h index 29b74ec..be1241b 100644 --- a/src/game/SpellMgr.h +++ b/src/game/SpellMgr.h @@ -26,6 +26,7 @@ #include "SpellAuraDefines.h" #include "DBCStructure.h" #include "DBCStores.h" +#include "Unit.h" #include "Database/SQLStorage.h" #include "Utilities/UnorderedMap.h"
  5. Crash is related to changes in rev 9186/9187. Appears on Debian Etch ,too.
  6. So it looks like that greater Changes in Mount System are required to make the rider on his mammoth to a vehicle for other players.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy Terms of Use