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
# | |
# WorldEdit's configuration file | |
# | |
# About editing this file: | |
# - DO NOT USE TABS. You MUST use spaces or Bukkit will complain. If | |
# you use an editor like Notepad++ (recommended for Windows users), you | |
# must configure it to "replace tabs with spaces." In Notepad++, this can | |
# be changed in Settings > Preferences > Language Menu. | |
# - Don't get rid of the indents. They are indented so some entries are | |
# in categories (like "max-blocks-changed" is in the "limits" |
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
# | |
# WorldGuard's configuration file | |
# | |
# About editing this file: | |
# - DO NOT USE TABS. You MUST use spaces or Bukkit will complain. If | |
# you use an editor like Notepad++ (recommended for Windows users), you | |
# must configure it to "replace tabs with spaces." In Notepad++, this can | |
# be changed in Settings > Preferences > Language Menu. | |
# - Don't get rid of the indents. They are indented so some entries are | |
# in categories (like "enforce-single-session" is in the "protection" |
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 | |
require("nbt.class.php"); | |
$nbt = new nbt(); | |
// change to point to your world's level.dat file | |
$nbt->loadFile("E:/cc/level.dat"); | |
$a=array(); | |
foreach($nbt->root[0]['value'][0]['value'] as $dat) { | |
$t = $dat['value']; |
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
<div align="center" style="font-size:70%; position:relative; top:5px; left:5px; background-color:grey;opacity:0.8;">Last Update Finished <?php echo writhem_time(GetCorrectMTime(@'updated.json')); ?></div> | |
<?php | |
function GetCorrectMTime($filePath) | |
{ | |
$time = filemtime($filePath); | |
$isDST = (date('I', $time) == 1); |
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
[{"id":4,"z":309.375,"msg":"pironic","y":88.5,"world":"1_2_vanilla","x":-392.3125},{"timestamp":"20120314 14:19:24","id":4,"z":201.53125,"msg":"CounterPillow","y":105.53125,"world":"cc","x":-487.5},{"timestamp":"20120314 14:19:38","id":4,"z":157.81684502508196,"msg":"tswsl1989","y":68.0,"world":"1_2_vanilla","x":-580.2873761323399}] |
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 | |
// put this file on your remote server and then use the url in the script config. | |
error_reporting(0); | |
if (ini_get('disable_functions')) { | |
$disabled_funcs=array_map('trim',explode(',',ini_get('disable_functions'))); | |
} | |
$action=$_GET["action"]; |
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
worlds["cc"] = "E:/cc" | |
worlds["flatland-projects"] = "E:/flatland" | |
worlds["exmaple"] = "E:/src/overviewer/Minecraft-Overviewer-Addons/exmaple" | |
spawn_overlay = [ | |
ClearBase(), | |
EdgeLines(), | |
SpawnOverlay() | |
] |
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
var markers={ | |
"Kalimdor": [ | |
{ | |
"createInfoWindow": true, | |
"icon": "chest.png", | |
"displayName": "Locations", | |
"groupName": "Towns-Kalimdor" | |
}, | |
{ | |
"createInfoWindow": true, |
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
wave 1: | |
wave 2: | |
wave 3: | |
wave 4: | |
wave 5: |
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
overviewer.models = {}; | |
/* WorldModel | |
* Primarily has a collection of TileSets | |
*/ | |
overviewer.models.WorldModel = Backbone.Model.extend({ | |
initialize: function(attrs) { | |
attrs.tileSets = new overviewer.models.TileSetCollection(); | |
this.set(attrs); | |
} |
OlderNewer