summaryrefslogtreecommitdiff
path: root/src/game-server
AgeCommit message (Collapse)AuthorFilesLines
2008-11-11Fixed crash when a script can't be found. No idea why this could happen though.Bjørn Lindeijer1-4/+6
2008-11-06Added sending post via NPC.David Athay2-10/+7
2008-11-05Use a string util for converting strings toDavid Athay1-54/+14
integers, as per Bjorns suggestion.
2008-11-05Fix integer arguments randomly failing due to stream flags not being ↵Dennis Friis1-28/+28
cleared. To reuse a stream you must do stream.clear(); stream.str(string); for it to work.
2008-11-05Added version information to item database. Gameserver reports its local ↵Andreas Habel3-1/+50
version to account server during registration and gets notified if the version is up-to-date or outdated to prevent inconsistencies.
2008-11-04Added updating party member health.David Athay4-1/+32
2008-11-03Fixed command handler.David Athay1-5/+10
2008-11-01fixes for commandhandlerRoderic Morris3-197/+165
2008-11-01Magic implementation roadmap phase 1 and 2 (calling a script function on ↵Philipp Sehmisch3-0/+29
PGMSG_USE_SPECIAL)
2008-11-01Added script bindings for manipulating the characters experience.Philipp Sehmisch2-5/+6
2008-10-31Changed command system to handle commands without template magic.David Athay5-28/+841
2008-10-29Some code formatting cleanup and unduplicated conversion from direction toBjørn Lindeijer4-104/+149
angle.
2008-10-29replace collision detection function (by Chuck Miller)Roderic Morris3-12/+99
2008-10-27Some insignificant cleanupBjørn Lindeijer2-10/+12
2008-10-27Compile fixes and warning fixes.Bjørn Lindeijer3-10/+10
2008-10-27add effects sending system (by Chuck Miller)Roderic Morris5-19/+158
2008-10-26Some cleanup and an unsuccesful attempt at fixing a crash on map server exitBjørn Lindeijer2-9/+22
when there is no connection the account server (a different one surfaced).
2008-10-24Changed direction values to match the client's (patch by Chuck Miller)Jared Adams1-2/+3
2008-10-24Added post callback for getting post.David Athay4-15/+43
Added GM command for changing player attributes. Changed GM command to @ as '/' was already being used by client for local commands.
2008-10-23Fixed compiler warnings, including a forgotten initialization of an item'sBjørn Lindeijer2-19/+19
script pointer.
2008-10-23ignore case in map object types (by Chuck Miller)Roderic Morris1-5/+11
2008-10-22added on use scripts (by Kage_Jittai)Roderic Morris3-4/+37
2008-10-22Added enabling and disabling NPCs.David Athay2-4/+15
2008-10-22Fixed NPC id bug. Changed time between server reconnection attempts.David Athay2-2/+5
2008-10-21Fixed some compile warnings.Bjørn Lindeijer1-1/+2
2008-10-21Add limits.h where needed.Dennis Friis1-0/+1
2008-10-21Game Server now reconnects to Account Server. Some postal system bugs fixed.David Athay2-6/+25
2008-10-15Added communicating change of direction to clients.David Athay4-2/+17
2008-09-27Implemented getting the attack zone of weapons from the item database and ↵Philipp Sehmisch12-20/+185
implemented single target attacks useful for projectile weapons like bows.
2008-09-19Added post communication between chat and game servers.David Athay6-0/+185
2008-09-18Added postal system to chat server, and modified tick time.David Athay3-7/+17
2008-08-18fix compilationRoderic Morris1-2/+0
2008-08-13Corrected the distance needed to speak to NPC and trade with others Yohann Ferreira2-6/+14
characters.
2008-08-13Don't ignore monster with ID 0, since our maggot uses that.Bjørn Lindeijer1-2/+2
2008-08-10Corrected the way weapon skills is taken into account in damage calculation.Philipp Sehmisch1-3/+3
2008-08-04Fixed another crash when reading inlined object properties.Bjørn Lindeijer2-15/+31
2008-07-28fix crash from last commit, guild fixes, damage calculation fixRoderic Morris2-3/+4
2008-07-27account for weapon skills in damage calculation.Roderic Morris1-3/+4
2008-07-24Added error message when NPC is too far away.David Athay3-1/+20
2008-07-04fix errors in the last commitRoderic Morris2-2/+2
2008-07-03Removed guild stuff from game server and added some party stuff to it.David Athay6-189/+37
2008-07-03avoid map reading crash, arbitrary tile sizes, enable new mapsRoderic Morris4-62/+65
2008-05-29Fixed execution of commands even if the user has insufficient rights (patch byBjørn Lindeijer1-3/+4
rodge).
2008-05-22(no commit message)Philipp Sehmisch3-1/+18
2008-05-22Fixed compilation with GCC 4.3 (patch by rodge).Bjørn Lindeijer1-0/+1
2008-05-19Implemented NPC names. Implemented the theoretical possibility to have named ↵Philipp Sehmisch7-17/+20
monsters along the way. Note that the syntax of the LUA functions for creating NPCs has changed.
2008-05-18Provide feedback when admin commands fail (patch by rodge)Bjørn Lindeijer1-2/+24
2008-05-07Implemented script bindings for making beings talk and sending private chat ↵Philipp Sehmisch5-12/+41
messages from scripts to clients. Implemented trigger areas which are only triggered once when a being steps into them instead of every tick.
2008-05-06Implemented script trigger areas which call a script function when an object ↵Philipp Sehmisch2-0/+28
steps into them.
2008-04-23Accepted fix by rodge, getting rid of assertion failure when an admin tries toBjørn Lindeijer2-5/+6
warp to a non-existing map.