Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-04-22 | Use strict ID types | Ben Longbons | 1 | -65/+84 | |
Possibly some missing for the far side of the network. AccountId and BlockId are still terribly entangled. | |||||
2014-04-19 | Wouldn't it be nice to have some integers too? | Ben Longbons | 1 | -1/+1 | |
2014-04-14 | Ditch gcc 4.6 support | Ben Longbons | 1 | -295/+295 | |
2014-04-13 | "Fix" Itka | Ben Longbons | 1 | -5/+1 | |
2014-04-09 | Add all the missing copyright headers | Ben Longbons | 1 | -0/+22 | |
2014-04-04 | Fix travis | Ben Longbons | 1 | -0/+1 | |
2014-04-01 | Add script warnings about labels | Ben Longbons | 1 | -6/+25 | |
2014-03-31 | Check the equip index array | Ben Longbons | 1 | -5/+11 | |
2014-03-31 | Be stricter about most arrays | Ben Longbons | 1 | -20/+20 | |
2014-03-25 | Add deprecation warnings for script syntax changes | Ben Longbons | 1 | -5/+38 | |
2014-03-25 | fix script/magic interaction | Ben Longbons | 1 | -2/+2 | |
2014-03-24 | Implement new magic frontend using sexpr | Ben Longbons | 1 | -7/+7 | |
2014-03-16 | Clean up header organization | Ben Longbons | 1 | -9/+12 | |
2014-03-15 | Remove unused fields to shrink character struct | Ben Longbons | 1 | -21/+1 | |
2014-03-15 | Split out the keys from character data to have better paging performance | Ben Longbons | 1 | -4/+4 | |
2014-03-15 | Allow any script variable to be accessed from magic (mostly) | Ben Longbons | 1 | -5/+49 | |
2014-02-22 | Make mapflags bitmask instead of bitfield | Ben Longbons | 1 | -17/+9 | |
2014-02-13 | Name and number mapflags better | Ben Longbons | 1 | -174/+6 | |
2014-02-08 | Implement AString | Ben Longbons | 1 | -18/+19 | |
2014-02-06 | Wrap remaining FDs in a class | Ben Longbons | 1 | -6/+8 | |
2014-02-04 | Convert fd to Session* where meaningful | Ben Longbons | 1 | -2/+2 | |
2014-01-26 | Also do db/const.txt and data/resnametable.txtv14.1.27 | Ben Longbons | 1 | -10/+10 | |
2014-01-25 | Implement unified config parsing (mostly) | Ben Longbons | 1 | -17/+15 | |
2013-12-21 | fix travis errors | Ben Longbons | 1 | -1/+1 | |
2013-12-21 | Add mapexit as a script command | Ben Longbons | 1 | -0/+9 | |
It's not safe to call GM commands without an attached player. | |||||
2013-11-15 | Another step towards proper header ordering | Ben Longbons | 1 | -1/+1 | |
2013-11-15 | Use new IO classes | Ben Longbons | 1 | -15/+12 | |
2013-11-09 | Fixes issue with getequipid(equip_arrow) | wushin | 1 | -1/+2 | |
2013-10-22 | Ignore hidden GMs when checking users in an area | Ben Longbons | 1 | -1/+5 | |
2013-10-12 | Actually kick the player when their sex is changed by a script | Ben Longbons | 1 | -10/+0 | |
2013-10-12 | Disallow unchecked being casts | Ben Longbons | 1 | -19/+19 | |
Despite the fact that that's what the code always did, it was sometimes wrong. | |||||
2013-10-10 | Enumify sex | Ben Longbons | 1 | -6/+6 | |
It's amazing some of this code ever worked ... | |||||
2013-10-05 | Split string header into pieces | Ben Longbons | 1 | -0/+5 | |
2013-09-14 | Warn about conditional return and add script dumper | Ben Longbons | 1 | -2/+132 | |
The problem is that since 'if' is a function, the 'return' action is executed *before* the recursive return. This messes up the stack. Sooner or later I'll be able to fix the scripting language properly, but it's probably a good idea to goto L_Return to clear variables anyway. | |||||
2013-09-09 | Use IP4 classes and rename conf variables | Ben Longbons | 1 | -4/+4 | |
2013-09-07 | Increase max script array size from 128 to 256 | Ben Longbons | 1 | -3/+3 | |
2013-08-20 | Refactor npc event timers to have an expired state | Ben Longbons | 1 | -1/+1 | |
This is needed for setnpctimer 0; to work in the ultimate OnTimer#: label. | |||||
2013-08-19 | Add dumpers for the rest of the stack types | Ben Longbons | 1 | -2/+10 | |
2013-08-19 | Make some npc errors better | Ben Longbons | 1 | -1/+11 | |
2013-08-01 | Poison std::string and use the various string classes | Ben Longbons | 1 | -274/+258 | |
2013-06-27 | Make callfunc/callsub in an if an error | Ben Longbons | 1 | -2/+10 | |
Also make all errors fatal and clean up messages a bit. | |||||
2013-06-26 | Addition is NOT symmetrical, internally | Ben Longbons | 1 | -3/+2 | |
2013-06-26 | Less UB | Ben Longbons | 1 | -0/+2 | |
2013-06-26 | Add missing PARAM bytecode handler | Ben Longbons | 1 | -2/+8 | |
2013-06-25 | Fix bugs | Ben Longbons | 1 | -192/+212 | |
2013-06-23 | add new stuff stuff (with tests!), poison memcmp and strncpy | Ben Longbons | 1 | -2/+2 | |
2013-06-18 | Also poison memcpy, memmove, and memset | Ben Longbons | 1 | -11/+9 | |
2013-06-11 | Allegedly remove all manual memory management | Ben Longbons | 1 | -1506/+1230 | |
2013-05-25 | Switch block_list and subclasses to dumb_ptr | Ben Longbons | 1 | -114/+127 | |
Now we're well-defined, since we're actually calling ctors and dtors. Most of this code will not survive long ... | |||||
2013-05-23 | Make block_list a base class | Ben Longbons | 1 | -28/+28 | |