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
2013-11-27 16:21:34 [INFO] [BeardAch] Loading Data Adapters | |
2013-11-27 16:21:35 [INFO] [BeardAch] Installing default triggers and rewards | |
2013-11-27 16:21:35 [WARNING] [BeardAch] [counter] Increment counter depends on BeardStat which is not found, this reward has been disabled. This may cause errors if an achievement is built using this. | |
2013-11-27 16:21:35 [WARNING] [BeardAch] [subgroup] (DroxPerms) add subgroup depends on DroxPerms which is not found, this reward has been disabled. This may cause errors if an achievement is built using this. | |
2013-11-27 16:21:35 [WARNING] [BeardAch] [promote] (DroxPerms) Promote along track depends on DroxPerms which is not found, this reward has been disabled. This may cause errors if an achievement is built using this. | |
2013-11-27 16:21:35 [WARNING] [BeardAch] [money] (vault) Give money depends on Vault which is not found, this reward has been disabled. This may cause errors if an achievement is built using this. | |
2013-11-27 16:21:35 [WARNING] [BeardAch] [vaultaddgroup] (Vau |
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
public class PasteCommand extends CommandBase { | |
private final SchematicFile schFile; | |
public PasteCommand(SchematicFile schFile) { | |
this.schFile = schFile; | |
} | |
@Override | |
public String getCommandName() { |
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
package com.tehbeard.forge.schematic.shell; | |
import net.minecraft.client.Minecraft; | |
import net.minecraftforge.client.event.RenderWorldLastEvent; | |
import net.minecraftforge.event.ForgeSubscribe; | |
import org.lwjgl.opengl.GL11; | |
import cpw.mods.fml.client.FMLClientHandler; |
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
import java.util.ArrayList; | |
import java.util.Arrays; | |
import java.util.HashMap; | |
import java.util.List; | |
import java.util.Map; | |
import java.util.Map.Entry; | |
import cpw.mods.fml.common.registry.GameRegistry; |
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
2013-06-17 00:05:46 [INFO] [Minecraft-Client] [CHAT] §E[Rei's Minimap] 4 Waypoints loaded for ftb.escapecraft.com | |
2013-06-17 00:05:47 [INFO] [STDERR] java.lang.NullPointerException | |
2013-06-17 00:05:47 [INFO] [STDERR] at net.minecraft.client.renderer.tileentity.TileEntityRenderer.func_76950_a(SourceFile:90) | |
2013-06-17 00:05:47 [INFO] [STDERR] at net.minecraft.client.renderer.RenderGlobal.func_72713_a(RenderGlobal.java:520) | |
2013-06-17 00:05:47 [INFO] [STDERR] at net.minecraft.client.renderer.EntityRenderer.func_78471_a(EntityRenderer.java:1220) | |
2013-06-17 00:05:47 [INFO] [STDERR] at net.minecraft.client.renderer.EntityRenderer.func_78480_b(EntityRenderer.java:991) | |
2013-06-17 00:05:47 [INFO] [STDERR] at net.minecraft.client.Minecraft.func_71411_J(Minecraft.java:871) | |
2013-06-17 00:05:47 [INFO] [STDERR] at net.minecraft.client.Minecraft.run(Minecraft.java:760) | |
2013-06-17 00:05:47 [INFO] [STDERR] at java.lang.Thread.run(Unknown Source) |
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
<html> | |
<head> | |
<title>Minecraft heads using Canvas 2D</title> | |
<script src='http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js'></script> | |
<style> | |
canvas{ | |
width: 320; | |
height: 320; | |
/*border: 2px solid black;*/ | |
} |
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
[ | |
{ | |
WHATEVER ENTRY WAS HERE BEFORE | |
} | |
, | |
{ | |
"modid": "Oilers", | |
"name": "Oilers", | |
"version": "0.1", | |
"description": "amazing plugin", |
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 | |
/* | |
* Minequery PHP | |
* Copyright (C) 2011 Kramer Campbell | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 3 of the License, or | |
* (at your option) any later version. | |
* |
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
package com.tehbeard.test; | |
import org.bukkit.block.CommandBlock; | |
import org.bukkit.command.BlockCommandSender; | |
import org.bukkit.command.Command; | |
import org.bukkit.command.CommandSender; | |
import org.bukkit.plugin.java.JavaPlugin; | |
public class TestCommandBlockRedstonePlugin extends JavaPlugin { |
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
JSON -> String -> BLOB : http://www.nczonline.net/blog/2012/06/05/working-with-files-in-javascript-part-5-blobs/ | |
BLOB -> Download : https://github.com/eligrey/FileSaver.js |