Surprise! We've been running on hardware provided by BuyVM for a few months and wanted to show them a little appreciation.
Running a paste site comes with unique challenges, ones that aren't always obvious and hard to control. As such, BuyVM offered us a home where we could worry less about the hosting side of things and focus on maintaining a clean and useful service! Go check them out and show them some love!
Submitted on April 13, 2018 at 06:02 PM

New Paste 1 (Auto Detect)

public static int getMagicLevel(int npcId) {
		switch (npcId) {
		case 2012: // zulrah
			return 300;
		// Kree'arra
		case 6222:
			return 200;
		// Flockleader Geerin
		case 6225:
			return 50;
		// Flight Kilisa
		case 6227:
			return 50;
		// Wingman Skree
		case 6223:
			return 150;
		// General Graardor
		case 6260:
			return 80;
		// Sergeant Steelwill
		case 6263:
			return 150;
		// Sergeant Grimspike
		case 6265:
			return 50;
		// Sergeant Strongsta
		case 6261:
			return 50;
		// K'ril Tsutsaroth
		case 6203:
			return 200;
		// Tstanon Karlak
		case 6204:
			return 50;
		// Balfrug Kreeyath
		case 6208:
			return 150;
		// Zakl'n Gritch
		case 6206:
			return 50;
		// Commander Zilyana
		case 6247:
			return 300;
		// Bree
		case 6252:
			return 80;
		// Starlight
		case 6248:
			return 125;
		// Growler
		case 6250:
			return 150;
		// Nex
		case 13447:
			return 80;
		// Fumus
		case 13451:
			// Umbra
		case 13452:
			// Cruor
		case 13453:
			// Glacies
		case 13454:
			return 85;
		// King Black Dragon
		case 50:
			return 240;
		// Choas Elemental
		case 3200:
			return 280;
		// Tormented Demons
		case 8349:
			return 1;
		// Corporeal Beast
		case 8133:
			return 350;
		// Dagganoth Prime
		case 2882:
			return 255;
		// Dagannoth Supreme
		case 2881:
			return 255;
		// Nomad
		case 8528:
			return 75;
		// Tztok-Jad
		case 2745:
			return 480;
		// Ket-Zek
		case 2743:
			return 240;
		// Yt-Mejkot
		case 2741:
			return 120;
		// Tok-Zil
		case 2631:
			return 60;
		// Tz-Kek
		case 2630:
			return 60;
		// Kalphite Queen
		case 3835:
		case 3836:
			return 150;
		// Avatar Of Destruction
		case 8596:
			return 1;
		// Avatar Of Creation
		case 8597:
			return 1;
		// Scorpia
		case 4172:
			return 1;
		// Callisto
		case 4174:
			return 1;
		// Venenantis
		case 4173:
			return 150;
		}
		return 1;
	}