This file contains hidden or 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 requests | |
from pyquery import PyQuery as pq | |
import pandas as pd | |
import numpy as np | |
from tqdm.autonotebook import tqdm | |
# Note: from the imports, this requires pandas, numpy, tqdm, and pyquery (installable with pip or conda) | |
# classes to collect stats on | |
ctfClasses = """Archer |
This file contains hidden or 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 me.nineonefive.proto | |
import net.minecraft.server.v1_8_R3.AxisAlignedBB | |
import net.minecraft.server.v1_8_R3.Vec3D | |
import org.bukkit.ChatColor | |
import org.bukkit.craftbukkit.v1_8_R3.entity.CraftArrow | |
import org.bukkit.craftbukkit.v1_8_R3.entity.CraftZombie | |
import org.bukkit.entity.Arrow | |
import org.bukkit.entity.Player | |
import org.bukkit.entity.Zombie |