Архив - только для чтения | |
Модератор форума: andycrowz |
Форум Корзина форума Корзина Project Jorda Rev 11 Trinity Core Win 32 (СTDB-YTDB 8386) (Цлк Фулл Скриптовка (ИК ИЧ ) Win(x32)+ Фан сервер Linux) |
Project Jorda Rev 11 Trinity Core Win 32 (СTDB-YTDB 8386) |
Сообщение # 272 написано 15.06.2010 в 09:49
|
jorda521,
хелп не понимаю у меня вроде нету крашей не ошибок, в логах последние строки о количестве онлайна, но на утро Trinitycore.exe вылетает=(( и так уже раз 5 было больше суток не держится. Что это может быть???? это что то у тебя со сборкой или это уже у мя какие то проблемы?
Сообщение # 278 написано 15.06.2010 в 13:42
|
Quote (jorda521) даже не тести у миня на них платное ядро стоит (и свои скрипты токо добавил) они на высоте были и будут наше? платное? я чё то пропустил? хотели начать продажи к выходным.
Win Rate DOTA2 (dotabuff)
За все Время - NMM 49.33% / RMM - 52.78% Последние 6 месяцев - NMM 52.63% / RMM - 58.33% В этом месяце - NMM 55.77% / RMM - 72.22%
Сообщение # 280 написано 15.06.2010 в 14:10
|
Code #include "ScriptedPch.h" #include "icecrown_citadel.h" #define GOSSIP_START_EVENT "В бой дедуля!" Так лечше. Добавлено (15.06.2010, 14:58)
Сообщение # 282 написано 15.06.2010 в 14:58
|
Quote (magnus-1) jorda521, хелп не понимаю у меня вроде нету крашей не ошибок, в логах последние строки о количестве онлайна, но на утро Trinitycore.exe вылетает=(( и так уже раз 5 было больше суток не держится. Что это может быть???? это что то у тебя со сборкой или это уже у мя какие то проблемы? да да да,тоже самое =/ Я знаю о людях больше, чем они думают, что я знаю о них..© --------------------------------------------------------- Поиск информации, данных, пробив авто, людей, телефонов по РФ. Дорого не зная ни сна ни отдыха при солнечном свете мы делаем деньги из воздуха чтоб пустить их на ветер
Сообщение # 284 написано 15.06.2010 в 15:35
|
Джорда для тебя!!!Загляни прежде чем делать rev 11 очень прошу!!!
[cut] jorda521, Вот ещё насчёт Восстановление хп\маны и сброс кд при начале дуэля Code diff -r 8f824d68fad6 src/game/DuelHandler.cpp --- a/src/game/DuelHandler.cpp Fri Dec 04 04:13:28 2009 +0200 +++ b/src/game/DuelHandler.cpp Sun Dec 06 20:54:56 2009 +0300 @@ -51,6 +51,15 @@ pl->duel->startTimer = now; plTarget->duel->startTimer = now; + // reset cooldowns and HP/Mana + pl->SetHealth(pl->GetMaxHealth()); + plTarget->SetHealth(plTarget->GetMaxHealth()); + + if (pl->getPowerType() == POWER_MANA) pl->SetPower(POWER_MANA, pl->GetMaxPower(POWER_MANA)); + if (plTarget->getPowerType() == POWER_MANA) plTarget->SetPower(POWER_MANA, plTarget->GetMaxPower(POWER_MANA)); + //only for cooldowns which < 15 min + if (!pl->GetMap()->IsDungeon()) { pl->RemoveArenaSpellCooldowns(); plTarget->RemoveArenaSpellCooldowns(); } + pl->SendDuelCountdown(3000); plTarget->SendDuelCountdown(3000); } и это тоже бы не помешало Code === (+8,-1) src/game/SpellHandler.cpp === @@ -51,6 +51,13 @@ recvPacket >> bagIndex >> slot >> cast_count >> spellid >> item_guid >> glyphIndex >> unk_flags; + // reject fake data + if (glyphIndex >= MAX_GLYPH_SLOT_INDEX) + { + pUser->SendEquipError(EQUIP_ERR_ITEM_NOT_FOUND, NULL, NULL ); + return; + } + Item *pItem = pUser->GetUseableItemByPos(bagIndex, slot); if(!pItem) { Патч на маунты на прокат Code 1. diff --git a/src/game/ScriptLoader.cpp b/src/game/ScriptLoader.cpp 2. --- a/src/game/ScriptLoader.cpp 3. +++ b/src/game/ScriptLoader.cpp 4. @@ -22,6 +22,7 @@ 5. 6. #ifdef DO_SCRIPTS 7. //custom 8. +void AddSC_npc_mount(); 9. 10. //examples 11. void AddSC_example_creature(); 12. @@ -518,6 +519,7 @@ 13. #ifdef DO_SCRIPTS 14. 15. //custom 16. + AddSC_npc_mount(); 17. 18. //examples 19. AddSC_example_creature(); 20. diff --git a/src/scripts/CMakeLists.txt b/src/scripts/CMakeLists.txt 21. --- a/src/scripts/CMakeLists.txt 22. +++ b/src/scripts/CMakeLists.txt 23. @@ -17,6 +17,7 @@ 24. ../game/ScriptedSimpleAI.cpp 25. ../game/ScriptedSimpleAI.h 26. custom/on_events.cpp 27. + custom/npc_mount.cpp 28. eastern_kingdoms/alterac_valley/alterac_valley.cpp 29. eastern_kingdoms/alterac_valley/boss_balinda.cpp 30. eastern_kingdoms/alterac_valley/boss_drekthar.cpp 31. diff --git a/win/VC90/game.vcproj b/win/VC90/game.vcproj 32. --- a/win/VC90/game.vcproj 33. +++ b/win/VC90/game.vcproj 34. @@ -1685,6 +1685,10 @@ 35. RelativePath="..\..\src\scripts\custom\on_events.cpp" 36. > 3 7. < /File> 38. + <File 39. + RelativePath="..\..\src\script s\cu stom \npc _mou nt.c pp" 4 0. + > 41. + </File> 42. </Filter> 43. <Filter 44. Name="World" 45. d iff --git a/src/scripts/custom/npc_mount.cpp b/src/scripts/custom/npc_mount.cpp 46. new file mode 100644 47. --- /dev/null 48. +++ b/src/scripts/custom/npc_mount.cpp 49. @@ -0,0 +1,74 @@ 50. +/* WORLD 51. +DELETE FROM `creature_template` WHERE `entry` = '470101'; 52. + 53. +REPLACE INTO `creature_template` (`entry`, `difficulty_entry_1`, `KillCredit1`, `KillCredit2`, `modelid1`, `modelid2`, `modelid3`, `modelid4`, `name`, `subname`, `IconName`, `minlevel`, `maxlevel`, `armor_mod`, `faction_A`, `faction_H`, `npcflag`, `rank`, `mindmg`, `maxdmg`, `dmgschool`, `attackpower`, `dmg_multiplier`, `baseattacktime`, `rangeattacktime`, `unit_class`, `unit_flags`, `dynamicflags`, `family`, `trainer_type`, `trainer_spell`, `trainer_class`, `trainer_race`, `minrangedmg`, `maxrangedmg`, `rangedattackpower`, `type`, `type_flags`, `lootid`, `pickpocketloot`, `skinloot`, `resistance1`, `resistance2`, `resistance3`, `resistance4`, `resistance5`, `resistance6`, `spell1`, `spell2`, `spell3`, `spell4`, `PetSpellDataId`, `mingold`, `maxgold`, `AIName`, `MovementType`, `InhabitType`, `health_mod`, `mana_mod`, `RacialLeader`, `questItem1`, `questItem2`, `questItem3`, `questItem4`, `questItem5`, `questItem6`, `movementId`, `RegenHealth`, `equipment_id`, `mechanic_immune_mask`, `flags_extra`, `ScriptName`) VALUES 54. +(470101, 0, 0, 0, 15609, 0, 15609, 0, 'Mounts', '', NULL, 82, 82, 1, 35, 35, 1, 1, 1000, 1500, 0, 1000, 1, 1500, 1500, 1, 2, 0, 0, 0, 0, 0, 0, 30, 45, 100, 7, 8, 0, 0, 0, 100, 100, 100, 100, 100, 100, 0, 0, 0, 0, 0, 1500, 1700, '', 0, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 'npc_mount'); 55. + 56. +DELETE FROM `locales_creature` WHERE `entry` = '470101'; 57. + 58. +REPLACE INTO `locales_creature` (`entry`, `name_loc8`, `subname_loc8`) VALUES 59. +(470101, 'Прокат маунтов', ''); 60. +*/ 61. +#include "ScriptedPch.h" 62. + 63. +#define MSG_GOSSIP_TEXT_1 "Я бы хотел взять на прокат быстрое средство передвижения за 10 медных монет" 64. +#define MSG_GOSSIP_TEXT_2 "Я бы хотел взять на прокат очень быстрое средство передвижения за 1 серебряную" 65. +#define MSG_NOT_MONEY "У вас не достаточно денег..." 66. +#define MSG_MOUTED "Вы уже на средстве передвижения." 67. +#define COST_MONEY_1 10 68. +#define COST_MONEY_2 100 69. +#define MOUNT_SPELL_ID_1 43899 70. +#define MOUNT_SPELL_ID_2 43900 71. + 72. +bool GossipHello_npc_mount(Player *player, Creature *_creature) 73. +{ 74. + player->ADD_GOSSIP_ITEM(0, MSG_GOSSIP_TEXT_1, GOSSIP_SENDER_MAIN, 1001); 75. + player->ADD_GOSSIP_ITEM(0, MSG_GOSSIP_TEXT_2, GOSSIP_SENDER_MAIN, 1002); 76. + player->SEND_GOSSIP_MENU(DEFAULT_GOSSIP_MESSAGE, _creature->GetGUID()); 77. + return true; 78. +} 79. + 80. +bool GossipSelect_npc_mount(Player *player, Creature *_creature, uint32 sender, uint32 action ) 81. +{ 82. + if (sender != GOSSIP_SENDER_MAIN) 83. + return false; 84. + 85. + if (player->IsMounted()){ 86. + _creature->MonsterWhisper(MSG_MOUTED, player->GetGUID()); 87. + return false; 88. + } 89. + 90. + switch (action) 91. + { 92. + case 1001: 93. + if (player->GetMoney() < COST_MONEY_1) 94. + { 95. + _creature->MonsterWhisp er(M SG_N OT_M ONEY , player->GetGUID()); 96. + }else{ 97. + player->AddAura(MOUNT_SPELL_ID_ 1, p la yer) ; 98. + player->ModifyMoney(-COST_MONEY_1); 99. + } 100. + break; 101. + case 1002: 102. + if (player->GetMoney() < COST_MONEY_2) 103. + { 104. + _creature->MonsterWhisp er(M SG_N OT_M ONEY , player->GetGUID()); 105. + }else{ 106. + player->AddAura(MOUNT_SPELL_ID_ 2, p la yer) ; 107. + player->ModifyMoney(-COST_MONEY_2); 108. + } 109. + break; 110. + } 111. + return true; 112. +} 113. + 114. + 115. +void AddSC_npc_mount() 116. +{ 117. + Script *newscript; 118. + newscript = new Script; 119. + newscript->Name = "npc_mount"; 120. + newscript->pGossipHello = &GossipHello_npc_mount; 121. + newscript->pGossipSelect = &GossipSelect_npc_mount; 122. + newscript->RegisterSelf(); 123. +} |
Code 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 50864 at field id:6 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 69848 at field id:6 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 69849 at field id:6 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 69850 at field id:6 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 66532 at field id:241 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 66963 at field id:241 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 66964 at field id:241 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 66965 at field id:241 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 66528 at field id:281 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67029 at field id:281 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67030 at field id:281 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67031 at field id:281 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 66519 at field id:301 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67042 at field id:301 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67043 at field id:301 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67044 at field id:301 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 66495 at field id:302 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67045 at field id:302 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67046 at field id:302 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67047 at field id:302 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 66237 at field id:304 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67049 at field id:304 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67050 at field id:304 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67051 at field id:304 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 66242 at field id:321 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67059 at field id:321 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67060 at field id:321 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67061 at field id:321 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 66252 at field id:341 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67067 at field id:341 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67068 at field id:341 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67069 at field id:341 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 66877 at field id:342 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67070 at field id:342 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67071 at field id:342 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67072 at field id:342 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 66359 at field id:343 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67073 at field id:343 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67074 at field id:343 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67075 at field id:343 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 66336 at field id:344 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67076 at field id:344 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67077 at field id:344 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67078 at field id:344 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 62844 at field id:345 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67088 at field id:345 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67089 at field id:345 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67090 at field id:345 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 66378 at field id:346 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67097 at field id:346 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67098 at field id:346 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67099 at field id:346 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 66316 at field id:347 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67100 at field id:347 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67101 at field id:347 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67102 at field id:347 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 66263 at field id:348 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67103 at field id:348 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67104 at field id:348 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67105 at field id:348 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 66228 at field id:349 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67106 at field id:349 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67107 at field id:349 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67108 at field id:349 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 62382 at field id:361 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67114 at field id:361 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 66077 at field id:381 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67152 at field id:381 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67153 at field id:381 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67154 at field id:381 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 66059 at field id:382 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67155 at field id:382 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67156 at field id:382 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67157 at field id:382 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 66140 at field id:383 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67158 at field id:383 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67159 at field id:383 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67160 at field id:383 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 66141 at field id:384 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67161 at field id:384 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67162 at field id:384 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67163 at field id:384 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 66078 at field id:385 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67165 at field id:385 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67166 at field id:385 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67167 at field id:385 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 66107 at field id:386 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67168 at field id:386 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67169 at field id:386 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67170 at field id:386 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 65808 at field id:387 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67172 at field id:387 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67173 at field id:387 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67174 at field id:387 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 65684 at field id:388 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67176 at field id:388 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67177 at field id:388 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 67178 at field id:388 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:41 ERROR: spelldifficulty_dbc: spell 65827 at field id:389 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67179 at field id:389 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67180 at field id:389 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67181 at field id:389 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 66058 at field id:390 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67182 at field id:390 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67183 at field id:390 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67184 at field id:390 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 66048 at field id:401 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67203 at field id:401 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67204 at field id:401 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67205 at field id:401 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 66046 at field id:402 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67206 at field id:402 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67207 at field id:402 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67208 at field id:402 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 65724 at field id:403 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67213 at field id:403 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67214 at field id:403 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67215 at field id:403 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 65748 at field id:404 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67216 at field id:404 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67217 at field id:404 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67218 at field id:404 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 65686 at field id:405 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67222 at field id:405 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67223 at field id:405 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67224 at field id:405 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 65795 at field id:406 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67238 at field id:406 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67239 at field id:406 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67240 at field id:406 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 65828 at field id:407 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67241 at field id:407 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67242 at field id:407 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67243 at field id:407 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 65879 at field id:408 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67244 at field id:408 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67245 at field id:408 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67246 at field id:408 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 65916 at field id:409 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67248 at field id:409 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67249 at field id:409 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67250 at field id:409 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 65874 at field id:421 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67256 at field id:421 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67257 at field id:421 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67258 at field id:421 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 65858 at field id:422 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67259 at field id:422 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67260 at field id:422 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67261 at field id:422 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 65768 at field id:423 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67262 at field id:423 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67263 at field id:423 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67264 at field id:423 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 65769 at field id:424 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67265 at field id:424 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67266 at field id:424 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67267 at field id:424 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 65766 at field id:425 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67270 at field id:425 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67271 at field id:425 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67272 at field id:425 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 65767 at field id:426 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67274 at field id:426 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67275 at field id:426 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67276 at field id:426 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 66001 at field id:441 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67281 at field id:441 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67282 at field id:441 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67283 at field id:441 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67247 at field id:461 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67290 at field id:461 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67254 at field id:462 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67291 at field id:462 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67197 at field id:463 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67292 at field id:463 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 65950 at field id:464 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67296 at field id:464 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67297 at field id:464 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67298 at field id:464 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 65875 at field id:466 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67303 at field id:466 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67304 at field id:466 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67305 at field id:466 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 65876 at field id:467 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67306 at field id:467 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67307 at field id:467 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67308 at field id:467 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 66069 at field id:468 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67309 at field id:468 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67310 at field id:468 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67311 at field id:468 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 66075 at field id:469 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67312 at field id:469 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67313 at field id:469 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67314 at field id:469 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 66829 at field id:470 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67315 at field id:470 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67316 at field id:470 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67317 at field id:470 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 65949 at field id:471 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67318 at field id:471 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67319 at field id:471 at spellid2 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67320 at field id:471 at spellid3 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 66665 at field id:481 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67328 at field id:481 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 66670 at field id:482 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67329 at field id:482 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 66813 at field id:483 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67330 at field id:483 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 66809 at field id:484 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67331 at field id:484 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 66684 at field id:485 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67332 at field id:485 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 66765 at field id:486 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67333 at field id:486 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 66655 at field id:501 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67436 at field id:501 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67441 at field id:502 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67442 at field id:502 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 66195 at field id:503 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67444 at field id:503 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 66184 at field id:504 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 67446 at field id:504 at spellid1 does not exist in SpellStore (spell.dbc), loaded as 0 2010-06-15 16:46:42 ERROR: spelldifficulty_dbc: spell 66289 at field id:505 at spellid0 does not exist in SpellStore (spell.dbc), loaded as 0 что за хрень ?
Сообщение # 286 написано 15.06.2010 в 16:47
|
Quote (Silenn) #include "ScriptedPch.h" #include "icecrown_citadel.h" #define GOSSIP_START_EVENT "В бой пердуля!" Вот так нужно!
Сообщение # 288 написано 15.06.2010 в 19:48
|
Сообщение # 289 написано 15.06.2010 в 20:42
|
UNLIMBOOM, Будем надеется+)
Добавлено (15.06.2010, 21:10) Quote (Silenn) Джорда для тебя!!!Загляни прежде чем делать rev 11 очень прошу!!! Расскрыть + jorda521, Вот ещё насчёт Восстановление хп\маны и сброс кд при начале дуэля diff -r 8f824d68fad6 src/game/DuelHandler.cpp + // reset cooldowns and HP/Mana и это тоже бы не помешало recvPacket >> bagIndex >> slot >> cast_count >> spellid >> item_guid >> glyphIndex >> unk_flags; + // reject fake data Патч на маунты на прокат 6. 10. 15. 18. |
Pro[100]Lens jorda521 у вас что аську юин хакнули или забыли как общаться!? Форум это не переписка 2х людей неочем! Флуд ОФ.
что касается "В бой дедуля!" вообще дедский сад. У тя за 2500 чтоли везде такой перевод ? Переводить надо слово в слово как голосовой перевод. Иначе это будет ужасно тупо.... И много народу купило сборку ? Воздушный бой выложи видео нам я поверю тогда! А то попахивает это .... не вкусно мягко говоря.
Новые сборки
Сборки, сайты, настройка серверов WIN / UNIX любых игр: WOW,AION,L2,COD,CS,L4D,TF,MC... icq 366154748 | skype: SergeySV_GameSV | VK: sergeysv1 | E-mail sergeysv@gamesv.ru Telegramm: @sergeysv_gamesv Портфолио |
[blizz]что добавлено в рев 11
1.добавлены скрипты на мобов боле 60000% моделям 2.добавлены спелы мобам практически всем 3.мир стал боле играемый оффу 4.добавлены тексты мобам 5.скрипты на квесты в текстовых сюжетах которые идут в цепочках правда не все 6.скрипты практически на все инсты боссы мобы кастуют 7.исправлены сеты а8 8.исправлено случайное поле боя 9.добавлены квесты итемы которых небыло в базе 10.исправлено много спелов брал з других форков и дописовал в свой 11.Heisei Project +Acid 3.0.5 Brunk Script совместивая база з CTDB 12.починил оло осталось токо добавить реликвию 13.починил берег древних доабвил реликвию и зделал правильный таймер 14.остров завоевание осталось только зделать технику и реализовать правыльный спавн мобов 15.зборка планируетца вечером после теста 16.фиксы базы з офф сайта CTDB 17.увиличелась стабильность[/blizz] |
Сообщение # 296 написано 16.06.2010 в 08:57
|
dpek53, есть там утюг убей по боках 2 боковых мобов и он сам выедит
Добавлено (16.06.2010, 09:09)
Сообщение # 297 написано 16.06.2010 в 09:09
|
jorda521, Зональный бафф цлк 20% сделал тут даже скрипты довали ?
Добавлено (16.06.2010, 09:21)
Сообщение # 298 написано 16.06.2010 в 09:21
|
| |||