Skip to content

Instantly share code, notes, and snippets.

@WolfieMario
WolfieMario / MapmakingShortcutsAbridged.ahk
Created July 24, 2014 01:39
Temporary gist of an AutoHotkey script which provides helpful shortcuts for Minecraft map-makers and server ops. This is a heavily abridged version; the full version is currently a 4885 line WIP with far more features.
/*===================================================================================*\
| Mapmaking Shortcuts Abridged script copyright WolfieMario |
| Feel free to use for your mapmaking endeavors or other purposes, and feel free to |
| make modifications, but do not remove this notice if you distribute this script. |
| I am not liable for any way in which you use or abuse this script. |
\*=================================================================================\ /
*/
; If you game is slow and hotkeys seem unstable, make this number bigger.
global delayStep := 70
; Its default value is 70.
@WolfieMario
WolfieMario / Bukkit-Vanilla-Commands.md
Last active December 21, 2015 11:58
A list of known quirks and inconsistencies in Bukkit's handling of "vanilla" commands

Bukkit Vanilla Command Inconsistencies

This is a list of known quirks and inconsistencies in Bukkit and CraftBukkit's handling of "vanilla" commands.

Broken Commands

The following commands simply do not behave properly on Bukkit. This isn't a matter of not being implemented - these commands have been implemented, but do not work properly.

  • spreadplayers - this command actually fails for a large number of reasons. Its most glaring flaw is that it declares 'world = null', and does not attempt to change this because the condition to set 'world' is 'if (world != null)' (surprisingly, Eclipse does not generate an "unreachable code" warning for this). This actually simply prevents the command from doing anything whatsoever. Other issues with this command include mishandling of PlayerSelectors (failing to actually meet any constraints), lacking a failure condition for too many players to m