| Commit message (Expand) | Author | Files | Lines |
2014-07-17 | Fixed basic whitespace problems. | madmaxoft | 1 | -12/+16 |
2014-07-16 | Store properties as Json::Value | Tiger Wang | 1 | -1/+6 |
2014-07-14 | Player properties are now retrieved | Tiger Wang | 1 | -1/+1 |
2014-04-13 | Added Yggdrasil Authentication System | daniel0916 | 1 | -2/+2 |
2014-02-15 | Removed the unnecessary LoopPlayersAndBroadcastChat() functions. | madmaxoft | 1 | -11/+9 |
2014-02-15 | Implemented cCompositeChat. | madmaxoft | 1 | -2/+4 |
2014-02-07 | Improved chat messaging functions | Tiger Wang | 1 | -9/+10 |
2014-02-06 | Added more chat functions | Tiger Wang | 1 | -1/+3 |
2014-02-05 | Improvements: | STRWarrior | 1 | -0/+3 |
2014-02-04 | Added more SendMessageXXX() functions | Tiger Wang | 1 | -3/+11 |
2013-12-11 | Added a HOOK_WORLD_STARTED hook and a cRoot::CreateAndInitializeWorld function for plugins. | STRWarrior | 1 | -0/+1 |
2013-11-24 | Moved source to src | Alexander Harkness | 1 | -0/+0 |
2013-11-22 | Added cRoot:GetFurnaceFuelBurnTime() to Lua API. | madmaxoft | 1 | -0/+4 |
2013-11-22 | Changed cRoot:GetFurnaceRecipe() Lua binding signature. | madmaxoft | 1 | -1/+1 |
2013-10-26 | Changed "cIniFile IniFile" to cIniFile & IniFile" | STRWarrior | 1 | -1/+1 |
2013-10-26 | Both the LoadWorlds() function and cAuthenticator now use the cIniFile object from the Root::Start() function. | STRWarrior | 1 | -1/+1 |
2013-10-23 | Removed cRoot:m_PrimaryServerVersion from Lua API. | madmaxoft | 1 | -5/+5 |
2013-10-08 | Implemented the two memory-statistics functions in cRoot. | madmaxoft | 1 | -1/+11 |
2013-09-27 | Rewritten HTTPServer to split into cHTTPConnection, cHTTPRequest and cHTTPResponse classes. | madmaxoft | 1 | -2/+2 |
2013-09-24 | Implemented basic HTTP message header parsing. | madmaxoft | 1 | -0/+2 |
2013-08-17 | Added cRoot:BroadcastChat() to the Lua API. | madmaxoft | 1 | -0/+3 |
2013-08-11 | Each world now ticks in a separate thread. | madmaxoft | 1 | -2/+3 |
2013-06-29 | Advanced RCON: Command output is sent to the RCON client. | madmaxoft@gmail.com | 1 | -11/+41 |
2013-04-27 | Fixed a deadlock | madmaxoft@gmail.com | 1 | -17/+24 |
2013-02-15 | Plugins can now bind console commands | madmaxoft@gmail.com | 1 | -5/+12 |
2013-01-12 | Merged branch "branches/hooks" into "trunk". | madmaxoft@gmail.com | 1 | -8/+8 |
2012-11-20 | Added primary server version interface to cRoot and "primaryserverversion" console command. | madmaxoft@gmail.com | 1 | -0/+3 |
2012-10-31 | Added the [Server].PrimaryServerVersion setting to settings.ini; 1.4.2 gets the correct version | madmaxoft@gmail.com | 1 | -0/+3 |
2012-09-24 | Source files cleanup: The rest of the files renamed. | madmaxoft@gmail.com | 1 | -1/+1 |
2012-08-23 | Added a RateCompareString function to StringUtils | faketruth | 1 | -1/+4 |
2012-08-22 | Chat history limit on the WebAdmin chat | faketruth | 1 | -2/+3 |
2012-08-18 | Chat packet handled in the new way; fixed missing packet sending for inventory slot. | madmaxoft@gmail.com | 1 | -1/+1 |
2012-08-15 | Console command "chunkstats" now lists each world and also totals | madmaxoft@gmail.com | 1 | -0/+3 |
2012-07-15 | World threads are stopped before the plugin mgr for clean exit (FS #228) | madmaxoft@gmail.com | 1 | -0/+4 |
2012-06-14 | Attempt to bring sanity to newlines across systems. | cedeel@gmail.com | 1 | -109/+109 |
2012-06-12 | Updated the crafting recipes architecture to better support crafting hooks. Removed the old recipe file and implementation altogether. | madmaxoft@gmail.com | 1 | -3/+0 |
2012-06-05 | New hook, E_PLUGIN_CHUNK_GENERATED, called after each chunk is generated (the chunk is already present in cWorld) | madmaxoft@gmail.com | 1 | -2/+7 |
2012-06-04 | Added the new recipe parser, parsing the crafting.txt file. Included are a few recipes. The old parser still works, but will be replaced soon. | madmaxoft@gmail.com | 1 | -18/+21 |
2012-06-02 | Added Lua function cRoot:ForEachWorld(), removed the obsolete cRoot:GetWorld() method (both C++ and Lua) | madmaxoft@gmail.com | 1 | -9/+13 |
2012-05-25 | Merged the composable_generator branch into the trunk | madmaxoft@gmail.com | 1 | -0/+1 |
2012-03-10 | Fixed a few obsoleted functions | madmaxoft@gmail.com | 1 | -0/+8 |
2012-03-09 | cClientHandles have a unique ID now to distinguish them | faketruth | 1 | -2/+2 |
2012-03-07 | Fixed bug where cPlayer's cClientHandle was used after cPlayer was destroyed http://forum.mc-server.org/showthread.php?tid=380 | faketruth | 1 | -1/+1 |
2012-02-22 | Added a crude way of disabling redstone. It's necessary though, redstone is completely broken, crashes the server all the time | faketruth | 1 | -0/+1 |
2012-02-13 | Rewritten most of the code for multithreading; still not 100%, but getting there. If this commit proves to be too problematic, we can always undo it. | madmaxoft@gmail.com | 1 | -2/+5 |
2012-02-08 | Added total chunk count to webadmin | madmaxoft@gmail.com | 1 | -0/+2 |
2012-02-01 | Rewritten cAuthenticator to make use of the new cIsThread architecture - now authentication runs in a single separate thread for all clients; | madmaxoft@gmail.com | 1 | -10/+32 |
2011-11-01 | You can now run multiple worlds by defining them in settings.ini . However there's no way to change worlds on the fly yet | faketruth | 1 | -2/+11 |
2011-10-26 | Fixed bug in cMakeDir where it would only create directories named "world" | faketruth | 1 | -1/+3 |
2011-10-03 | MCServer c++ source files | faketruth | 1 | -0/+52 |