This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- a/src/server/game/Server/Protocol/Handlers/ChatHandler.cpp 2013-03-08 20:08:04.000000000 +0100 | |
| +++ b/src/server/game/Server/Protocol/Handlers/ChatHandler.cpp 2013-03-10 19:24:11.966856051 +0100 | |
| // Disabled addon channel? | |
| if(!sWorld->getBoolConfig(CONFIG_ADDON_CHANNEL)) | |
| return; | |
| } | |
| // LANG_ADDON should not be changed nor be affected by flood control | |
| else | |
| { | |
| +//Custom - LANG_UNIVERSAL in Mountshop. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| DELETE FROM creature_template WHERE entry = '900550'; | |
| INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, Health_mod, Mana_mod, Armor_mod, faction_A, faction_H, npcflag, speed_walk, speed_run, scale, rank, dmg_multiplier, unit_class, unit_flags, type, type_flags, InhabitType, RegenHealth, flags_extra, AiName) VALUES | |
| ('900550', '14992', "Taxi", "OverWoW", 'Directions', '50000', 80, 80, 4.56, 1.56, 1.56, 35, 35, 3, 1, 1.14286, 1.25, 1, 1, 1, 2, 7, 138936390, 3, 1, 2, 'SmartAI'); | |
| DELETE FROM gossip_menu WHERE entry>'50000'-1 AND entry<'50000'+11; | |
| DELETE FROM npc_text WHERE ID>'300000'-1 AND ID<'300000'+5; | |
| INSERT INTO gossip_menu (entry, text_id) VALUES | |
| ('50000'+4, '300000'+3), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff -r ecc0320bdad3 src/server/scripts/Commands/cs_gm.cpp | |
| --- a/src/server/scripts/Commands/cs_gm.cpp Sat Mar 02 19:50:35 2013 +0100 | |
| +++ b/src/server/scripts/Commands/cs_gm.cpp Sun Mar 03 09:36:17 2013 +0100 | |
| @@ -178,10 +178,14 @@ | |
| return true; | |
| } | |
| + const uint32 VISUAL_AURA = 37800; | |
| std::string argstr = (char*)args; | |
| + Player* player = handler->GetSession()->GetPlayer(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $host = "localhost"; // Host de Mysql | |
| $user = "root"; // User de Mysql | |
| $pass = "password"; // Pass de Mysql | |
| $db = "world"; // Base de datos | |
| $locale="locales_item"; | |
| $tabla="item_template"; | |
| $conn = mysql_connect ($host,$user,$pass) or die ("Error".mysql_error()); | |
| mysql_select_db ($db,$conn) or die ("Error".mysql_error()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $host = "localhost"; // Host de Mysql | |
| $user = "root"; // User de Mysql | |
| $pass = "password"; // Pass de Mysql | |
| $db = "world"; // Base de datos | |
| $locale="locales_creature"; | |
| $tabla="creature_template"; | |
| $conn = mysql_connect ($host,$user,$pass) or die ("Error".mysql_error()); | |
| mysql_select_db ($db,$conn) or die ("Error".mysql_error()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- a/src/server/game/Entities/Player/Player.cpp 2013-03-08 20:30:35.000000000 +0100 | |
| +++b/src/server/game/Entities/Player/Player.cpp 2013-03-11 15:40:07.000000000 +0100 | |
| @@ -16984,6 +16996,8 @@ | |
| _LoadTalents(holder->GetPreparedResult(PLAYER_LOGIN_QUERY_LOADTALENTS)); | |
| _LoadSpells(holder->GetPreparedResult(PLAYER_LOGIN_QUERY_LOADSPELLS)); | |
| + | |
| + _LoadMounts(holder->GetPreparedResult(PLAYER_LOGIN_QUERY_LOADSMOUNT)); | |
| _LoadGlyphs(holder->GetPreparedResult(PLAYER_LOGIN_QUERY_LOADGLYPHS)); |
NewerOlder