This is a list of all (or all that I know of) single mod or single author/group discord servers in the minecraft mod community. They are listed in order of application (except for the first entry, because Forge). To apply, join the Modded Minecraft discord and use #discord-feedback.
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
public class PrettifyMessageCreate extends MessageConverter { | |
public static DiscordClient client; | |
private static Cache<Long, String> channelNames = CacheBuilder.newBuilder().expireAfterAccess(1, TimeUnit.HOURS).build(); | |
public String convert(ILoggingEvent event) { | |
if (event.getLoggerName().startsWith("discord4j.gateway.inbound.0")) { | |
for (Object param : event.getArgumentArray()) { | |
if (param instanceof GatewayPayload) { | |
GatewayPayload<?> payload = (GatewayPayload) param; |
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.enderio.core.common.transform; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.net.URL; | |
import java.net.URLClassLoader; | |
import java.util.HashMap; | |
import java.util.Map; | |
import org.apache.commons.io.IOUtils; |
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
import java.util.Scanner; | |
import java.util.Random; | |
public class Hw4 { | |
public static final int BOARD_SIZE = 10; | |
enum space {Empty,Player,Walked_Path,Goal,Mines};//eumeration creates a type | |
public static void main(String[] args) { | |
Scanner keyboard = new Scanner(System.in); | |
Random r = new Random(); | |
int pX = 0;//players x and y |
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 chisel.scripts; | |
import java.io.File; | |
import java.io.FileWriter; | |
import java.io.IOException; | |
import java.util.regex.Matcher; | |
import java.util.regex.Pattern; | |
import org.apache.commons.io.FileUtils; |
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: | |
Committer: | |
Parent: 74d08d66f9fcfb267b4fc6b38b62c3fd0317847c (Merge branch '1.12.x' of https://github.com/MinecraftForge/MinecraftForge into emissive_items) | |
Branch: | |
Follows: | |
Precedes: | |
Local uncommitted changes, not checked in to index | |
-------- src/main/java/net/minecraftforge/fml/common/ProxyInjector.java -------- |
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
private void renderModel(IBakedModel model, int color, ItemStack stack) | |
{ | |
Tessellator tessellator = Tessellator.getInstance(); | |
BufferBuilder bufferbuilder = tessellator.getBuffer(); | |
List<BakedQuad> allquads = new ArrayList<>(); | |
for (EnumFacing enumfacing : EnumFacing.values()) | |
{ | |
allquads.addAll(model.getQuads((IBlockState)null, enumfacing, 0L)); |
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
{ | |
"forge_marker": 1, | |
"defaults": {"model":"cube_all"}, | |
"variants": { | |
"indent": [{"textures":{"all":"chisel:blocks/andesite/indent"}}], | |
"bricks-small": [{"textures":{"all":"chisel:blocks/andesite/bricks-small"}}], | |
"bricks-soft": [{"textures":{"all":"chisel:blocks/andesite/bricks-soft"}}], | |
"tiles-small": [{"textures":{"all":"chisel:blocks/andesite/tiles-small"}}], | |
"bricks-encased": [{"textures":{"all":"chisel:blocks/andesite/bricks-encased"}}], | |
"cracked": [{"textures":{"all":"chisel:blocks/andesite/cracked"}}], |
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
#!/bin/bash | |
# Terminate running screen, if it exists | |
if screen -list | grep -q "botscreen"; then | |
echo "Terminating current bot instance" | |
screen -S botscreen -p 0 -X stuff "stop^M" | |
else | |
echo "No current bot instance found" | |
fi |
NewerOlder