aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Chat/Commands
AgeCommit message (Collapse)Author
2012-07-29Core/Commands: Convert more misc commands in commandscriptVincent-Michael
2012-07-29Convert misc commands in commandscriptVincent-Michael
2012-07-15Core/Commands: Convert ticket commands in commandscriptVincent-Michael
2012-07-14Core/Commands: Convert ban / unban / baninfo / banlist commands in commandscriptVincent-Michael
2012-07-06Core/Commands: Convert lookup commands in commandscriptVincent-Michael
2012-07-02Core/Commands: Convert guild commands in commandscriptVincent-Michael
2012-06-21Core/Commands: Convert reset commands in commandscriptVincent-Michael
2012-06-21Core/Commands: Convert list commands in commandscriptVincent-Michael
2012-06-21Scripts/Commands: Convert character and server commands to commandscriptXees
Closes #6856 Signed-off-by: Nay <dnpd.dd@gmail.com>
2012-06-19Core/Commands: Convert cast commands in commandscriptVincent-Michael
2012-06-14Core/Chat: Convert instance commands in commandscriptVincent-Michael
2012-06-03Core/Commands: Fixed lookup quest command to show [rewarded] mark on ↵4m1g0
rewarded quests
2012-04-23Merge pull request #6008 from cookta2012/troy09Shocker
Core/Commands: Some porting and organizing Moving a commands around eliminating a unnecessary file, and porting the "demorph" command * moved the "wpgps" command into the cs_debug.cpp because it seems more fitting * organized the "modify speed" commands into a table of their own * moved the "gps" command into the cs_misc.cpp
2012-04-12Core/Commands: Remove recently defunct .hover command. All this spell did ↵Machiavelli
before hoverheight changes was .cast/.unaura spell 11010. And since we do not have .autoattack, .steadyshot, .heroicstrike, .shootwand etc. either, there's no place for this command in the core (there never was).
2012-04-09Core/DBLayer: Correct a type in HandleUnFreezeCommand (lowguid)kaelima
2012-04-07Core/DBLayer: More type fixes.Shauren
2012-04-05Moving a commands around eliminating a unnecessary file, and porting the ↵cookta2012
"demorph" command * moved the "wpgps" command into the cs_debug.cpp because it seems more fitting * organized the "modify speed" commands into a table of their own * moved the "gps" command into the cs_misc.cpp
2012-04-01Core/Commands: Allow combatstop command to be used from console with the ↵Subv
player name as parameter Signed-off-by: Subv <s.v.h21@hotmail.com>
2012-03-31Core/DBLayer: More type fixesNay
2012-03-31Core/DBLayer: Delete a triplicated prepared statement (LoginDatabase)Nay
Thanks to Anubiss for spotting it
2012-03-29Core/Game: Code style.Gyx
Signed-off-by: Gyx <2359980687@qq.com>
2012-03-28Core/Game: Code style.Gyx
Signed-off-by: Gyx <2359980687@qq.com>
2012-03-26Core/CombatLog:kaelima
- Send more proper hitinfo values in SMSG_ATTACKERSTATEUPDATE (still lot of research todo) - Some renaming and commenting - Minor cleanup in Player::UpdateZone
2012-03-25Core/DBLayer: Restore pinfo ban info outputleak
2012-03-24Core: Fix .pinfo handling of player level and securitylevel after recent ↵click
cleanups (and clean up my last commit)
2012-03-24Core/DBLayer: C/P fixleak
2012-03-24Core/DBLayer: Convert PQuery() queries to prepared statementsleak
2012-03-23Core/Commands: Add support for ip2nation database lookups when using .pinfo ↵Spp
command. This will (when a full database exists) allow for seeing (approximately) which country a player might be from when doing .pinfo <player> Note: External data required for this patch to work correctly can be found at http://www.ip2nation.com/ip2nation/Download Signed-off-by: click <click@gonnamakeyou.com>
2012-03-17Core/Game: Code style and remove unused core.Gyx
Signed-off-by: Gyx <2359980687@qq.com>
2012-02-18Core: Clean up whitespace and tabs in the base sourcetreeclick
2012-02-12Codestyle: Renamed some variables to fit codestyleSubv
Signed-off-by: Subv <s.v.h21@hotmail.com>
2012-01-28Scripts/Commands: Adjust .pinfo and .gm list to respect the realmid in ↵Subv2112
account_access table. closes #1306 Signed-off-by: Subv2112 <s.v.h21@hotmail.com>
2012-01-14Core/Movement: Implement spline movement subsystem.Machiavelli
Spline movement controls movements of server-side controlled units (monster movement, taxi movement, etc). Proper implementation of effects such as charge, jump, cyclic movement will rely on it. However, need improve our states system before. Technical changes: * Added linear, catmullrom and bezier3 splines which based on client's algorthims. They can be reused for proper transport position interpolation. * Precission increased. There are no more position desync issues since client's position calculation formulas used. * Now possible to move by paths with multiple points, send whole path to client. -- Original author of research and implementation: SilverIce. Massive kudos. Original port for Trinity (ref #4629) Chaplain and Venugh With the following incremental fixes during my review: - Restore flightmaster end grid pre-loading - Fix uninitialized Creature::m_path_id - Add missing trinity_string entries for .movegens command - Fix a bug in WaypointMovementGenerator that would trigger unexpected pausing at waypoints for various amounts of time Known issues: - Errors like WaypointMovementGenerator::LoadPath creature XXX (Entry: YYYYY GUID: ZZZZZZ) doesn't have waypoint path id: 0. This is caused by bad DB data. This commit didn't "break" it. Do not forget to re-run CMake before compiling.
2012-01-12Core/Commands: Correction to 57490ead833074bd83ae38be8ee50e9f9813759a, when ↵Shauren
ip parameter is supplied it should be used over selection
2012-01-02Core/DBLayer: Couple fixesleak
2011-12-31Merge pull request #4567 from Kiperr/masterleak
Happy new year!
2012-01-01Core/DBLayer: Refactor prepared statement defines to new format (char db)leak
2012-01-01Update headers for 2012. HAPPY NEW YEAR!!!kiper
2011-12-31Core/DBLayer: Refactor prepared statement defines Note:leak
The new format for the middle section is a 3-letter upper case abbreviation of the sql command being executed (select -> SEL, update -> UPD, etc.) {DB}_{SEL/INS/UPD/DEL/REP}_{Summary of data changed}
2011-12-31Core/DBLayer: Convert PExecute() queries to prepared statements No. 3leak
2011-12-30Core/Commands: Allow to search for other account/characters from a selected ↵Spp
player without having to write the ip as argument (By Bizzy)
2011-12-27Core/DBLayer: Convert PExecute() queries to prepared statements No. 2leak
2011-12-25Core/DBLayer: Convert PExecute() queries to prepared statements No. 1leak
2011-12-25Core/DBLayer: Convert Execute() queries to prepared statementsleak
2011-12-19Core/Misc: Some random meaningless Engrish to English conversion in a method ↵Machiavelli
name because Discovered is too lazy to do it himself.
2011-12-15Core/Commands: Fixed crash when closing ticket in console, introduced in ↵kaelima
db8c10c7bfcf2bbd5d36d18f56f2279a29ef5b97
2011-12-14Core/Commands: Make GM Ticket commands console enabled. (Aokromes' ↵Machiavelli
Suggestions)--;
2011-12-14Core/Commands: Show time left until shutdown in .server info. (Aokromes' ↵Machiavelli
Suggestions)--;
2011-11-28Revert 81fea2d7b51549c340866050f93e3780503112f7.megamage
2011-11-23Core: Fixed more warnings (C6246: Local declaration of 'x' hides declaration ↵Shauren
of the same name in outer scope.)