summaryrefslogtreecommitdiff
path: root/src/char
AgeCommit message (Collapse)AuthorFilesLines
2013-04-28Merge branch 'master' into testBen Longbons1-23/+3
Conflicts: src/char/char.cpp src/common/socket.cpp src/map/map.cpp
2013-04-27Enumize ItemLookBen Longbons1-3/+3
2013-04-27Force timers to be managedBen Longbons1-8/+16
2013-04-13Removed sorting of character data file. It accomplished nothing except ↵MadCamel1-24/+4
making it look pretty, and chewed an inordinate amount of CPU. Also inlined mmo_char_tostr and set things up so players end up in tulimshar if their map save location is bad.
2013-04-13Fix the bug with chest armorBen Longbons1-2/+2
2013-04-11Also implement x32 supportBen Longbons1-22/+21
2013-04-09Native amd64 supportBen Longbons2-2/+2
2013-03-01Convince skills to workBen Longbons1-9/+19
2013-02-27Fix crash in party savingBen Longbons1-1/+1
2013-02-23Replace struct dbt with typesafe std::map wrappersBen Longbons5-174/+129
Also fix broken save/accreg.txt reading.
2013-02-12Strictify timersBen Longbons3-36/+33
2013-02-07Remove some macrosBen Longbons3-9/+7
2013-02-01Remove unnecessary includes, speeding up recompilationBen Longbons4-22/+9
2013-01-17Clean up some things after declassizationBen Longbons4-0/+8
2013-01-17Remove PC/mob disguises and hard-coded classesBen Longbons1-332/+7
2013-01-09Make incoming packets read-onlyBen Longbons2-178/+108
2013-01-08Improve warning management moreBen Longbons3-15/+55
2013-01-08Improve warnings; fix const_db.txt bug.Ben Longbons1-6/+1
2013-01-07Add warning newlines; fix crash on exit.Ben Longbons2-3/+3
2013-01-07Use cxxstdioBen Longbons5-1006/+667
2012-12-24Enumify some more things ... maybe even everythingBen Longbons2-63/+72
2012-12-24Purge some unused functionsBen Longbons6-39/+4
2012-12-24Enumify option, opt1, opt2, and opt3Ben Longbons1-3/+3
2012-12-24Cleanup headers and remove all uses of va_list except loggingBen Longbons8-105/+98
2012-12-15Prepare to trim skillsBen Longbons1-6/+8
2012-12-14Some formatting fixes before I go insaneBen Longbons8-1658/+1600
Also delete the French translation from ladmin.
2012-12-12Remove guilds, finallyBen Longbons7-2144/+3
If anyone in the future wonders why I did this, just look at how many lines of code this eliminates.
2012-09-03Fix compiler errors of C++ conversionBen Longbons8-172/+224
2012-08-30Rename files for C++ conversion. Does not compile.Ben Longbons10-56/+56
After updating, you can remove these files, as shown in 'git status': Untracked files: (use "git add <file>..." to include in what will be committed) src/map/magic-interpreter-lexer.c src/map/magic-interpreter-parser.c src/map/magic-interpreter-parser.h
2011-09-10Merge commit '2c863c0d99aa3df9ef2eb4ceb112c4d946520f0a'Ben Longbons11-230/+171
2011-04-04Fix ## variablesBen Longbons1-1/+1
2011-04-04Get rid of RETCODEBen Longbons5-87/+74
2011-04-03Fix some more compiler warningsBen Longbons9-127/+90
2011-04-03Rewrite make system to be optimalBen Longbons2-16/+7
2011-03-24Fix timer bugs in previous versionBen Longbons1-1/+0
The most visible effect of this was that the map-server would never actually connect with the char-server
2011-03-24Optimize common objects, and adjust other objects accordingly.Ben Longbons6-333/+166
Major changes still need to be made to each of the servers.
2011-03-18Merge branch 'rewrite' of /home/ben/src/git/tmwAthena into rewriteBen Longbons1-35/+35
Conflicts: src/txt-converter/char/char-converter.c - fixed: delete
2011-03-18Merge branch 'master' into rewriteBen Longbons1-35/+35
2011-03-18Changes that should have been caught earlierBen Longbons1-2/+1
2011-03-17Convert Japanese comments to UTF-8, and convert French from ISO-8859-1Ben Longbons1-35/+35
char/char.c was munged as UTF-8 ladmin/ladmin.c was ISO-8859 txt-converter/char/char-converter.c was partially SHIFT-JIS (like most) but one line appears to have been in EUC-JP
2011-03-16Use makefiles correctly and expand include dirsBen Longbons5-24/+23
2011-03-02Recode from SHIFT-JIS to unicode, then undo the conversion of backslashs and ↵Ben Longbons4-191/+191
tildes.
2010-11-27Enabled IP metainformation packet.MadCamel1-8/+20
Now that mainline, pre-0.5, and 4144 clients support this packet it shouldn't really be a problem.
2010-11-12Hide char_id in guilds packets.Andrei Karas1-21/+17
2010-09-29Increase default guild member limit from 16 to 100.Andrei Karas1-2/+2
2010-08-25Revert "Fixed leaking of file descriptors in login and map server when their ↵MadCamel1-1/+2
logfiles are too large." This reverts commit 819525a030a1e66c9de6fe67b15f4f57ff932651.
2010-08-22Fixed leaking of file descriptors in login and map server when their ↵MadCamel1-2/+1
logfiles are too large.
2010-08-12Fix processing starting armor and weaponJared Adams1-37/+37
2010-05-05map-server and char-server build again on a fresh checkoutMadCamel1-1/+1
Oops :(
2010-05-05Fixed up and slightly simplified the build systemMadCamel1-1/+3
It's now possible to run 'make' in any of the src/ subdirs and have it build properly. Moved some tools including eathena-monitor to src/tools - run 'make tools' to build. CFLAGS, etc are now in the 'make.defs' file. Requires GNU make.