This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Clone Command Block MCEdit Filter | |
================================= | |
This filter helps you to clone big structures from one position to any other | |
position in the level (as long as it is loaded). To achieve this it splits up | |
the zone in smaller 15x15x15 chunks which may be copied even though the overall | |
structure has more than 4096 blocks. | |
Usage | |
----- | |
* Select the source structure |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// register error handler | |
set_error_handler(function($errno, $errstr, $errfile, $errline ) { | |
throw new ErrorException($errstr, 0, $errno, $errfile, $errline); | |
}); | |
// defines | |
define ('IMAGE_DIR', dirname (__FILE__).'/image/'); // by default images (success.png, failed.png and unknown.png) are stored in ./image/ | |
define ('KEY_REGEX', '~^([A-Za-z0-9]+)\-([A-Za-z0-9]+)$~'); // You usually won't need to change this | |
define ('SERVER_URL', 'https://yourinstance.atlassian.net/builds'); // set your Bamboo URL |
NewerOlder