summaryrefslogtreecommitdiff
path: root/src/net/tmwserv/beinghandler.cpp
AgeCommit message (Collapse)AuthorFilesLines
2009-10-24REplace instances of TMW with ManaJared Adams1-325/+0
2009-10-15Speed code unification part 3: Made the client handle the speed in tiles per ↵Bertram1-7/+4
second in TMWserv. While I was on it, I tweaked the default speed value to its final 6 tiles per second value, which seems to be nice to me. Another notice, the server does already send speed value to the player. The keyboard movement protocol is one step ahead Release Candidate, enjoy ;)
2009-08-13Clean up Being and it's derivativesJared Adams1-5/+6
Move stuff only needed for Players into Player (like slots and sprite limits). Move name handling into Being (no need for three copies of this code). Clean up terminology (including Map terminology). Remove hair-related variables.
2009-08-07Gettext fixesKess Vargavind1-5/+9
Trying to use the same kind of capitalization and interpunctuation for various parts of the gui, melding a few split strings, updating POTFILES.in and adding translators' notes.
2009-08-01Simplifies movement to only move to the current posChuck Miller1-42/+4
2009-07-26Fixed a '+' string operation, and attempt to resolve the Mantis 427.Bertram1-1/+1
2009-07-26Gettext fixesKess Vargavind1-2/+2
And a Swedish translation of the desktop file.
2009-07-01Remove complex path finding for players. Add a simple path finding algorithm ↵Roderic Morris1-2/+3
to map.
2009-05-29Some movement fixes for TMWServ build.Chuck Miller1-7/+2
Looked pretty good so I removed annoying debug information. Also should note that movement between two players is still off.
2009-04-29Removed underscores from some non-conforming filenamesBjørn Lindeijer1-1/+1
We don't use underscores in the filenames generally, and let's be consistent on that matter.
2009-04-14Put the remaining unnamespaced handlers in a namespaceBjørn Lindeijer1-0/+4
Also fixed some initialization order warnings when compiling with tmwserv support and made two getters const.
2009-04-07Fixed compile warnings about unsigned/signed comparisonsBjørn Lindeijer1-8/+11
2009-04-06Moved many MessageOut constructions aroundBjørn Lindeijer1-4/+4
No real point in having these abstracted away twice. We're using network interfaces now instead of functions structured in namespaces.
2009-03-28Remove #ifdefs related to Being creationJared Adams1-2/+3
Also move the Monster type offset handling into the eAthena netcode.
2009-03-27Changed the includes for the net/tmwserv/ directoryBjørn Lindeijer1-17/+15
2009-03-26Fixes to file headers and header guardsBjørn Lindeijer1-4/+4
Mostly removal of branding for tmwserv related files, as was done for the eAthena client before.
2009-03-25Merge branch 'eathena/master'Bjørn Lindeijer1-1/+1
Conflicts: A lot of files.
2009-03-23Move all TMWServ-specific code to net/tmwservJared Adams1-0/+359
Also fix several instances where the same net handler was being used for both servers, and a few other related oddities.