aboutsummaryrefslogtreecommitdiff
path: root/src/server/scripts
AgeCommit message (Collapse)Author
2012-08-20Core/Battlefield: Correct previous commitKandera
2012-08-20Core/Battlefield: correct wintergrasp faction for horde (thx kirkita), added ↵Kandera
grab passenger spell as per sniffs.
2012-08-20Core/Battlefield: cleanup a magic numberKandera
2012-08-20Battlefield/Wintergrasp:Warpten
* Use correct spells on losing and winning factions * Enums renaming, lowerCamelCase wherever applicable * Rename some methods and class attributes for them to sound more English and less Engrish or even Frenglish (\o/) * Use correct spells when trying to build mechanical units at the Workshops.
2012-08-20Core/Battlefield: Fix issue with previous commit. codestyle cleanup and ↵Kandera
attempt to fix vehicle issues with worldstates.
2012-08-20Core/Battlefield: Correctly cast the teleport spell (data from sniffs). ↵Kandera
codestyle cleanup
2012-08-20Core/Battlefield: fix issues with vehicles. return correct vehicle data when ↵Kandera
using getdata. small cleanups. codestyle
2012-08-20Core/Battlefield: Cleanupthomas33
2012-08-20Core/Battlefield: more cleanupthomas33
2012-08-20Core/Battlefield: cleanupthomas33
2012-08-20Core/Battlefield: pPlayer -> playerthomas33
2012-08-20Core/Battlefield: fix stupid mistakes. sorry!Kandera
2012-08-20Core/Battlefield: attempt to correctly fix again.Kandera
2012-08-20Core/Battlefield: revert part of previous commit and correctly fix .bf stop ↵Kandera
crashing
2012-08-20Battlefield: Make sBattlefieldMgr a pointer. By Subv.Manuel Carrasco
2012-08-20Battlefield/Wintergrasp/Scripts: removed a few unneeded casts.Kandera
2012-08-20merge master into wintergrasp and fix build errors. yay me!Kandera
2012-08-20Fix Didn't Stand a Chance achievementShocker
2012-08-20- Rename scriptnames to keep naming consistent;Nay
- Template updates and spells to WG vehicles; - Cleanup SQL files a bit.
2012-08-20Core/Spells: Fixed Libram of Wracking. thnx Vincent-MichaelFaq
Closes #7094
2012-08-15Misc: CRLF to LF, whitespace cleanup and tabs to spacesNay
2012-08-15Core/Scripts: Missing change from previous commitVincent-Michael
2012-08-14Core/Scripts: Fix uninitialized variable in boss_akilzonVincent-Michael
2012-08-14Core/Scripts: Fixed more uninitialized variablesVincent-Michael
2012-08-14Merge pull request #7398 from Vincent-Michael/onyxiaCreatureTextNay
Scripts/Onyxias Lair: Convert script_texts in creature_text
2012-08-14Scripts/Onyxias Lair: Convert script_texts in creature_textVincent-Michael
2012-08-14Scripts/Trial Of The Crusader:Vincent-Michael
* Fix typo * Fix creature_text group id for King Varian Wrynn / Garrosh Hellscream
2012-08-13Scripts/Trial of the Crusader: Convert script_texts in creature_textVincent-Michael
2012-08-13Scripts: Fixed more uninitialized variablesShauren
2012-08-12Core/Misc: Fix some mem-leaks and uninitialized variables.kaelima
2012-08-12Merge pull request #7360 from Vincent-Michael/MalGanisNay
Scripts/The Culling of Stratholme: Fix quest credit for Mal'Ganis
2012-08-12Scripts/Karazhan: Fixed some uninitialized variablesShauren
2012-08-12Scripts/The Culling of Stratholme: Fix quest credit for Mal'GanisVincent-Michael
2012-08-12Scripts: Fixed some unitialized variablesShauren
2012-08-11Scripts/Grizzly Hills: Fix uninitialized variable in ↵kaelima
npc_venture_co_straggler. minor cleanup
2012-08-09Merge pull request #6520 from Vincent-Michael/shadowstepNay
Core/Spell: Fix not using Shadowstep while rooted
2012-08-07Core/Players: Improved alcohol handling, weeeeeeeeeeeeeeeeeShauren
Closes #7293
2012-08-06Core/Logging: Try to simplify configuration of loggers and appendersSpp
Changed multiple lines to a simple format: - Logger.name=Type,LogLevel,Flags,AppenderList - Appender.name=Type,LogLevel,Flags,optional1,optional2 * Type = File: optional1 = File name, optiona2 = Mode * Type = Console: optional1 = Colors Created a default set of loggers and appenders. - Root logger defaults to Error, that means you will see nothing on console by default (not even loading) - You need to add the loggers to Loggers options if you want to enable them, otherwise Root logger will be used for all types Restored outSQLDriver (LOG_FILTER_SQL_DRIVER), outSQLDev (LOG_FILTER_SQL_DEV), outArena (LOG_FILTER_ARENA) and outChar (LOG_FILTER_CHARACTER) functionality by creating new types (LOG_FILTER_CHARACTER is a rename of LOG_FILTER_DELETE. Note: You need to update your config file... again (yeah sorry... trying to make it simpler)
2012-08-05Script/Commands: Fix a copy paste type in .reload item_set_names commandNay
2012-08-05Core/Commands:Vincent-Michael
* Add remove support for disable command * Add quest disables support * Add check for no existent entry * Fix problems with flags 0 * Fix code style
2012-08-03Whitespace is the root of all evil (version 2)Nay
2012-08-03Core/Logging: Add Asyncronous logging with Loggers ("What to log") and ↵Spp
Appenders ("Where to log") system. Will allow to select to full log some parts of core while others are not even logged. - Logging System is asyncronous to improve performance. - Each msg and Logger has a Log Type and Log Level assigned. Each msg is assigned the Logger of same Log Type or "root" Logger is selected if there is no Logger configured for the given Log Type - Loggers have a list of Appenders to send the msg to. The Msg in the Logger is not sent to Appenders if the msg LogLevel is lower than Logger LogLevel. - There are three (at the moment) types of Appenders: Console, File or DB (this is WIP, not working ATM). Msg is not written to the resource if msg LogLevel is lower than Appender LogLevel. - Appender and Console Log levels can be changed while server is active with command '.set loglevel (a/l) name level' Explanation of use with Sample config: Appender.Console.Type=1 (1 = Console) Appender.Console.Level=2 (2 = Debug) Appender.Server.Type=2 (2 = File) Appender.Server.Level=3 (3 = Info) Appender.Server.File=Server.log Appender.SQL.Type=2 (2 = File) Appender.SQL.Level=1 (1 = Trace) Appender.SQL.File=sql.log Appenders=Console Server (NOTE: SQL has not been included here... that will make core ignore the config for "SQL" as it's not in this list) Logger.root.Type=0 (0 = Default - if it's not created by config, server will create it with LogLevel = DISABLED) Logger.root.Level=5 (5 = Error) Logger.root.Appenders=Console Logger.SQL.Type=26 (26 = SQL) Logger.SQL.Level=3 (2 = Debug) Logger.SQL.Appenders=Console Server SQL Logger.SomeRandomName.Type=24 (24 = Guild) Logger.SomeRandomName.Level=5 (5 = Error) Loggers=root SQL SomeRandomName * At loading Appender SQL will be ignored, as it's not present on "Appenders" * sLog->outDebug(LOG_FILTER_GUILD, "Some log msg related to Guilds") - Msg is sent to Logger of Type LOG_FILTER_GUILD (24). Logger with name SomeRandomName is found but it's LogLevel = 5 and Msg LogLevel=2... Msg is not logged * sLog->outError(LOG_FILTER_GUILD, "Some error log msg related to Guilds") - Msg is sent to Logger of Type LOG_FILTER_GUILD (24). Logger with name SomeRandomeName is found with proper LogLevel but Logger does not have any Appenders assigned to that logger... Msg is not logged * sLog->outDebug(LOG_FILTER_SQL, "Some msg related to SQLs") - Msg is sent to Logger SQL (matches type), as it matches LogLevel the msg is sent to Appenders Console, Server and SQL - Appender Console has lower Log Level: Msg is logged to Console - Appender Server has higher Log Level: Msg is not logged to file - Appender SQL has lower Log Level: Msg is logged to file sql.log * sLog->outDebug(LOG_FILTER_BATTLEGROUND, "Some msg related to Battelgrounds") - Msg is sent to Logger root (Type 0) as no Logger was found with Type LOG_FILTER_BATTLEGROUND (13). As Logger has higher LogLevel msg is not sent to any appender * sLog->outError(LOG_FILTER_BATTLEGROUND, "Some error msg related to Battelgrounds") - Msg is sent to Logger root (Type 0) as no Logger was found with Type LOG_FILTER_BATTLEGROUND (13). Msg has lower LogLevel and is sent to Appender Console - Appender Console has lower LogLevel: Msg is logged to Console
2012-08-03Core/Misc: Fix code style and a typo for recently merged in PRsNay
2012-08-02Some codestyle changes.Alternative
2012-08-02Added disable commands.Alternative
2012-08-01Merge pull request #7065 from Vincent-Michael/PainAndSufferingKaelima
Core/Spells: Fix Pain and Suffering reduces damage
2012-08-01Merge pull request #6800 from Vincent-Michael/codKaelima
Core/Spells: Fix Curse of Doom (thx to Warpten / joschiwald for helping)
2012-08-01Scripts/Build: Fix non PCH buildNay
2012-07-30Warning fixes + compile fix after the mergeSpp
2012-07-30Merge pull request #7227 from Vincent-Michael/PCHJorge
Core/Misc: Use proper headers to optimize compile