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
Scout $5 | |
The following kits are available once a week, with the exception of /kit food, which is available daily: | |
• /Kit TNT | |
• 12 TNT 46 | |
• /Kit Ingots | |
• 32 Iron Ingots 265 | |
• 32 Gold Ingots 266 | |
• 32 Copper Ingots 14239 | |
• 32 Tin Ingots 14240 |
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
private void registerBlocks() { | |
claimBlock = new ClaimBlock(claimBlockId, Material.iron); | |
extensionBlock = new ExtensionBlock(extensionId,Material.iron); | |
doubleExtensionBlock = new DoubleExtensionBlock(doubleClaimExtensionId,Material.iron); | |
tripleExtensionBlock = new TripleExtensionBlock(tripleClaimExtensionId,Material.iron); | |
quadExtensionBlock = new QuadExtensionBlock(quadClaimExtensionId,Material.iron); | |
ItemStack claimStack = new ItemStack(claimBlock); | |
ItemStack extensionStack = new ItemStack(extensionBlock); | |
ItemStack doubleExtensionStack = new ItemStack(doubleExtensionBlock); | |
ItemStack tripleExtensionStack = new ItemStack(tripleExtensionBlock); |
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.github.facman.blocks; | |
import net.minecraft.block.Block; | |
import net.minecraft.block.material.Material; | |
import net.minecraft.creativetab.CreativeTabs; | |
/** | |
* Created by Theresa on 28/05/2014. | |
*/ | |
public class ClaimBlock extends Block { |
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
---- Minecraft Crash Report ---- | |
// Oh - I know what I did wrong! | |
Time: 29/05/14 19:50 | |
Description: Rendering screen | |
java.lang.NullPointerException | |
at net.minecraft.item.ItemStack.getIconIndex(ItemStack.java:142) | |
at net.minecraft.client.renderer.entity.RenderItem.renderItemIntoGUI(RenderItem.java:346) | |
at net.minecraft.client.renderer.entity.RenderItem.renderItemAndEffectIntoGUI(RenderItem.java:467) |
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.mymod.slashchest; | |
import java.util.Date; | |
import java.util.Random; | |
import org.bukkit.ChatColor; | |
import org.bukkit.Chunk; | |
import org.bukkit.Location; | |
import org.bukkit.World; | |
import org.bukkit.block.Block; |
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
04:08:46 [INFO] Location is CraftBlock{chunk=CraftChunk{x=-90z=-572},x=-1428,y=62,z=-9140,type=STATIONARY_WATER,data=0} | |
04:08:46 [INFO] Location is CraftBlock{chunk=CraftChunk{x=435z=-341},x=6973,y=62,z=-5448,type=STATIONARY_WATER,data=0} | |
04:08:46 [INFO] Location is CraftBlock{chunk=CraftChunk{x=-541z=465},x=-8649,y=62,z=7440,type=STATIONARY_WATER,data=0} | |
04:08:46 [INFO] Location is CraftBlock{chunk=CraftChunk{x=283z=-146},x=4537,y=66,z=-2331,type=GRASS,data=0} | |
04:08:46 [INFO] tprandom: Teleporting §0[§4Head BetaTester§0]§c§4~§3§K0§8§k0§3G§8r§3a§8n§3t§8§K0§3§K0§4§r to 4537.500000 67.500000 -2330.500000 | |
04:08:52 [INFO] Read timed out | |
04:09:09 [WARNING] The server is going slow. Last server tick was 23470ms ago |
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.mymod.slashchest; | |
import java.util.Date; | |
import java.util.Random; | |
import org.bukkit.Chunk; | |
import org.bukkit.Location; | |
import org.bukkit.World; | |
import org.bukkit.block.Block; | |
import org.bukkit.command.Command; |
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
03:48:45 [SEVERE] Error occurred while enabling SlashChest v1.6.4 (Is it up to d | |
ate?) | |
java.lang.IllegalArgumentException: The embedded resource 'config.yml' cannot be | |
found in plugins\slashchest.jar | |
at org.bukkit.plugin.java.JavaPlugin.saveResource(JavaPlugin.java:149) | |
at org.bukkit.plugin.java.JavaPlugin.saveDefaultConfig(JavaPlugin.java:1 | |
37) | |
at com.radcraft.slashchest.SlashChest.onEnable(SlashChest.java:49) | |
at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:217) | |
at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader |
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
D:\localtest>java -Xmx1G -Xms1G -jar craftbukkit.jar | |
03:35:50 [INFO] Starting minecraft server version 1.6.4 | |
03:35:50 [INFO] Loading properties | |
03:35:50 [INFO] Default game type: SURVIVAL | |
03:35:50 [INFO] Generating keypair | |
03:35:50 [INFO] Starting Minecraft server on *:25565 | |
03:35:51 [INFO] This server is running CraftBukkit version git-Bukkit-1.6.4-R2.0 | |
-b2918jnks (MC: 1.6.4) (Implementing API version 1.6.4-R2.0) | |
03:35:51 [INFO] [SlashChest] Loading SlashChest v1.6.4 | |
03:35:51 [INFO] Preparing level "world" |
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
Files\Java\jre7 | |
2014-05-21 17:59:08 [INFO] [ForgeModLoader] Loading tweak class name cpw.mods.fm | |
l.common.launcher.FMLInjectionAndSortingTweaker | |
2014-05-21 17:59:08 [INFO] [ForgeModLoader] Loading tweak class name cpw.mods.fm | |
l.common.launcher.FMLDeobfTweaker | |
2014-05-21 17:59:08 [INFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.com | |
mon.launcher.FMLInjectionAndSortingTweaker | |
2014-05-21 17:59:08 [INFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.com | |
mon.launcher.FMLInjectionAndSortingTweaker | |
2014-05-21 17:59:08 [INFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.rel |