Skip to content

Instantly share code, notes, and snippets.

View rmsy's full-sized avatar
🏠
Working from home

Isaac Moore rmsy

🏠
Working from home
View GitHub Profile
@rmsy
rmsy / filters.xml
Last active December 19, 2015 01:09
Metadata for Biome Battles.
<?xml version="1.0"?>
<map proto="1.3.0">
<rectangle name="playing-field" min="-oo,-oo" max="oo,oo"/>
<playable>
<region name="playing-field"/>
</playable>
<filters>
<filter name="block-filter" parents="deny-blocks"></filter>
String[] gameOverMessage = new String[4];
String teamMessage = winningTeam.getColorizedName() + " wins!";
int teamLength = teamMessage.length();
int largestLength = 0;
if (teamLength > 10) {
largestLength = teamLength;
} else {
largestLength = 10;
}
@rmsy
rmsy / map.xml
Last active December 20, 2015 12:59
Metadata for Ice Rack.
<?xml version="1.0"?>
<map proto="1.3.0">
<name>Ice Rack</name>
<version>1.0.1</version>
<objective>Capture both of your team's wools!</objective>
<authors>
<author>Tywnis</author>
</authors>
<contributors>
<contributor contribution="Metadata (XML)">iamramsey</contributor>
@rmsy
rmsy / map.xml
Last active December 20, 2015 14:49
Metadata for Sands of Life.
<?xml version="1.0"?>
<map proto="1.3.0">
<name>Sands of Life</name>
<version>1.0.1</version>
<objective>Amass the most amount of points before time runs out!</objective>
<authors>
<author contribution="Map design">Tywnis</author>
<author contribution="Map design">i2</author>
</authors>
<contributors>
@rmsy
rmsy / map.xml
Last active December 20, 2015 14:49
Metadata for Yggdrasil.
<?xml version="1.0"?>
<map proto="1.3.0">
<name>Yggdrasil</name>
<version>1.0</version>
<objective>Amass the most amount of points before time runs out!</objective>
<authors>
<author contribution="Map design">Tywnis</author>
</authors>
<contributors>
<contributor contribution="Metadata (XML)">iamramsey</contributor>
@rmsy
rmsy / b.java
Last active December 20, 2015 15:29
package me.Barnyard_Owl.OvercastMimic;
import java.util.Iterator;
import java.util.logging.Logger;
import me.Barnyard_Owl.OvercastMimic.OvercastMimic;
import me.Barnyard_Owl.OvercastMimic.c;
import me.Barnyard_Owl.OvercastMimic.d;
import me.Barnyard_Owl.OvercastMimic.g;
import org.bukkit.Bukkit;
import org.bukkit.ChatColor;
@rmsy
rmsy / map.xml
Last active December 21, 2015 01:59
Metadata for Lys.
<?xml version="1.0"?>
<map proto="1.3.0">
<name>Lys</name>
<version>1.0</version>
<objective>Destroy both of the enemy monuments whilst defending your own!</objective>
<authors>
<author contribution="Map design">Tywnis</author>
</authors>
<contributors>
<contributor contribution="Metadata (XML)">iamramsey</contributor>
@rmsy
rmsy / map.xml
Created September 2, 2013 06:48
Metadata for Deus ex Machinations: Keys.
<?xml version="1.0"?>
<map proto="1.3.0">
<name>Deus ex Machinations: Keys</name>
<version>1.11</version>
<objective>Collect 10 Keystones from throughout the map and place them in the enemy's Command Center. Once 10 Keystones are placed, go through the doors and destroy the Lift Core to win the game!</objective>
<authors>
<author>bleangamer</author>
</authors>
<contributors>
<contributor contribution="XML">nixter1029</contributor>
@rmsy
rmsy / Potions.java
Created September 7, 2013 18:11
Potion effects mapped to their negative (inverse) implications.
/** Potion effects mapped to their negative (inverse) implications. */
public static final Map<PotionEffectType, PotionClassification> inversePotionEffectTypeImplications;
static {
HashMap<PotionEffectType, PotionClassification> temporaryMap = new HashMap<>();
// SLOW
temporaryMap.put(PotionEffectType.SPEED, PotionClassification.HARMFUL);
// SPEED
temporaryMap.put(PotionEffectType.SLOW, PotionClassification.BENEFICIAL);
// SLOW_DIGGING
javascript:(function() {
var bookmarklet = {
init: function() {
this.parse();
},
parse: function() {
page = "";
$(".InfiniteScroll:visible")
.children(".scrollable_content")
.find(".Track")