Jump to content
Existing user? Sign In

Sign In



Sign Up

Pax

Members
  • Posts

    21
  • Joined

  • Last visited

  • Days Won

    5

Pax last won the day on April 28 2018

Pax had the most liked content!

About Pax

  • Birthday 05/26/1995

Personal Information

  • Sex
    Male
  • Location
    Norway

Social Media

Recent Profile Visitors

1,516 profile views
  1. Pax

    RSS Feed

    May be used for reading certain forums within IPB, or other web/software. import java.net.URL; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import org.w3c.dom.Document; import org.w3c.dom.Element; import org.w3c.dom.Node; public class RSSFeed { /** * @author: Pax M */ /** * The URL that we want to read from */ public static String URL = "[Hidden Content]"; /** * Read the RSS * * @param read element * @param read tagName * @return element * @return tagName */ public static String read(String element, String tagName) { try { DocumentBuilderFactory factory = DocumentBuilderFactory .newInstance(); DocumentBuilder builder = factory.newDocumentBuilder(); Document doc = builder.parse(new URL(URL).openConnection() .getInputStream()); doc.getDocumentElement().normalize(); for (int temp = 0; temp < doc.getElementsByTagName(tagName) .getLength(); temp++) { Node nNode = doc.getElementsByTagName(tagName).item(temp); if (nNode.getNodeType() == Node.ELEMENT_NODE) { Element eElement = (Element) nNode; return eElement.getElementsByTagName(element).item(0) .getTextContent(); } } } catch (Exception e) { e.printStackTrace(); } return null; } } Usage: RSSFeed.read(element, tagName);
  2. Have seen better leaks lol.
  3. Pax

    A backup manager

    This is a program that backups up the listed folders, I've made some example below in the String array, over how you'd list the folders, very simple to use, there is no task schedule (data consuming), but upon initiating it, it'll determine wherever or not the zip of the date has been created. import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.text.SimpleDateFormat; import java.util.Date; import java.util.zip.ZipEntry; import java.util.zip.ZipOutputStream; public class BackupManager { /** * @author: Pax M */ /** * The directories that are being zipped */ private static String[] FOLDERS = { "./source/", "./storage/accounts/" }; /** * The location where the zipped directories are being stored */ private static String[] ZIPPED = { "./storage/backups/source/", "./storage/backups/accounts/" }; /** * Initiates the backup manager class */ public static void init() { for (int folders = 0; folders < FOLDERS.length; folders++) { File input = new File(FOLDERS[folders]); File output = new File(ZIPPED[folders] + "/" + new SimpleDateFormat("MM.dd.yy").format(new Date()) + ".zip"); if (!output.exists()) { try { if (input.list().length == 0) return; ZipOutputStream zipOutputStream = new ZipOutputStream( new FileOutputStream(output)); zip(input, input, zipOutputStream); zipOutputStream.close(); } catch (Exception e) { e.printStackTrace(); } } else System.err.println(output.getName() + " directory is empty."); } } /** * Zip. * * @param directory * the directory * @param base * the base * @param zipOutputStream * the zos * @throws IOException * Signals that an I/O exception has occurred. */ private static final void zip(File directory, File base, ZipOutputStream zipOutputStream) throws IOException { File[] files = directory.listFiles(); byte[] buffer = new byte[20000]; int read = 0; for (int i = 0, n = files.length; i < n; i++) { if (files[i].isDirectory()) zip(files[i], base, zipOutputStream); else { FileInputStream in = new FileInputStream(files[i]); ZipEntry entry = new ZipEntry(files[i].getPath().substring( base.getPath().length() + 1)); zipOutputStream.putNextEntry(entry); while (-1 != (read = in.read(buffer))) { zipOutputStream.write(buffer, 0, read); } in.close(); } } } }
  4. Dumped a while ago, thought I'd share. // Dump by: Pax M {2531=4, 2532=0, 2533=Headbutt mining, 2534=-1, 2535=17083, 3303=17083, 4743=4721, 3304=-1, 3306=1, 3307=You begin bashing at the rock with your dense skull.} {2531=4, 3363=0, 2532=0, 2533=Chi-Blast Mining, 2534=-1, 2535=17310, 3303=17310, 2536=17312, 3304=3304, 2537=72910, 3306=1, 3307=You begin to chi-blast the rock.} {2531=4, 2532=0, 2533=Blast Mining, 2534=-1, 2535=17947, 3303=17947, 2536=17949, 3304=241, 2537=79543, 3306=1, 3307=You begin to blast the rock., 2540=200, 3320=3918} {2531=4, 2532=0, 2533=Strongarm Mining, 2534=-1, 2535=20284, 3303=20284, 2536=20285, 3304=3998, 2537=72130, 3306=1, 3307=You begin punching at the rock., 2540=100} {2531=4, 3363=0, 2532=0, 2533=Crystal Singer mining, 2534=-1, 2535=24626, 3303=24626, 2536=24625, 3304=5162, 2537=99137, 3306=1, 3307=You summon a crystal pick to mine the rock., 2540=120, 3378=24624, 3320=5161} {3378=17091, 2531=4, 2532=0, 2533=Lumberjack woodcutting, 2534=-1, 2535=17091, 3303=17091} {2531=4, 2532=0, 2533=Roundhouse Woodcutting, 2534=-1, 2535=17304, 3303=17304, 2536=17305, 3304=3301, 2537=72909, 3305=3307, 3306=1, 3307=You roundhouse kick the tree., 4569=3301, 4570=3307} {2531=4, 3363=0, 2532=0, 2533=Explosive Woodcutting, 2534=-1, 2535=17948, 3303=17948, 2536=17950, 3304=3457, 2537=79543, 3306=1, 3307=You set charges to explode around the tree., 2540=100, 3378=17948, 3320=3457, 4569=3457} {2531=4, 2532=0, 2533=Strongarm Woodcutting, 2534=-1, 2535=20302, 3303=20302, 2536=20303, 3304=4006, 2537=74509, 3306=1, 3307=You begin to swipe at the tree., 2540=100, 4569=4006} {2531=4, 3363=0, 2532=0, 2533=Crystal Singer woodcutting, 2534=-1, 2535=24621, 3303=24621, 2536=24622, 3304=5157, 2537=99138, 3306=1, 3307=You summon a crystal saw to cut the tree., 2540=120, 3378=24629, 3320=5159, 4569=5160} {2531=4, 2532=0, 2533=Deep-Sea fishing, 2534=-1, 2535=17084, 3303=17084, 3306=1, 3307=You fling your rod over your shoulder and cast away.} {2531=4, 2532=0, 2533=Depth Charge Fishing, 2534=-1, 2535=17953, 3303=17953, 2536=17954, 3304=3459, 2537=79541, 3306=1, 3307=You point towards the water., 2540=200} {2531=4, 2532=0, 2533=Arcane Fishing, 2534=-1, 2535=20301, 3303=20301, 2536=20300, 3304=4007, 2537=66278, 3306=1, 3307=You summon the fish from the water., 2540=200} {2531=4, 3363=0, 2532=0, 2533=Explosive Firemaking, 2534=-1, 2535=17955, 2536=17956, 2537=79540} {2531=4, 2532=0, 2533=Bomb Firemaking, 2534=-1, 2535=16699, 3303=16699, 2536=17962, 3304=3461, 2537=79549, 3305=3463, 4174=16703} {2546=2, 2531=4, 2532=0, 2533=Partyhat Firemaking, 2534=-1, 2535=16699, 3303=16699, 2536=16706, 3304=4726, 2537=94607, 3305=4726, 4174=16703} {2531=4, 2532=0, 2533=Enhanced potion making, 2534=-1, 2535=17097, 2536=17098, 2537=71932} {2531=4, 2532=0, 2533=Slayer battle cry, 2534=-1, 2535=17072} {2531=4, 2532=0, 2533=Iron-Fist Smithing, 2534=-1, 2535=17309, 2536=17311, 2537=72910} {2531=4, 2532=0, 2533=Zen Resting, 2534=-1, 2535=17302, 3303=17301, 4269=2591, 4175=17303} {2531=4, 2532=0, 2533=Strongarm Resting, 2534=-1, 2535=20305, 3303=20304, 4269=2869, 4175=20306} {2531=4, 2532=0, 2533=Arcane Resting, 2534=-1, 2535=20287, 3303=20286, 2536=20289, 3304=4003, 2537=72115, 3305=4004, 4268=4005, 4269=2870, 4175=20288} {2531=4, 2532=0, 2533=Sinister Slumber, 2534=-1, 2535=23655, 3303=23654, 2536=23658, 3304=4838, 2537=95860, 4268=4840, 4269=3166, 4175=23656} {2531=4, 2532=0, 2533=Crowd Serf, 2534=-1, 2535=23661, 3303=23660, 2536=23667, 3304=4841, 2537=95861, 4267=1, 2540=400, 4268=4843, 2541=100, 4269=3167, 4175=23662} {2531=4, 2532=0, 2533=Armchair Warrior, 2534=-1, 2535=23670, 3303=23669, 2536=23673, 3304=4844, 2537=95859, 4267=1, 4268=4846, 4269=3168, 4175=23671} {2531=4, 2532=0, 2533=Energy Drain Resting, 2534=-1, 2535=24688, 3303=24684, 2536=24687, 3304=5173, 2537=99197, 4268=5175, 4269=3275, 4175=24685} {2531=4, 2532=0, 2533=Wushanko Warrior Resting, 2534=-1, 2535=24682, 3303=24682, 4269=3276} {2531=4, 3363=1, 2532=0, 2533=Crystal Impling Resting, 2534=-1, 2535=24649, 3303=24647, 2536=24653, 3304=5164, 2537=97397, 4299=100, 4267=1, 2540=400, 4268=5165, 2541=100, 4269=3277, 4175=24651} {2531=4, 2532=0, 2533=Samurai Cooking, 2534=-1, 2535=17314, 3303=17314, 2536=17313, 3304=3306, 2537=72911} {2531=4, 2532=0, 2533=Arcane Cooking, 2534=-1, 2535=20298, 3303=20298, 2536=20299, 3304=3999, 2537=27731} {2531=4, 2532=0, 2533=Karate-Chop Fletching, 2534=-1, 2535=17299, 2536=17300, 2537=72915} {2531=4, 2532=0, 2533=Strongarm Burial, 2534=-1, 2535=20294, 3303=20294, 2536=20296, 3304=4001, 2537=72119, 3306=1, 3307=You crush the bones.} {2531=4, 2532=0, 2533=Arcane Smelting, 2534=-1, 2535=20292, 3303=20292, 2536=20293, 3304=4000, 2537=72116, 2540=100} {2531=4, 2532=0, 2533=Heroic Crit, 2534=-1, 2535=21302, 2536=21301, 2537=89943, 2540=150, 3532=1} {2531=4, 2532=0, 2533=Heroic Hitsparks, 2534=-1, 2535=21299, 2536=21300, 2537=89941, 2540=150, 3532=1} {4176=4619, 2531=4, 2532=0, 2533=Powerful divination, 2534=-1, 2535=22856, 3303=22856, 2536=22860, 2537=89548, 4185=4716, 4175=22864} {4176=4620, 4178=4633, 2531=4, 2532=0, 2533=Agile divination, 2534=-1, 2535=22857, 2536=22863, 2537=89548, 3641=22857, 4185=4717, 4173=22869} {2531=4, 2532=0, 2533=Powerful conversion, 2534=-1, 2535=22858, 3303=22865, 2536=22859, 3304=4625, 2537=89280, 3305=4626, 4174=22865, 4176=4621, 4177=4623, 4179=4629, 4180=4630, 4183=4718, 4184=4719, 3641=22858} {2531=4, 2532=0, 2533=Agile conversion, 2534=-1, 2535=22861, 3303=22867, 2536=22862, 3304=4627, 2537=89280, 3305=4628, 4174=22867, 4176=4622, 4177=4624, 4179=4631, 4180=4632, 4183=4720, 4184=4721, 3641=22861} {2531=4, 3363=0, 2532=1, 2533=Infernal teleport, 2534=-1, 2535=17108, 2536=17109, 2537=71927, 2538=17071, 2539=71935, 2540=300, 2541=200} {2531=4, 3363=0, 2532=1, 2533=Pegasus teleport, 2534=-1, 2535=17106, 2536=17107, 2537=71926, 2540=200, 2541=30} {2531=4, 3363=0, 2532=1, 2533=Assassin teleport, 2534=-1, 2535=17075, 2536=17073, 2537=71936, 2540=100} {2531=4, 3363=0, 2532=1, 2533=Gnome Air teleport, 2534=-1, 2535=17191, 2536=17192, 2537=72232, 2540=300, 2541=200} {2531=4, 2532=1, 2533=Sky-Jump Teleport, 2534=-1, 2535=17317, 2536=17320, 2537=72912, 2538=17319, 2539=72898, 2540=100} {2531=4, 2532=1, 2533=Rocket teleport, 2534=-1, 2535=17797, 2536=17798, 2537=77966, 2540=100, 3532=1} {2531=4, 2532=1, 2533=Ariane's teleport, 2534=-1, 2535=18825, 2536=18826, 2537=80596, 2540=100, 3532=1} {2531=4, 3363=0, 2532=1, 2533=Ozan's teleport, 2534=-1, 2535=18820, 2536=18821, 2537=80597, 2540=100, 3532=1} {2531=4, 2532=1, 2533=KGP Teleport, 2534=-1, 2535=19515, 2536=19526, 2537=21547, 2538=19517, 2539=82898, 2540=300, 2541=100} {2531=4, 2532=1, 2533=Goblin Mob Teleport, 2534=-1, 2535=19514, 4743=4721, 2536=19513, 2537=82897, 2538=19527, 2539=82897, 2540=350, 2541=50} {2531=4, 2532=1, 2533=Vyrewatch Teleport, 2534=-1, 2535=19508, 2536=19510, 2537=82899, 2538=19509, 2539=23421, 2540=300, 2541=100} {2531=4, 2532=1, 2533=Dragged Under Teleport, 2534=-1, 2535=19511, 2536=19512, 2537=82896, 2540=300, 2541=100} {2531=4, 2532=1, 2533=Guthixian war teleport, 2534=-1, 2535=19743, 2536=19747, 2537=84005, 2540=300, 2541=100} {2531=4, 2532=1, 2533=Saradominist war teleport, 2534=-1, 2535=19739, 2536=19740, 2537=84002, 2540=300, 2541=100} {2531=4, 2532=1, 2533=Zamorakian war teleport, 2534=-1, 2535=19745, 2536=19746, 2537=84008, 2540=300, 2541=100} {2531=4, 2532=1, 2533=Zarosian war teleport, 2534=-1, 2535=19741, 2536=19742, 2537=84010, 2540=300, 2541=100} {2531=4, 2532=1, 2533=Heart of Autumn teleport, 2534=-1, 2535=19983, 2536=19984, 2537=84494, 4299=1200, 4267=1, 2540=100, 3532=1} {2531=4, 2532=1, 2533=Heart of Spring teleport, 2534=-1, 2535=19981, 2536=19982, 2537=84493, 4299=1200, 4267=1, 2540=100, 3532=1} {2531=4, 2532=1, 2533=Arcane teleport, 2534=-1, 2535=20312, 2536=20315, 2537=72115, 2540=300, 2541=100} {2531=4, 2532=1, 2533=Strongarm teleport, 2534=-1, 2535=20313, 2536=20314, 2537=86904, 2540=300, 2541=100} {2531=4, 2532=1, 2533=Linza's teleport, 2534=-1, 2535=21182, 2536=21185, 2537=89244, 2540=350, 3532=1} {2531=4, 2532=1, 2533=Owen's Deliverance teleport, 2534=-1, 2535=21179, 2536=21180, 2537=89245, 2540=450, 3532=1} {2531=4, 3363=0, 2532=1, 2533=Wardrobe Malfunction, 2534=-1, 2535=21288, 2536=21289, 3752=21288, 2537=89948, 3753=21291, 2538=21292, 3754=89948, 2539=89937, 3755=21290, 3756=89938} {2531=4, 2532=1, 2533=Air Rage, 2534=-1, 2535=21295, 2536=21297, 3752=21296, 2537=89947, 3753=21297, 2538=21294, 3754=89947, 2539=89939, 3755=21294, 2540=300, 3756=89939, 2541=100} {2531=4, 2532=1, 2533=Wings of Justice teleport, 2534=-1, 2535=22519, 2536=22521, 2537=90942, 2538=22520, 2539=93047, 2540=300, 2541=100} {2531=4, 2532=1, 2533=Fist of Strength teleport, 2534=-1, 2535=22516, 2536=22518, 2537=71927, 2538=22517, 2539=93046, 2540=300, 2541=100} {2531=4, 2532=1, 2533=Trapeze teleport, 2534=-1, 2535=22744, 2536=22743, 2537=93561, 2540=300, 2541=100} {2531=4, 3363=0, 2532=1, 2533=Cannonball teleport, 2534=-1, 2535=22741, 2536=22742, 2537=93559, 4267=1, 4299=1600, 2540=300, 2541=100} {2531=4, 3363=1, 2532=1, 2533=Magician teleport, 2534=-1, 2535=22747, 2536=22745, 2537=93560, 2538=22746, 2539=93558, 4267=1, 4299=1300, 2540=300, 2541=100} {2531=4, 2532=1, 2533=Dark Transformation Teleport, 2534=-1, 2535=23799, 2536=23803, 2537=96498, 2538=23815, 2539=96503, 2540=500, 2541=100} {2531=4, 2532=1, 2533=Ruler of the Ancient Dead Teleport, 2534=-1, 2535=23817, 4295=23818, 2536=23820, 4296=96493, 2537=96497, 2538=23819, 2539=96484, 2540=500, 2541=100} {2531=4, 2532=1, 2533=Scientific Breakthrough Teleport, 2534=-1, 2535=23812, 4295=23814, 2536=23816, 4296=91937, 2537=96502, 2538=23813, 2539=96483, 4299=1650, 2540=300, 2541=100} {2531=4, 2532=1, 2533=Shadow blast teleport, 2534=-1, 2535=24487, 2536=24488, 2537=98018, 2540=500, 2541=100} {2531=4, 3363=1, 2532=1, 2533=Crystal Singer teleport, 2534=-1, 2535=24613, 2536=24612, 2537=99139, 4267=1, 4299=1200, 2540=300, 2541=100} {2531=4, 3363=0, 2532=1, 2533=Enhanced high alchemy, 2534=-1, 2535=17099, 3303=17099, 2536=17100, 3304=3214, 2537=71800} {2531=4, 3363=0, 2532=1, 2533=Unstable Alchemy, 2534=-1, 2535=17952, 3303=17952, 4743=4721, 2536=17951, 3304=3458, 2537=79542} {2531=4, 2532=4, 2533=Death by Air, 2534=-1, 2535=20162, 3303=20162, 2536=20163, 3304=3955, 2537=85651, 2540=200} {2531=4, 2532=4, 2533=Death by Water, 2534=-1, 2535=20164, 3303=20164, 2536=20165, 3304=3956, 2537=85655, 2540=200} {2531=4, 2532=4, 2533=Death by Earth, 2534=-1, 2535=20166, 3303=20166, 2536=20167, 3304=3957, 2537=85652} {2531=4, 2532=4, 2533=Death by Fire, 2534=-1, 2535=20168, 3303=20168, 2536=20169, 3304=3958, 2537=85654} [Hidden Content] The appropriate section to post this under a configuration section, but there is not one.
  5. Wonder what next server you're leaking, Flavius.
  6. Please post an introduction. Its always nice to do so when joining a new community. This message will dismiss itself once you have done s

Contact

[email protected]

astra.security

What is a RSPS?

A RSPS, also known as RuneScape private server, is an online game based on RuneScape, and controlled by independent individuals.

Popular RSPS Servers

Runewild Ikov RedemptionRSPS

Disclaimer

Runesuite is not affiliated with runescape, jagex in any way & exists solely for educational purposes.

×
×
  • Create New...