summaryrefslogtreecommitdiff
path: root/src/commandhandler.cpp
AgeCommit message (Collapse)AuthorFilesLines
2012-08-29Add const to more classes.Andrei Karas1-7/+8
2012-08-26Add const to some classes.Andrei Karas1-5/+7
2012-08-26Fix code style.Andrei Karas1-12/+24
2012-08-25Add const to other classes.Andrei Karas1-97/+85
2012-08-24Small style changes.Andrei Karas1-4/+2
Also fix overloaded methods visibility.
2012-08-23Remove useless includes.Andrei Karas1-3/+1
2012-08-13Add support for temp dir.Andrei Karas1-0/+2
2012-07-22Add new chat commands.Andrei Karas1-0/+27
/url LINK - put http link in chat. /openurl LINK - open link in browser.
2012-07-19Rename openglgraphics to normalopenglgraphics.Andrei Karas1-2/+2
2012-07-18Another warning fixes.Andrei Karas1-1/+1
2012-06-30Extend leak detection features.Andrei Karas1-2/+2
2012-06-30Fix compilation with debugging flags and show additional info on exit.Andrei Karas1-0/+1
2012-06-18Add chat command /error for crash client.Andrei Karas1-0/+9
Some times this need for debuging.
2012-06-17Replace SDL int types to C++ types.Andrei Karas1-1/+1
2012-04-25Improve iterators part 2.Andrei Karas1-7/+6
2012-04-01Last part of fixes.Andrei Karas1-5/+5
2012-03-29Replace vectors with strings to short names.Andrei Karas1-6/+6
2012-03-02Add opengl settings dump command.Andrei Karas1-0/+14
Chat command: /dumpogl
2012-02-08Add chat command /setdrop N to set change drop counter.Andrei Karas1-0/+9
2012-02-02Add some checks after automatic checking.Andrei Karas1-0/+6
2012-01-28Add support for processing player statuses in evol server.Andrei Karas1-0/+4
2012-01-21Fix more warnings.Andrei Karas1-1/+1
2012-01-07Fix tab for debug messages.Andrei Karas1-2/+48
2012-01-05Update copyrights year.Andrei Karas1-1/+1
2012-01-04Add chat command /dumpt for dumping last testing values.Andrei Karas1-0/+9
2011-12-23Fix code style and some auto checked errors.Andrei Karas1-1/+0
2011-12-08Add variables for any chat text/commands.Andrei Karas1-0/+80
<PLAYER> - target or nearest player nick. <MONSTER> - target or nearest monster name. <PEOPLE> - comma separated list of visible players (except self). <PARTY> - all party members (except self). Example usage: type in chat: hello <PEOPLE>.
2011-11-02Add enemy relation.Andrei Karas1-0/+7
2011-10-31Fix /help chat command to open help for current chat tab.Andrei Karas1-1/+22
2011-10-31Fix compilation warnings.Andrei Karas1-3/+4
2011-10-30Add pseudo away chat command.Andrei Karas1-0/+9
Command: /pseudoaway [test]
2011-10-27Add command to dump to chat main graphics settings.Andrei Karas1-3/+54
Command: /dumpg
2011-10-23Add chat commands for using server side ignore for all whispers.Andrei Karas1-0/+17
Commands: /serverignoreall and /serverunignoreall
2011-10-05Add blacklist relation. In this mode blocked trades, emotes, speech text.Andrei Karas1-3/+10
2011-09-12Add missing checks to some files.Andrei Karas1-109/+1
2011-09-10Change empty strings initializations.Andrei Karas1-2/+2
2011-09-09Continue fix for shadow variables/methods errors.Andrei Karas1-3/+3
2011-08-30Add auction bot support switch.Andrei Karas1-1/+3
2011-08-28Fix me command in guild tab.Andrei Karas1-1/+7
2011-08-12Rename file names log and chatlog to correct logger and chatlogger.Andrei Karas1-1/+1
2011-08-11Fix saving opened tabs state.Andrei Karas1-2/+14
2011-07-07Remove undescore from variables and defines.Andrei Karas1-56/+56
2011-05-30Improve memory leak detector.Andrei Karas1-0/+6
Add /dump chat command.
2011-05-24Add simple memory leak detector.Andrei Karas1-0/+2
Can be enabled by configure option -enable-memdebug=yes. Known issue: not all memory allocations hooked with it.
2011-05-17Debug option to dump loaded images names.Andrei Karas1-0/+73
2011-05-12Renaming login, sell, trade (cpp, h) files to correct names.Andrei Karas1-1/+1
2011-05-09Fix code style.Andrei Karas1-2/+4
2011-05-08Add font cache size to /cacheinfo chat command.Andrei Karas1-2/+5
2011-05-06Move attack filter arrays and methods from localplayer to actorspritemanager ↵Andrei Karas1-11/+17
class.
2011-05-06Fix player moving with mouse.Andrei Karas1-1/+1
Now move with mouse is soft moving. Player always can stop or change direction. Collisions not stoping player what holding down left mouse button. Also fix typo in method name navigateClean.