Machiavelli
27c00a8cbb
Core/DBLayer:
...
- Allow transactions to contain both raw ad-hoc queries and prepared statement elements
* When coding on high level code, just make sure you use the right argument type for Transaction::Append and the proper execution will be done automagically
--HG--
branch : trunk
2010-09-04 16:49:23 +02:00
Machiavelli
fd1c6c5440
Core/DBLayer: Add an assert in TransactionTask::Execute to make sure valid queries are held
...
Core/Logging: Tiny cleanup in sLog.outSQLDriver
--HG--
branch : trunk
2010-09-04 16:06:04 +02:00
Supabad
a0585adb37
Scripts/Ulduar: Ulduar Teleporter
...
- add check for formation grounds thanks to silentstormpt
- fix gossip for ulduar teleporter
--HG--
branch : trunk
2010-09-04 15:42:43 +02:00
silinoron
c05d0722f4
Core/Game: forgotten changes from r3cc82905662712385f0d03895a426310e6cc96bd
...
--HG--
branch : trunk
2010-09-03 22:40:16 -07:00
silinoron
5179d3149a
Core/Game: Fix remaining warnings on windows (and most likely almost all of the ones on *nix)
...
--HG--
branch : trunk
2010-09-03 21:55:57 -07:00
silinoron
1e1c596dda
Core/WorldPacket: Fix the core spamming complaints about CMSG_QUEST_QUERY being sent post-logout
...
Core/Spells: A little bit of "cleanup"
--HG--
branch : trunk
2010-09-03 20:30:29 -07:00
silinoron
d2c259fe76
Core/ScriptSystem: Add a PlayerScript::OnSpellCast(Player *player, Spell *spell, bool skipCheck) function.
...
Requested by Zor.
--HG--
branch : trunk
2010-09-03 19:58:16 -07:00
click
128c60c84a
Core/PetAI: Add additional safeguard against possible crash if me->GetCharmerOrOwner() is NULL in agressiontest
...
Patch by JacB667. Fixes issue #3766 .
--HG--
branch : trunk
2010-09-03 22:47:03 +02:00
azazel
7884fd927a
Spell Scripts:
...
* moved some generic spell dummy effects to scripts
* implemented two spell scripts for quests: 8913 Sacred Cleansing (Quest 55), 44936 Quest - Fel Siphon Dummy (Quest 11515). Closes issue #3040
* did some cleanup in spell scripts and added more comments
--HG--
branch : trunk
2010-09-04 02:33:57 +06:00
click
d4e2fdad78
Core/Worldpacket: Correct size of SMSG_AUTH_RESPONSE (thanks to Ramus for orig patch, and svetilo for notification)
...
--HG--
branch : trunk
2010-09-03 22:14:42 +02:00
Shauren
8f1d660a4b
Core/Dungeon Finder: Added missing check in previous revision and moved RewardDungeonDoneFor to proper place in the file
...
--HG--
branch : trunk
2010-09-03 20:25:03 +02:00
Shauren
d5115ca687
Core/Dungeon Finder: Added support for rewards for random dungeons
...
Core/Quests: Simplified rewarding money from quests, now ModifyMoney and UpdateAchievementCriteria are called only once per quest
Core/Achievements: Implemented ACHIEVEMENT_CRITERIA_TYPE_USE_LFD_TO_GROUP_WITH_PLAYERS
--HG--
branch : trunk
2010-09-03 20:11:14 +02:00
Machiavelli
d7f9cea305
Core/WorldRunnable: Convert autobroadcast to trinity standards (properly cache configs, change function name to better reflect purpose)
...
--HG--
branch : trunk
2010-09-03 18:29:35 +02:00
Shocker
ee83ffdfca
Fix snake's HP for hunter's Snake Trap
...
--HG--
branch : trunk
2010-09-03 19:04:32 +03:00
Machiavelli
5469af3775
Core/DBLayer: Add an assert to detetct calls to invalid prepared statements.
...
--HG--
branch : trunk
2010-09-03 17:30:23 +02:00
Shocker
d207f0d9a5
Fix compilation, thanks tru.bazoozoo, closes issue 3778
...
--HG--
branch : trunk
2010-09-03 16:56:17 +03:00
Machiavelli
273679c5ba
Core/DBLayer
...
- Store threadbundlemask internally per database pool and prevent direct access to config file post startup
- Fix threadbundlemask flag checking for ReactorRunnable, WorldRunnable
- Remove CLI threadbundlemask flag, CLI doesn´t need a seperate mysql connection nor thread
- Remove unused Character Database connection from WorldSocketMgr / ReactorRunnable
- Add proper LoginDatabase connection to RA Runnable (soon to be overhauled)
Note: still experimental and not tested for live use
--HG--
branch : trunk
2010-09-03 10:52:32 +02:00
Shauren
277f2674ac
Core/Tickets: Fixed lag report db saving query
...
--HG--
branch : trunk
2010-09-03 09:58:26 +02:00
Machiavelli
387ee751a9
Core/DBLayer
...
- Add some small documentation on prepared statement defines naming contention (placed in the 3 database implementation header files so it can´t be missed)
- Remove obsolete mutex declaration in DatabaseWorkerPool (was unused as of recently)
--HG--
branch : trunk
2010-09-03 09:21:28 +02:00
runningnak3d
a15c45808c
Core/Build: Fix non-PCH compile for Linux (don't know about Windows)
...
--HG--
branch : trunk
2010-09-02 17:55:55 -06:00
runningnak3d
7433768a55
Core/Build: Partial work of fixing non-PCH Linux compile
...
--HG--
branch : trunk
2010-09-02 17:19:53 -06:00
Machiavelli
7982cc0f7d
Core/DBLayer:
...
- A few prepared statement implementations in authsocket as example.
- Add an ASSERT in MySQLConnection::Execute(PreparedStatement*) to catch faulty created statements
--HG--
branch : trunk
2010-09-03 01:00:49 +02:00
Machiavelli
2c1c391597
Core/DBLayer:
...
- Example implementation of prepared statement in ObjectMgr::SaveCreatureRespawntime
- #include "MYSQLThreading.h" -> #include "MySQLThreading.h" (*really* fixes Linux build)
--HG--
branch : trunk
2010-09-03 00:44:27 +02:00
Machiavelli
1e8a294659
Missing include from previous rev.
...
--HG--
branch : trunk
2010-09-03 00:08:20 +02:00
Machiavelli
39027133e4
Fix Linux build
...
--HG--
branch : trunk
2010-09-03 00:04:14 +02:00
Shauren
e25846a08e
Core/Spells: Fixed crash in EffectFeedPet
...
Closes issue #3728 .
Closes issue #3752 .
--HG--
branch : trunk
2010-09-02 22:04:08 +02:00
Machiavelli
1198591bac
Core/DBLayer:
...
- Add basic prepared statement interface (without implementation and thus without testing, without resultset support).
- Based on raczman/Albator´s work on TrinityCore3
Build:
- Add sLog define ¨hack¨ in DatbaseWorkerPool.h to fix some more sLog errors temporarily
FYI: Builds on windows
--HG--
branch : trunk
2010-09-02 20:54:43 +02:00
Shauren
cd182a1e8f
Fixed build
...
Fixed wrong header includes in new database files, thx Thyros
--HG--
branch : trunk
2010-09-02 20:22:19 +02:00
Shauren
e9ff90a967
Fix *SOME* build errors
...
--HG--
branch : trunk
2010-09-02 18:20:59 +02:00
Machiavelli
c47f45694f
Core/DBLayer: Add Login-/Characters-/Worlddatabase class implementations
...
--HG--
branch : trunk
2010-09-02 17:56:49 +02:00
Machiavelli
5ef738c16e
Core/DBLayer:
...
- Better way to shutdown worker thread, prevents a crash. Fixes issue #3696
- Delete missing file from previous rev
--HG--
branch : trunk
2010-09-02 17:55:03 +02:00
Machiavelli
0117af4c37
Core/DBLayer:
...
- Implement deriviate classes of MySQLConnection for every database type (world, realm, characters)
- Make DatabaseWorkerPool templatized and use the above mentioned classes as parameter
- Implementation of the new types in code
(This is in preparation of prepared statement interface)
--HG--
branch : trunk
2010-09-02 17:47:50 +02:00
Machiavelli
d2edf39feb
Core/DBLayer: Remove as of recent redundant DatabaseWorkerPoolEnd operation
...
--HG--
branch : trunk
2010-09-02 16:45:33 +02:00
Shauren
15880d27ea
Core/Spells: Fixed Health Leech effect, should not apply healing multiplier to damage done
...
--HG--
branch : trunk
2010-09-02 15:34:36 +02:00
Shocker
8331da627d
Some old typo fixes, closes issues #3747 , #2756 , #2607 , thanks 2010phenix/jean-michele.nefen/toshik.777
...
--HG--
branch : trunk
2010-09-02 15:25:02 +03:00
Shocker
c8dfbdac35
Conflagrate direct & DoT damage shouldn't scale with duration increases of Immolate/Shadowflame, fixes issue 3376.
...
--HG--
branch : trunk
2010-09-02 06:02:51 +03:00
azazel
b2a49ad79a
Scripts/Blackrock Depths: fix spectral chalice spawning for quest with the same name (thanks niksad8). Closes issue #3086 . Closes issue #2989 .
...
--HG--
branch : trunk
2010-09-01 10:40:44 +06:00
silinoron
80df469a38
Oooh, C++... How I love you.
...
--HG--
branch : trunk
2010-08-31 17:41:18 -07:00
Shocker
4e067dd313
Add LoS check for melee autoattacks, fixes issue 3535
...
--HG--
branch : trunk
2010-09-01 01:16:43 +03:00
John Holiver
3a765da2fa
Small fix to Chimera Shot Serpent dmg and Scorpid CD.
...
Thanks to Arcane.
--HG--
branch : trunk
2010-08-31 19:13:59 -03:00
Shauren
6c3b39ac01
Scripts/Icecrown Citadel: Added Festergut script, thx Cromash for providing the base and Cyrax for sniffs
...
Scripts/Icecrown Citadel: Added Professor Putricide script handling ONLY Festergut related events
--HG--
branch : trunk
2010-08-30 11:36:15 +02:00
Shauren
dc2c28985f
Scripts/Icecrown Citadel: Remove Mark of the Fallen Champion when Saurfang dies
...
Scripts/Icecrown Citadel: Change previous scripts to use BossAI instead of ScriptedAI
--HG--
branch : trunk
2010-08-31 21:47:45 +02:00
Shauren
6048d2ec5e
Core/Achievements: Pass killed unit pointer to UpdateAchievementCriteria for ACHIEVEMENT_CRITERIA_TYPE_KILL_CREATURE (use in scripts)
...
--HG--
branch : trunk
2010-08-31 21:47:44 +02:00
Shauren
996e7741a1
Scripts/Icecrown Citadel: Corrected vehicleId for Deathbringer Saurfang, patch by Heisenberg/bolvor
...
Closes issue #3704 .
--HG--
branch : trunk
2010-08-31 21:47:43 +02:00
John Holiver
258398ed30
Fixes Druid T10 Balance 4P bonus.
...
Fixes DK T10 Melee 4P bonus.
--HG--
branch : trunk
2010-08-31 15:01:04 -03:00
Shocker
e32ece52ea
Pet level-synchronization with owner should be done before initializing stats, closes issue 3732, thanks moriquendu
...
--HG--
branch : trunk
2010-08-31 20:40:43 +03:00
Shauren
58ce3c77af
Core/Scripts: Revert revision 619ba8b76250 and fix it properly
...
--HG--
branch : trunk
2010-08-31 15:37:29 +02:00
Spp
b5beb1c706
Better way to fix some warnings from rev 621c100eeb.
...
--HG--
branch : trunk
2010-08-31 13:31:38 +02:00
Spp
866c28fbec
Core/Groups: Fix a crash loading groups from DB
...
Fixes issue 3693
--HG--
branch : trunk
2010-08-31 11:50:07 +02:00
Spp
b9e19572c4
Core: Fix more warnings (very few left under linux 32)
...
--HG--
branch : trunk
2010-08-31 11:39:51 +02:00