This file contains 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
if [ "$DESIRED_RELEASE" == "recommended" ]; then | |
# this is unholy, but Forge doesn't appear to supply an API, and | |
# their Maven repo appears to not be well formed | |
DESIRED_RELEASE=`curl -s http://files.minecraftforge.net/ | | |
grep -m 1 -A 2 '<td>Recommended' | | |
grep -v 'Recommended' | | |
cut -d '>' -f 2 | | |
cut -d '<' -f 1 | | |
tac | | |
head -c -1 | |
This file contains 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
@Override | |
public Multimap getAttributeModifiers(ItemStack stack) { | |
Multimap multimap = super.getAttributeModifiers(stack); | |
double damage = /* ... */; | |
multimap.put(SharedMonsterAttributes.attackDamage.getAttributeUnlocalizedName(), | |
new AttributeModifier(field_111210_e, "<My item> damage modifier", damage, 0)); | |
return multimap; | |
} |
This file contains 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.droidhackers.misc; | |
public class MaterialColor { | |
// File created by Aesen Vismea based off the Google Material Design spec | |
// http://www.google.com/design/spec/style/color.html#color-color-palette | |
// This is the Java edition. | |
// Updates: https://gist.github.com/AesenV/1cfc377df2fca5d00732 | |
public static final int RED_50 = 0xFFFFEBEE; |
This file contains 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
long value = 123456; | |
// 56 bronze, 34 silver, 12 gold | |
int gold = (value / 10000); | |
int silver = (value / 100 % 100); | |
int bronze = (value % 100); |
This file contains 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 { | |
srgExtra "PK: com/typesafe/config my/mod/package/repackage/com/typesafe/config" | |
} | |
configurations { | |
external | |
compile.extendsFrom external | |
} | |
dependencies { |
This file contains 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
/** @author Aesen Vismea **/ | |
@Override | |
public boolean onItemUse(ItemStack itemstack, EntityPlayer player, World world, int x, int y, int z, int side, float hitX, float hitY, float hitZ) { | |
EnumFacing face = EnumFacing.values()[side]; | |
int xO = x+face.getFrontOffsetX(); | |
int yO = y+face.getFrontOffsetY(); | |
int zO = z+face.getFrontOffsetZ(); | |
world.setBlock(xO, yO, zO, Blocks.mob_spawner); | |
TileEntityMobSpawner te = new TileEntityMobSpawner(); | |
te.readFromNBT(itemstack.getTagCompound()); |
This file contains 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
buildscript { | |
repositories { | |
mavenCentral() | |
maven { | |
name = "forge" | |
url = "http://files.minecraftforge.net/maven" | |
} | |
maven { | |
name = "sonatype" | |
url = "https://oss.sonatype.org/content/repositories/snapshots/" |

This file contains 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
o='';r=new Random();args[0].chars.any{o+=it;if(it.letter)(r.nextGaussian()*5+10).times{o+=(char)(768+r.nextInt(48))}}print o |
This file contains 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
!version 1 | |
!import aesen.laminate.component.* | |
!import net.example.customcomponents.MyCoolComponent | |
ProgressBar[30x40+10,10] | |
Panel[30x80+10,60](title="Some Awesome Panel" showBorder) | |
Label | |
| Hello, GUI! |
OlderNewer