| Commit message (Expand) | Author | Age | Files | Lines |
* | Added StringSplitAndTrim() to Lua API | madmaxoft | 2013-09-11 | 1 | -6/+22 |
* | Implemented basic physics for projectiles. | madmaxoft | 2013-08-27 | 1 | -2/+4 |
* | cPluginManager.AddHook old-style API usage prints the stack trace. | madmaxoft | 2013-08-21 | 1 | -0/+1 |
* | Added a deprecation warning to the old style API. | madmaxoft | 2013-08-21 | 1 | -0/+1 |
* | Hook adding uses the new API. | madmaxoft | 2013-08-21 | 1 | -0/+152 |
* | Moved entities into the Entities subfolder. | madmaxoft | 2013-08-19 | 1 | -1/+1 |
* | Finished renaming cPlugin_NewLua to cPluginLua. | madmaxoft | 2013-08-19 | 1 | -17/+17 |
* | Renamed Plugin_NewLua to PluginLua. | madmaxoft | 2013-08-10 | 1 | -2/+1 |
* | LuaState refactoring: using templates for hook function calls. | madmaxoft | 2013-08-08 | 1 | -15/+15 |
* | Added cLineBlockTracer to the API | madmaxoft | 2013-08-07 | 1 | -4/+176 |
* | Fixed compilation in ManualBindings | madmaxoft | 2013-08-06 | 1 | -1/+1 |
* | cLuaState is used for pushing splits in ManualBindings | madmaxoft | 2013-08-06 | 1 | -23/+8 |
* | Merge branch 'master' into BlockTracing | madmaxoft | 2013-08-05 | 1 | -211/+349 |
|\ |
|
| * | Exported the cWorld:TryGetHeight() function | madmaxoft | 2013-08-05 | 1 | -0/+47 |
| * | Exported cWorld:DoWithEntityByID() to Lua API | madmaxoft | 2013-08-05 | 1 | -202/+293 |
| * | Alpha-sorted the manual bindings' functions. | madmaxoft | 2013-08-05 | 1 | -13/+13 |
* | | LuaState refactoring: initial part. | madmaxoft | 2013-08-04 | 1 | -9/+10 |
|/ |
|
* | WebAdmin templates can use Lua | FakeTruth | 2013-07-29 | 1 | -0/+61 |
* | Added cWorld::SetSignLines(), re-exported to Lua manually to avoid ghost return values | madmaxoft@gmail.com | 2013-06-12 | 1 | -0/+55 |
* | Added LOGWARNING() function to Lua API, as a synonym to LOGWARN() | madmaxoft@gmail.com | 2013-06-05 | 1 | -2/+2 |
* | ToLuaDoxy: initial import | madmaxoft@gmail.com | 2013-06-04 | 1 | -2/+2 |
* | Added cLuaWindow:SetOnSlotChanged(); the callback is called only for non-inventory slots | madmaxoft@gmail.com | 2013-05-31 | 1 | -7/+12 |
* | Added the OnClosing callback to cLuaWindow API | madmaxoft@gmail.com | 2013-05-30 | 1 | -0/+39 |
* | LuaWindow: Initial code, the window can be opened, but not much manipulated | madmaxoft@gmail.com | 2013-05-30 | 1 | -7/+73 |
* | Moved BlockEntities to a separate folder | madmaxoft@gmail.com | 2013-05-28 | 1 | -4/+4 |
* | Implemented droppers | madmaxoft@gmail.com | 2013-05-26 | 1 | -2/+6 |
* | Fixed the cWorld:DoWithChestAt(), DoWithDispenserAt() and DoWithFurnaceAt() callbacks binding. | madmaxoft@gmail.com | 2013-05-25 | 1 | -5/+21 |
* | Slight cleanup in the cInventory / cItemGrid API | madmaxoft@gmail.com | 2013-05-24 | 1 | -1/+1 |
* | Fixed gcc build | madmaxoft@gmail.com | 2013-04-10 | 1 | -10/+12 |
* | Added cItemGrid to represent an XY grid of items; converted chests to use cItemGrid. | madmaxoft@gmail.com | 2013-04-10 | 1 | -0/+42 |
* | Plugins can now bind console commands | madmaxoft@gmail.com | 2013-02-15 | 1 | -86/+159 |
* | Fixed ASSERT / VERIFY mismatch in ManualBindings' error handling | madmaxoft@gmail.com | 2013-02-10 | 1 | -4/+4 |
* | Added a GetClassStatic function to all entities, as well as cFurnaceEntity, cChestEntity and cWorld | faketruth | 2013-02-03 | 1 | -377/+392 |
* | Fixed GCC error in ManualBindings | madmaxoft@gmail.com | 2013-02-02 | 1 | -1/+1 |
* | Moved command API into cPluginManager. | madmaxoft@gmail.com | 2013-02-01 | 1 | -16/+126 |
* | Added the HOOK_BLOCK_TO_PICKUPS hook that fires when a block is dug up and should be converted to pickups. | madmaxoft@gmail.com | 2013-01-27 | 1 | -1/+1 |
* | Merged branch "branches/hooks" into "trunk". | madmaxoft@gmail.com | 2013-01-12 | 1 | -13/+4 |
* | Fixed manual bindings' ForEachXXX mapping not checking the object instance for validity. | madmaxoft@gmail.com | 2012-10-21 | 1 | -0/+5 |
* | Completely removed support for old style Lua plugins (can use both Plugin and NewPlugin in settings.ini for now) | faketruth | 2012-10-14 | 1 | -6/+16 |
* | Got rid of "self" in plugins, which is deprecated anyway | faketruth | 2012-10-11 | 1 | -1/+1 |
* | Can now send usertypes (cPlayer, cEntity, cCuboid) along with a plugin:Call() | faketruth | 2012-10-11 | 1 | -2/+25 |
* | Added functionality so one plugin can call functions on another plugin :D | faketruth | 2012-10-10 | 1 | -0/+85 |
* | Source files cleanup: The rest of the files renamed. | madmaxoft@gmail.com | 2012-09-24 | 1 | -10/+10 |
* | Exported cWorld::DoWithChestAt to Lua | faketruth | 2012-09-02 | 1 | -0/+93 |
* | Added plugin name to deprecation messages | madmaxoft@gmail.com | 2012-08-23 | 1 | -1/+4 |
* | Added a RateCompareString function to StringUtils | faketruth | 2012-08-23 | 1 | -82/+94 |
* | WebAdmin should not cause crashes anymore | faketruth | 2012-08-22 | 1 | -8/+19 |
* | Added the cWorld::DoWithPlayer() function and exported it in the Lua API. Removed the obsolete cWorld::GetPlayer() function. | madmaxoft@gmail.com | 2012-07-02 | 1 | -0/+92 |
* | Removed the deprecated GetBlockEntity(), added several enumerators to replace it. | madmaxoft@gmail.com | 2012-06-17 | 1 | -6/+10 |
* | Macro-ized the ForEachSomethingInChunk Lua glue code (will soon be used for block entities, too) | madmaxoft@gmail.com | 2012-06-17 | 1 | -92/+95 |
* | Exported cWorld::ForEachEntity and cWorld::ForEachEntityInChunk; no idea if they actually work | madmaxoft@gmail.com | 2012-06-16 | 1 | -28/+132 |
* | Rewritten ForEach using #define-s, new ones can be added as a simple one-liner | madmaxoft@gmail.com | 2012-06-15 | 1 | -166/+86 |
* | Attempt to bring sanity to newlines across systems. | cedeel@gmail.com | 2012-06-14 | 1 | -614/+614 |
* | Added Lua function cRoot:ForEachWorld(), removed the obsolete cRoot:GetWorld() method (both C++ and Lua) | madmaxoft@gmail.com | 2012-06-02 | 1 | -3/+94 |
* | Moved the commands /coords /viewdistance and /regeneratechunks from cServer.cpp to the Core plugin | faketruth | 2012-04-11 | 1 | -0/+6 |
* | git-svn-id: http://mc-server.googlecode.com/svn/trunk@281 0a769ca7-a7f5-676a-18bf-c427514a06d6 | faketruth | 2012-02-16 | 1 | -1/+1 |
* | Can now pass any argument to cWorld:ForEachPlayer in Lua! But I'm not even using it.. lol | faketruth | 2012-02-15 | 1 | -18/+46 |
* | Got rid of cWorld::GetAllPlayers() and implemented ForEachPlayer() more or less in Lua | faketruth | 2012-02-14 | 1 | -5/+61 |
* | Introducing StringUtils - the place to be if you are a generic string routine :) No more sprintf()! | madmaxoft@gmail.com | 2012-02-01 | 1 | -2/+76 |
* | Changed how Lua handles the (Post)Params in the HTTPRequest of a WebPlugin | faketruth | 2012-01-31 | 1 | -0/+59 |
* | Added a WebAdmin interface to view users their groups, and the permissions of groups. | faketruth | 2012-01-30 | 1 | -0/+22 |
* | VC2008 / VC2010: Enabled precompiled header through Globals.h; the header included in every module in the project. Compilation optimization. | madmaxoft@gmail.com | 2012-01-29 | 1 | -1/+3 |
* | Converted entire Core plugin including WebAdmin interface to new plugin method/system/thingy and sexyfied it. | faketruth | 2012-01-28 | 1 | -0/+47 |
* | MCServer c++ source files | faketruth | 2011-10-03 | 1 | -0/+229 |