summaryrefslogtreecommitdiff
path: root/src/net/ea
AgeCommit message (Collapse)AuthorFilesLines
2011-11-25Move A_UNUSED define to include file.Andrei Karas13-78/+0
2011-11-24Add ability to play different animation depend on monster hp.Andrei Karas1-1/+1
Disabled for legacy servers because monster hp unknown and compilated hp can be wrong (version <= 0). For usage need add to action tag attribute hp="xx" Example: <action name="stand" hp="50" imageset="base"> ... </action> Here 50 mean 50% of health or less. Default action tag mean hp=100
2011-11-20Fix memory leak in char selection dialog.Andrei Karas2-0/+9
2011-11-19Add limits for creating chars (hair color, hair style, stats).Andrei Karas1-1/+13
2011-11-13Change chat logs dirs format to yyyy-mm/dd/file.log.Andrei Karas1-0/+1
2011-11-08Fix more gcc 4.7 warnings.Andrei Karas9-38/+38
2011-11-07Fix some warnings under gcc 4.7.Andrei Karas3-4/+5
2011-10-30Hide death message dialog in reconnect.Andrei Karas1-1/+1
2011-10-30Fix code style.Andrei Karas1-1/+2
2011-10-23Protect trade against abusing.Andrei Karas1-0/+7
2011-10-23Add chat commands for using server side ignore for all whispers.Andrei Karas2-0/+47
Commands: /serverignoreall and /serverunignoreall
2011-10-10Add option to show/hide MVP messages.Andrei Karas1-1/+1
By default this messages hidden.
2011-10-10Add support for reading monsters attack range.Andrei Karas1-9/+25
Tmw server not supported.
2011-10-08Add checks and fix code style.Andrei Karas15-162/+145
2011-10-05Add blacklist relation. In this mode blocked trades, emotes, speech text.Andrei Karas1-1/+1
2011-09-18Fix compilation warnings.Andrei Karas2-5/+0
2011-09-10Change empty strings initializations.Andrei Karas2-2/+2
2011-09-09Continue fix for shadow variables/methods errors.Andrei Karas3-24/+24
2011-09-09Rename in listner class method from event to processEvent.Andrei Karas2-2/+4
2011-09-08Replace most iterator to const_iterator.Andrei Karas1-2/+2
Some other minor changes.
2011-09-02Add to status window attribute "damage per second".Andrei Karas2-2/+14
2011-09-01Remove party name from players if leave party.Andrei Karas1-0/+4
2011-08-30Dont create guild manager instance if guild bot support not enabled.Andrei Karas2-2/+2
2011-08-28Fix guild name reset on players from time.Andrei Karas1-1/+3
2011-08-27Basic support for guild bot integration.Andrei Karas2-0/+8
Not working context menu actions, chat commands, auto complete.
2011-08-15Add warp menu item for gms in navigation items.Andrei Karas2-0/+8
2011-08-12Rename file name ministatus to correct ministatuswindow.Andrei Karas1-1/+1
2011-08-12Rename file names log and chatlog to correct logger and chatlogger.Andrei Karas14-14/+14
2011-08-11Remove some unused code.Andrei Karas1-3/+3
2011-08-03Fix code style and remove some unused variabled.Andrei Karas4-8/+10
2011-07-31Extract shared logic from tradehandler netcode to ea namespace.Andrei Karas2-0/+347
2011-07-31Extract shared logic from specialhandler netcode to ea namespace.Andrei Karas2-0/+295
2011-07-31Extract shared logic from npchandler and playerhandler netcode to ea namespace.Andrei Karas5-0/+942
2011-07-31Fix error in inventoryhandler from previous commits.Andrei Karas1-2/+1
2011-07-31Extract shared logic from itemhandler netcode to ea namespace.Andrei Karas2-0/+116
2011-07-30Extract shared logic from inventoryhandler netcode to ea namespace.Andrei Karas4-1/+832
2011-07-30Remove unused code from guildhandler.Andrei Karas2-0/+7
Fix memory leak in guild class.
2011-07-30Fix code style.Andrei Karas1-1/+1
2011-07-30Extract shared logic from guildhandler and partyhandler netcode to ea namespace.Andrei Karas10-2/+1762
2011-07-29Extract shared logic from chathandler and gamehandler netcode to ea namespace.Andrei Karas7-13/+631
2011-07-28Extract shared logic from charserverhandler and loginhandler netcode to ea ↵Andrei Karas6-1/+695
namespace.
2011-07-09Reserve bits in gender field for future usage.Andrei Karas1-0/+3
2011-07-07Remove undescore from variables and defines.Andrei Karas4-9/+9
2011-07-05Add ability to send client states to other clients.Andrei Karas1-9/+4
Using for this emotes.
2011-05-24Add simple memory leak detector.Andrei Karas3-0/+6
Can be enabled by configure option -enable-memdebug=yes. Known issue: not all memory allocations hooked with it.
2011-05-21Fix some issues after automatic code checking.Andrei Karas2-9/+7
2011-05-20Start separating netcode to functions and moving some code to ea name spaceAndrei Karas7-0/+1341
for future usage for different server types. Processed classes: adminhandler, beinghandler, buysellhandler.