summaryrefslogtreecommitdiffstats
path: root/Server/Plugins/Debuggers/Debuggers.lua (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-05-08Use Vector3 for cLineBlockTracer and cBlockTracer (#4715)mBornand1-9/+89
* cLineBlockTracer uses Vector
2020-04-17More Vector3 in cBlockHandler (#4644)Mattes D1-1/+1
* cBlockHandler.OnUpdate uses Vector3 params. Also slightly changed how block ticking works.
2020-04-14Bindings: Allow coercion between Vector3 subtypes. (#4646)Mattes D1-0/+20
In manually bound functions, allows one to use any Vector3<T> value, as well as a {x, y, z} table, in Lua as any Vector3<T> parameter. Has example in Debuggers' /vector command. Unfortunately doesn't work in auto-bindings.
2020-04-12Fixed entity teleport for just-spawned entities.Mattes D1-0/+21
Includes a test code in the Debuggers plugin - throwing a cake-as-fallingblock.
2020-04-09Falling blocks can now be spawned at any position. (#4620)Mattes D1-0/+19
* Falling blocks can now be spawned at any position. * Added a /cake command to Debuggers that throws a cake in a nice slow arc. * Fixed regular falling blocks.
2020-03-31Added a /boom command to Debuggers. (#4592)Mattes D1-0/+12
2017-08-24Minor changes (#3909)mathiascode1-8/+8
2017-06-09Fixed handling Lua errors in nested callbacks (#3755)Mattes D1-0/+12
2017-05-27Debuggers: Added the "/come" command to test mob pathfinding. (#3734)Mattes D1-0/+50
2017-05-11Tracer replacement (#3704)Mattes D1-0/+72
* Replaced cTracer usage with cLineBlockTracer. * Exported new cLineBlockTracer utility functions to Lua API.
2017-04-26Build Lua in C++ mode, use exceptions for error-raising. (#3680)Mattes D1-0/+10
Fixes #3678 .
2017-01-28Debuggers: Added /clientversion command to display protocol version.Mattes D1-0/+9
2017-01-18Debuggers: Added a deadlock simulation command.Mattes D1-0/+28
2017-01-01Debuggers: PluginStats are now output only on request. (#3513)Mattes D1-51/+15
The stats are no longer output on plugin startup, instead there is a new console command "pluginstats" for that.
2016-12-09Fix meta mirror (#3470)Mattes D1-0/+18
2016-11-26Debuggers: Added commands to investigate item's custom Lua properties.Mattes D1-0/+47
2016-11-26Debuggers: Added commands to investigate item's custom name.Mattes D1-0/+47
2016-11-26Debuggers: Added commands to investigate item's Lore.Mattes D1-0/+48
2016-10-27LuaJson: Report serialization errors instead of crashing.Mattes D1-124/+129
2016-08-23cUrlClient: Exported to Lua API.Mattes D1-1/+80
2016-07-10Fixed Lua Json serializing a bool.Mattes D1-4/+6
Fixes #3257.
2016-06-27Changed world tasks to use cLuaState::cCallback.Mattes D1-2/+2
2016-06-05Bindings: Fixed cBoundingBox API.Mattes D1-0/+46
2016-05-31LuaState: Inter-plugin calls now support simple tables. (#3220)Mattes D1-0/+57
2016-05-29Added GetTeamNames to cScoreboard (#3217)PlasmaPower1-0/+13
Resolves #3210
2016-05-141.9 / 1.9.2 / 1.9.3 / 1.9.4 protocol support (#3135)Pokechu221-0/+28
* Semistable update to 15w31a I'm going through snapshots in a sequential order since it should make things easier, and since protocol version history is written. * Update to 15w34b protocol Also, fix an issue with the Entity Equipment packet from the past version. Clients are able to connect and do stuff! * Partially update to 15w35e Chunk data doesn't work, but the client joins. I'm waiting to do chunk data because chunk data has an incomplete format until 15w36d. * Add '/blk' debug command This command lets one see what block they are looking at, and makes figuring out what's supposed to be where in a highly broken chunk possible. * Fix CRLF normalization in CheckBasicStyle.lua Normally, this doesn't cause an issue, but when running from cygwin, it detects the CR as whitespace and creates thousands of violations for every single line. Lua, when run on windows, will normalize automatically, but when run via cygwin, it won't. The bug was simply that gsub was returning a replaced version, but not changing the parameter, so the replaced version was ignored. * Update to 15w40b This includes chunk serialization. Fully functional chunk serialization for 1.9. I'm not completely happy with the chunk serialization as-is (correct use of palettes would be great), but cuberite also doesn't skip sending empty chunks so this performance optimization should probably come later. The creation of a full buffer is suboptimal, but it's the easiest way to implement this code. * Write long-by-long rather than creating a buffer This is a bit faster and should be equivalent. However, the code still doesn't look too good. * Update to 15w41a protocol This includes the new set passengers packet, which works off of the ridden entity, not the rider. That means, among other things, that information about the previously ridden vehicle is needed when detaching. So a new method with that info was added. * Update to 15w45a * 15w51b protocol * Update to 1.9.0 protocol Closes #3067. There are still a few things that need to be worked out (picking up items, effects, particles, and most importantly inventory), but in general this should work. I'll make a few more changes tomorrow to get the rest of the protocol set up, along with 1.9.1/1.9.2 (which did make a few changes). Chunks, however, _are_ working, along with most other parts of the game (placing/breaking blocks). * Fix item pickup packet not working That was a silly mistake, but at least it was an easy one. * 1.9.2 protocol support * Fix version info found in server list ping Thus, the client reports that it can connect rather than saying that the server is out of date. This required creating separate classes for 1.9.1 and 1.9.2, unfortunately. * Fix build errors generated by clang These didn't happen in MSVC. * Add protocol19x.cpp and protocol19x.h to CMakeLists * Ignore warnings in protocol19x that are ignored in protocol18x * Document BLOCK_FACE and DIG_STATUS constants * Fix BLOCK_FACE links and add separate section for DIG_STATUS * Fix bat animation and object spawning The causes of both of these are explained in #3135, but the gist is that both were typos. * Implement Use Item packet This means that buckets, bows, fishing rods, and several other similar items now work when not looking at a block. * Handle DIG_STATUS_SWAP_ITEM_IN_HAND * Add support for spawn eggs and potions The items are transformed from the 1.9 version to the 1.8 version when reading and transformed back when sending. * Remove spammy potion debug logging * Fix wolf collar color metadata The wrong type was being used, causing several clientside issues (including the screen going black). * Fix 1.9 chunk sending in the nether The nether and the end don't send skylight. * Fix clang build errors * Fix water bottles becoming mundane potions This happened because the can become splash potion bit got set incorrectly. Water bottles and mundane potions are only differentiated by the fact that water bottles have a metadata of 0, so setting that bit made it a mundane potion. Also add missing break statements to the read item NBT switch, which would otherwise break items with custom names and also cause incorrect "Unimplemented NBT data when parsing!" logging. * Copy Protocol18x as Protocol19x Aditionally, method and class names have been swapped to clean up other diffs. This commit is only added to make the following diffs more readable; it doesn't make any other changes (beyond class names). * Make thrown potions use the correct appearence This was caused by potions now using metadata. * Add missing api doc for cSplashPotionEntity::GetItem * Fix compile error in SplashPotionEntity.cpp * Fix fix of cSplashPotionEntity API doc * Temporarilly disable fall damage particles These were causing issues in 1.9 due to the changed effect ID. * Properly send a kick packet when connecting with an invalid version This means that the client no longer waits on the server screen with no indication whatsoever. However, right now the server list ping isn't implemented for unknown versions, so it'll only load "Old" on the ping. I also added a GetVarIntSize method to cByteBuffer. This helps clean up part of the code here (and I think it could clean up other parts), but it may make sense for it to be moved elsewhere (or declared in a different way). * Handle server list pings from unrecognized versions This isn't the cleanest way of writing it (it feels odd to use ProtocolRecognizer to send packets, and the addition of m_InPingForUnrecognizedVersion feels like the wrong technique), but it works and I can't think of a better way (apart from creating a full separate protocol class to handle only the ping... which would be worse). * Use cPacketizer for the disconnect packet This also should fix clang build errors. * Add 1.9.3 / 1.9.4 support * Fix incorrect indentation in APIDesc
2016-03-21Revert "Lua callback"Mattes D1-2/+2
2016-03-17Changed world tasks to use cLuaState::cCallback.Mattes D1-2/+2
2016-01-29MCServer to CuberiteMathias1-1/+1
2016-01-01Renamed leftover strings to Cuberite / Server, as needed.Mattes D1-1/+1
Also upgraded the user setting file for MSVC to 2013.
2015-12-28Debuggers plugin: Added "uuid" console command.Mattes D1-0/+31
2015-12-25Added the cUrlParser class, exported to Lua API.Mattes D1-0/+41
2015-12-24Added a Json parser and serializer to Lua API.Mattes D1-0/+28
2015-10-21Debuggers: Added a plugin channel test with funny chars in data.Mattes D1-0/+11
2015-09-05Renamed output directory to ServerMattes D1-0/+0
2015-06-04Debuggers: Added a LineBlockTracer console test command.Mattes D1-0/+111
Ref.: #2161
2015-05-07Fixed inter-plugin calls.Mattes D1-18/+10
When an inter-plugin call failed due to function not found, the server would maul the LuaState and "yield". Fixes #1959.
2015-04-23Refactored ManualBindings' callbacks using templates.Mattes D1-1/+1
This is a bit easier to read, has better error reporting and fixes a few subtle bugs. Fixes #1889.
2015-04-23Implemented cPluginManager:DoWithPlugin(), fixed ForEachPlugin().Mattes D1-0/+34
Both functions are exported as static.
2015-04-11cFile:ChangeFileExt now accepts extensions with leading dot, too.Mattes D1-0/+9
2015-04-11Added more cFile API functions.Mattes D1-5/+20
GetLastModificationTime, GetPathSeparator() and GetExecutableExt()
2015-04-10Added proper implementation of cFile::ChangeFileExt().Mattes D1-0/+13
2015-03-18Debuggers: Added inheritance testing.Mattes D1-0/+75
This allows detailed testing of #1789 - bad Lua bindings for class inheritance.
2015-03-18Debuggers: Added a cBoundingBox test.Mattes D1-0/+55
2015-03-01Debuggers plugin: Disabled WECUI manipulation.Mattes D1-1/+2
2015-02-21Added cCryptoHash namespace to Lua API.Mattes D1-12/+48
2015-01-27Debuggers: Logging the os.clock for console-scheduled tasks.Matyas Dolak1-3/+6
This performs the test for #1717.
2014-12-12Exported cWorld:PrepareChunk to Lua API, test in Debuggers.Mattes D1-1/+6
2014-12-11Debuggers: Added loadchunk and preparechunk commands.Mattes D1-0/+77
preparechunk is not working yet because the required API is missing.
2014-12-11Debuggers: Changed to use Info.lua file.Mattes D1-33/+9
2014-10-13cWorld: Fixed scheduler.Mattes D1-3/+16
Fixes #1534. Added a test case into the Debuggers plugin.
2014-09-17Fixed wrong url in the debuggers pluginHowaner1-1/+1
2014-09-03Debuggers: Reviewed and fixed the Pickups and Poof commands.madmaxoft1-10/+17
Now they're confirmed working.
2014-09-03Debuggers: Added a test code for ForEachEntityInBox().madmaxoft1-0/+49
Currently untested, may not run, may crash.
2014-09-02Added a custom name test to the debuggers plugin.Howaner1-0/+17
2014-08-27Debuggers: Added a testcase for OnProjectileHitBlock.Mattes D1-0/+13
This is a test for #1326.
2014-08-09Debuggers: Disabled UUID and RankMgr tests.madmaxoft1-2/+2
2014-08-08Debuggers: Simple cRankManager test case.madmaxoft1-0/+13
2014-08-03Debuggers: Added a Name-from-UUID cMojangAPI test.madmaxoft1-0/+7
2014-07-31MojangAPI: Added a UseCachedOnly param to GetUUIDsFromPlayerNames().madmaxoft1-1/+31
2014-07-30Debuggers: Updated for the new cMojangAPI changes.madmaxoft1-1/+10
2014-07-28Debuggers: Added an example for cClientHandle:GetUUIDsFromPlayerNames().madmaxoft1-0/+31
2014-07-18Debuggers: Optimized and commented the /rmitem handler.madmaxoft1-4/+8
2014-07-18Added RemoveItem() function to the player inventory.Howaner1-4/+36
2014-07-10Debuggers: Added forced chunk ticking test.madmaxoft1-0/+28
Ref.: #1160
2014-06-24Debuggers: Fixed the Blaze rod query tool.madmaxoft1-2/+2
2014-06-02Added OnProjectileHitBlock example in DebuggersSTRWarrior1-1/+13
2014-04-02Debuggers: Added a Base64 API roundtrip test.madmaxoft1-4/+23
2014-03-31Console logging supports cCompositeChat as its parameters.madmaxoft1-0/+9
2014-03-28Debuggers: Deactivated the chunk generator callback.madmaxoft1-1/+3
2014-03-18Debuggers: Using binary file mode for .schematics.madmaxoft1-2/+2
2014-03-15Debuggers: Added a test for WE selection API.madmaxoft1-1/+39
This tests mc-server/WorldEdit#34.
2014-03-07Debuggers: Added a test of the cBlockArea string-serialization.madmaxoft1-0/+38
2014-03-04Debuggers: Added simple test for cCompositeChat.madmaxoft1-0/+15
2014-02-18Debuggers: Added a test for the cWorld:SetAreaBiome() function.madmaxoft1-0/+40
2014-02-15Debuggers: Added code to test cCompositeChat functionality.madmaxoft1-0/+23
Ref.: #678
2014-02-15Debuggers: Added a WebAdmin StressTest page.madmaxoft1-13/+76
This page reloads content from the WebAdmin as fast as possible.
2014-02-11Debuggers: Updated messaging functionsmadmaxoft1-4/+9
2014-02-10Debuggers: Updated to reflect the new API.madmaxoft1-15/+9
2014-02-09Debuggers: Added a cLuaChunkStay test code.madmaxoft1-0/+72
2014-02-09Debuggers: Disabled testing plugin calls.madmaxoft1-1/+1
2014-01-21Implemented cPluginManager:CallPlugin() API.madmaxoft1-1/+34
This function supersedes cPlugin:Call(), is safer to use in regards to multithreading and once again removes the need for the cPlugin class being exported at all.
2014-01-19Changed the cWorld::ScheduleTask() signature.madmaxoft1-0/+40
Now it takes the delay in ticks as an argument, and a cTask descendant as the task to run. Lua API has been updated similarly.
2014-01-09Debuggers: Test code for WECUI plugin messaging.madmaxoft1-0/+17
2014-01-07Plugin messages are received and handed to plugins.madmaxoft1-23/+12
Note that MCS doesn't currently handle any channel registrations, this will come later on.
2014-01-05Fixed cPluginManager:AddHook() binding.madmaxoft1-0/+19
Fixes #401. Old formats are still accepted, for compatibility reasons.
2013-12-29Added HOOK_PLUGINS_LOADED.madmaxoft1-0/+9
This fixes #482.
2013-11-22Added cFile:GetFolderContents().madmaxoft1-0/+11
Fix 162.
2013-11-22Added cRoot:GetFurnaceFuelBurnTime() to Lua API.madmaxoft1-1/+20
2013-11-22Debuggers: Added a test harness for cRoot:GetFurnaceRecipe().madmaxoft1-0/+21
The "/fr" command lists the furnace recipe for the currently held item.
2013-11-20Debuggers: Test harness for cWorld:ForEachBlockEntityInChunk().madmaxoft1-19/+59
The fill command will fill all empty slots in block entities with containment with gold nuggets, one per slot.
2013-11-16updated plugin again...Daniel O'Brien1-1/+1
2013-11-16updated pluginDaniel O'Brien1-1/+1
2013-11-16removed SpendExperience and changed AddExperience to handle removing XpDaniel O'Brien1-1/+1
2013-11-15finished #143 I believeDaniel O'Brien1-0/+11
2013-11-15added cProtocol function to pass xp to clientDaniel O'Brien1-1/+1
2013-11-15Debuggers: Removed the old OnChunkGenerated code testing the cBlockArea writing.madmaxoft1-15/+0
2013-11-15Debuggers: Added the BlockEntity test harness when generating chunks.madmaxoft1-0/+22
2013-11-14cProtocol add SendExperience() and debuggingDaniel O'Brien1-0/+6
2013-10-28Debuggers: Fixed after the cWindow API change.madmaxoft1-2/+2
2013-09-07Implemented ghast fireball and firecharge projectilesmadmaxoft1-0/+16
2013-09-07Debuggers plugin: Removed unneeded globalmadmaxoft1-4/+2
2013-08-22Debuggers: added a test cmd to spawn arrows.madmaxoft1-0/+18
2013-08-21Updated the Debuggers plugin to the #121 API.madmaxoft1-9/+33
2013-08-19Debuggers: Added continuous hunger reporting.madmaxoft1-20/+49
Showcases the OnWorldTick() hook to fire events at regular intervals. Will be used for debugging the issues related to hyper-hunger.
2013-08-19Debuggers plugin: Added details about pickups to the "/le" command.madmaxoft1-1/+7
2013-08-18Added cWindow property manipulation API.madmaxoft1-0/+9
Now enchantment table and furnace properties can be set by a plugin
2013-08-07Debuggers plugin: added the "/spidey" command.madmaxoft1-11/+43
This showcases the cLineBlockTracer functionality exposed to Lua.
2013-08-02Implemented OnPlayerRightClickingEntity() hookmadmaxoft1-1/+11
Fixes FS 425
2013-07-30Changed name and put the whitespace back, as per xoft's suggestion.Alexander Harkness1-1/+11
2013-07-30Removed old features and fix #25.Alexander Harkness1-55/+0
2013-07-29Changed everyting to Unix line endings.Alexander Harkness1-744/+744
2013-07-28Debuggers: added the /starve and /fl (foodlevel) commands for manipulating player food levelmadmaxoft1-0/+27
2013-07-12First implementation of movement-related hunger and APImadmaxoft@gmail.com1-2/+41
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1673 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-07-07Fixed sprinting in 1.6.1, made speeds available through API; fixed messages containing quotes.madmaxoft@gmail.com1-0/+36
Fixes FS #415 git-svn-id: http://mc-server.googlecode.com/svn/trunk@1660 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-07-01Added DamageType translation to APImadmaxoft@gmail.com1-1/+1
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1639 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-06-22Plugins can modify message in the OnChat() hook handler.madmaxoft@gmail.com1-0/+9
FS #376 git-svn-id: http://mc-server.googlecode.com/svn/trunk@1622 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-06-04Added cItem copy-constructor to Lua API, made cItem::IsEqual() and IsStackable() enchantment-awaremadmaxoft@gmail.com1-3/+3
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1546 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-06-02LuaWindow: Fixed memory leaks with unclosed windowsmadmaxoft@gmail.com1-3/+3
A player disconnecting will now force all windows to close, not respecting any plugin's overrides. http://forum.mc-server.org/showthread.php?tid=1146&pid=8350#pid8350 git-svn-id: http://mc-server.googlecode.com/svn/trunk@1543 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-06-02Added the possibility to specify enchantments by name in the constructor and AddFromString() functionmadmaxoft@gmail.com1-0/+2
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1542 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-06-02Enchantments are now stored in Anvil world and in player inventorymadmaxoft@gmail.com1-1/+9
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1541 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-06-02Enchantments: API and sending to clientmadmaxoft@gmail.com1-0/+1
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1539 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-05-31Added cLuaWindow:SetOnSlotChanged(); the callback is called only for non-inventory slotsmadmaxoft@gmail.com1-0/+6
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1535 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-05-30Added the OnClosing callback to cLuaWindow APImadmaxoft@gmail.com1-0/+9
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1534 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-05-30LuaWindow: Initial code, the window can be opened, but not much manipulatedmadmaxoft@gmail.com1-5/+64
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1532 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-05-26Implemented droppersmadmaxoft@gmail.com1-13/+12
Added a common ancestor class "DropSpenser" that has the common code for dropper and dispenser and is Lua-accessible, too. The Debuggers plugin now triggers both droppers and dispensers when rclking them with a redstone torch. git-svn-id: http://mc-server.googlecode.com/svn/trunk@1514 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-05-25Added all new bindings, refactored Debuggers; new Debuggers function.madmaxoft@gmail.com1-104/+188
Rclk with a redstone torch on a dispenser causes the dispenser to spit out one item each tick. git-svn-id: http://mc-server.googlecode.com/svn/trunk@1509 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-05-24Refactored cInventory to use cItemGrid for the actual Storagemadmaxoft@gmail.com1-4/+4
This makes the API more orthogonal and is easier to use in the plugins. Also changes in the inventory are now propagated to the needed places (armor updates to BroadcastEntityEquipment etc.) even when the inventory is changed by a plugin. git-svn-id: http://mc-server.googlecode.com/svn/trunk@1503 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-05-19Inventory changes made by plugins are now propagated to the clientmadmaxoft@gmail.com1-0/+1
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1495 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-05-19Debuggers: a simple test of armor slot settingmadmaxoft@gmail.com1-2/+12
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1494 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-05-19Debuggers: sorted things into separate functions, commented out most of them; added ForEachEntity() testing - list all and kill all entities.madmaxoft@gmail.com1-33/+130
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1492 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-04-09Added Expat and LuaExpat, XML parsing now available in the API.madmaxoft1-0/+27
FS #336 Windows version only, Linux to be fixed soon. git-svn-id: http://mc-server.googlecode.com/svn/trunk@1374 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-04-07Added SQLite and LuaSQLite, Lua plugins can now use SQLite.madmaxoft@gmail.com1-0/+30
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1368 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-03-26BlockArea: Finished rotation and mirroring with meta. Implemented example meta handling for vines, stairs and torches.madmaxoft@gmail.com1-0/+31
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1319 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-03-25BlockArea: Implemented rotation without meta manipulationmadmaxoft@gmail.com1-0/+12
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1317 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-03-25BlockArea: Implemented mirroring without meta manipulationmadmaxoft@gmail.com1-0/+18
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1316 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-03-03Debuggers plugin no longer performs generator / blockarea interface testing by default, but writes the current API.txt file.madmaxoft@gmail.com1-2/+4
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1245 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-02-13Implemented the cBlockArea:RelLine() API function.madmaxoft@gmail.com1-0/+1
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1211 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-02-11More API functions in cBlockArea: Create(), Fill(), FillRelArea()madmaxoft@gmail.com1-0/+4
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1208 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-02-10Added cBlockArea:Merge() API function to merge two block areas using different strategies.madmaxoft@gmail.com1-0/+14
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1207 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-02-09Added cBlockArea:Expand() API function (untested)madmaxoft@gmail.com1-4/+18
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1203 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-02-08cChunkDesc can now read and write cBlockAreas.madmaxoft@gmail.com1-2/+18
A simple example is provided in the Debuggers plugin. git-svn-id: http://mc-server.googlecode.com/svn/trunk@1201 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-02-07Added cBlockArea:CopyTo() and :CopyFrom(), so now block areas can be duplicated easily.madmaxoft@gmail.com1-3/+6
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1199 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-02-07cBlockArea can now be saved as a .schematic file.madmaxoft@gmail.com1-0/+19
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1198 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-02-06cBlockArea can now be loaded from a .schematic file.madmaxoft@gmail.com1-0/+17
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1195 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-02-06Added a new API call to cBlockArea: Crop().madmaxoft@gmail.com1-1/+30
Also fixed cBlockArea:MakeIndex(), the indexing was wrong. git-svn-id: http://mc-server.googlecode.com/svn/trunk@1194 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-02-02Debuggers plugin dumps entire API into a file, API.txt. Enabled by default.madmaxoft@gmail.com1-6/+17
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1188 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-01-27Debuggers: added some filtering to the API output, but still not good enough.madmaxoft@gmail.com1-7/+9
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1177 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-01-26Added a function to dump all available Lua API functions into the Debuggers plugin.madmaxoft@gmail.com1-0/+23
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1173 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-01-13Forgotten files for previous merge commit (rev 1139)madmaxoft@gmail.com1-6/+10
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1140 0a769ca7-a7f5-676a-18bf-c427514a06d6
2012-12-21Added TakeDamage logging to the Debuggers plugin.madmaxoft@gmail.com1-0/+11
http://forum.mc-server.org/showthread.php?tid=625&pid=5720#pid5720 git-svn-id: http://mc-server.googlecode.com/svn/trunk@1089 0a769ca7-a7f5-676a-18bf-c427514a06d6
2012-10-16Turned sTick plugin into general Debuggers plugin, added the Blaze Rod Of Enquiry (rclk with a blaze rod prints out the blocktypes and metas)madmaxoft@gmail.com1-0/+69
git-svn-id: http://mc-server.googlecode.com/svn/trunk@968 0a769ca7-a7f5-676a-18bf-c427514a06d6