Skip to content

Instantly share code, notes, and snippets.

View parzivail's full-sized avatar

Colby Newman parzivail

View GitHub Profile
[19:02:04] [Client thread/INFO]: Created: 1024x1024 textures-atlas
[19:02:05] [Client thread/ERROR] [FML]: Exception loading model for variant pswm:luke#inventory for item "minecraft:apple", normal location exception:
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model pswm:item/luke with loader VanillaLoader.INSTANCE, skipping
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?]
at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:318) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:175) ~[ModelBakery.class:?]
at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:148) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]
at net.minecraft.client.resources.SimpleReloadableRe
{
"forge_marker": 1,
"defaults": {
"textures": {
"#main": "pswm:luke"
},
"model": "pswm:luke.obj"
},
"variants": {
"normal": [
@parzivail
parzivail / TILCD.cpp
Created September 10, 2016 00:56
TI83 LCD Pinout and original Arduino code
TILCD::TILCD(uint8_t ce, uint8_t di, uint8_t wr, uint8_t rst, uint8_t d0, uint8_t d1, uint8_t d2, uint8_t d3, uint8_t d4, uint8_t d5, uint8_t d6, uint8_t d7)
{
_ce = ce;
_di = di;
_wr = wr;
_rst = rst;
_d0 = d0;
_d1 = d1;
_d2 = d2;
@parzivail
parzivail / ItemID.cs
Created April 4, 2015 13:25
Terraria Content IDs
using System;
namespace Terraria.ID
{
public class ItemID
{
public const short PlatinumBow = -48;
public const short PlatinumHammer = -47;
public const short PlatinumAxe = -46;
public const short PlatinumShortsword = -45;
public const short PlatinumBroadsword = -44;