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 static String setColor(char colour) { | |
String color = ""; | |
switch (colour) { | |
case '0': color = "§0"; break; | |
case '1': color = "§1"; break; | |
case '2': color = "§2"; break; | |
case '3': color = "§3"; break; | |
case '4': color = "§4"; break; | |
case '5': color = "§5"; break; | |
case '6': color = "§6"; break; |
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(you + me) { | |
return false; | |
} |
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.logging.Logger; | |
/** | |
* | |
* @author Nijiko | |
*/ | |
public class Testers extends Plugin { | |
private Listener l = new Listener(this); | |
protected static final Logger log = Logger.getLogger("Minecraft"); | |
private String name = "MyPlugin"; |
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 boolean hasItems(Player player, int item, int amount) { | |
hm[] items = player.getInventory().getArray(); | |
int len = items.length; | |
int counter = 0; | |
for (int i = 0; i < len; i++) { | |
hm current = items[i]; | |
// Avoid infinite stacks | |
if (current == null || current.a <= 0) { |
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(message.substring((message.length-3), (message.length-2)) == "§") { | |
message.substring(message.length, (message.length-2)); | |
// do a recursive here; | |
} else { | |
// send the message onwards; | |
} |
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
String newer = ""; | |
newer = message.replaceAll("(&([a-z0-9]))", "§$2"); | |
newer = message.replace("+c", channel); | |
newer = message.replace("+n", name); | |
newer = message.replace("\\\\\u00A7", "&"); | |
return newer; |
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
double x = player.getX(); | |
double z = player.getZ(); | |
double a = Double.valueOf(positions[1]); | |
double b = Double.valueOf(positions[2]); | |
if(a >= x && -a <= x) { | |
if(b >= z && -b <= z) { | |
return true; | |
} | |
} |
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
/** | |
* Hooked.java | |
* <br><br> | |
* Controls custom hook information by easily helping you figure out what is what without recieving errors on the matter. | |
* | |
* @author Nijikokun <[email protected]> | |
*/ | |
public class Hooked { | |
public Hooked() { |
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
/* Objectification Framework | |
* ^- I made this shit up. What now. | |
* | |
* PHP/Java Mixin | |
* | |
* Rewrite how PHP utilizes Objects. This way everything is constant. | |
* No more shitty function naming, no more shitty coding. | |
* | |
* This is still in SPEC, it's not functional yet. | |
* |
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 static String getCraftBukkitVersion(String version) { | |
Pattern v = Pattern.compile("b(\\d{1,4})"); | |
String vr = ""; | |
Matcher m = v.matcher(version); | |
while (m.find()) { | |
vr = m.group(); | |
} | |
if(vr.startsWith("b")) |
OlderNewer