Thread: Runescape Beastary json format

Results 1 to 8 of 8
  1. #1 Runescape Beastary json format 
    Registered Member

    Join Date
    Sep 2016
    Posts
    181
    Thanks given
    84
    Thanks received
    74
    Rep Power
    452
    After making this I just found out there was something almost identical to it already here: https://www.rune-server.ee/runescape...iary-dump.html

    Oh well, will post anyway :/

    https://www.dropbox.com/s/nwuba2z023...iary.json?dl=1

    Format:
    Code:
      {
        "name": "Unicorn",
        "id": 89,
        "description": "Horse with a horn.",
        "weakness": "Arrow",
        "attackable": true,
        "aggressive": false,
        "poisonous": false,
        "experience": 32.1,
        "lifePoints": 550,
        "combatLevel": 15,
        "defenceLevel": 11,
        "attackLevel": 1,
        "magicLevel": 11,
        "rangedLevel": 1,
        "slayerLevelRequirement": 0,
        "size": 2,
        "membersOnly": false,
        "slayerCategory": "n/a",
        "areas": [
          "RuneScape Surface"
        ],
        "animations": {
          "death": 6377,
          "attack": 6376
        }
      },
    Credits: Nomac for sending me the dumps via discord pms, me for converting them from some randy text format to json format

    edit: god damn spelled Beastiary wrong
    Reply With Quote  
     

  2. #2  
    Respected Member


    Kris's Avatar
    Join Date
    Jun 2016
    Age
    26
    Posts
    3,638
    Thanks given
    820
    Thanks received
    2,642
    Rep Power
    5000
    Quote Originally Posted by knd6060 View Post
    edit: god damn spelled Beastiary wrong
    X2. It's actually called 'bestiary'.
    Attached image
    Reply With Quote  
     

  3. #3  
    Registered Member
    bracket's Avatar
    Join Date
    Aug 2009
    Posts
    5,278
    Thanks given
    1,059
    Thanks received
    1,465
    Rep Power
    5000
    Thanks a lot for this
    Reply With Quote  
     

  4. #4  
    Registered Member
    Tyluur's Avatar
    Join Date
    Jun 2010
    Age
    26
    Posts
    5,103
    Thanks given
    1,819
    Thanks received
    1,767
    Rep Power
    2438
    Quote Originally Posted by blakeman8192 View Post
    Keep trying. Quitting is the only true failure.
    Spoiler for skrrrrr:

    Attached image
    Reply With Quote  
     

  5. #5  
    Registered Member

    Join Date
    Sep 2016
    Posts
    181
    Thanks given
    84
    Thanks received
    74
    Rep Power
    452
    Quote Originally Posted by Tyluur View Post
    Ah yeh Nomac used this for the dump quite sure, it was in this style of formatting before like in the link:
    ClanMate{name=Rosaline, rank=Owner, experience=463143387, kills=0}
    Is that a standard format? Didn't want to parse that lol

    Hmm, funky toString method
    Code:
    @Override
    	public String toString() {
    		return MoreObjects.toStringHelper(this)
    			.add("name", name)
    			.add("id", id)
    			.add("description", description)
    			.add("weakness", getWeakness().orElse("n/a"))
    			.add("attackable", attackable)
    			.add("aggressive", aggressive)
    			.add("poisonous", poisonous)
    			.add("experience", getExperience())
    			.add("lifePoints", lifePoints)
    			.add("combatLevel", combatLevel)
    			.add("defenceLevel", defenceLevel)
    			.add("attackLevel", attackLevel)
    			.add("magicLevel", magicLevel)
    			.add("rangedLevel", rangedLevel)
    			.add("slayerLevelRequirement", requiredSlayerLevel)
    			.add("size", size)
    			.add("membersOnly", membersOnly)
    			.add("slayerCategory", getSlayerCategory().orElse("n/a"))
    			.add("areas", Arrays.toString(areas))
    			.add("animations", animations)
    			.toString();
    	}
    Quote Originally Posted by Kris View Post
    X2. It's actually called 'bestiary'.
    Fucking hell lmfao thought u were memeing. Oh well, not gonna forget now
    Reply With Quote  
     

  6. #6  
    Runescape Beastary json format



    Scu11's Avatar
    Join Date
    Aug 2007
    Age
    30
    Posts
    16,307
    Thanks given
    7,215
    Thanks received
    12,308
    Rep Power
    5000
    Quote Originally Posted by knd6060 View Post
    Ah yeh Nomac used this for the dump quite sure, it was in this style of formatting before like in the link:
    ClanMate{name=Rosaline, rank=Owner, experience=463143387, kills=0}
    Is that a standard format? Didn't want to parse that lol

    Hmm, funky toString method
    Code:
    @Override
    	public String toString() {
    		return MoreObjects.toStringHelper(this)
    			.add("name", name)
    			.add("id", id)
    			.add("description", description)
    			.add("weakness", getWeakness().orElse("n/a"))
    			.add("attackable", attackable)
    			.add("aggressive", aggressive)
    			.add("poisonous", poisonous)
    			.add("experience", getExperience())
    			.add("lifePoints", lifePoints)
    			.add("combatLevel", combatLevel)
    			.add("defenceLevel", defenceLevel)
    			.add("attackLevel", attackLevel)
    			.add("magicLevel", magicLevel)
    			.add("rangedLevel", rangedLevel)
    			.add("slayerLevelRequirement", requiredSlayerLevel)
    			.add("size", size)
    			.add("membersOnly", membersOnly)
    			.add("slayerCategory", getSlayerCategory().orElse("n/a"))
    			.add("areas", Arrays.toString(areas))
    			.add("animations", animations)
    			.toString();
    	}
    why would you ever parse the toString output?? just use the library to dump it to whatever format you want...
    Last edited by Scu11; 10-05-2019 at 10:18 PM.

    Attached image
    Reply With Quote  
     

  7. #7  
    Registered Member
    Tyluur's Avatar
    Join Date
    Jun 2010
    Age
    26
    Posts
    5,103
    Thanks given
    1,819
    Thanks received
    1,767
    Rep Power
    2438
    Quote Originally Posted by knd6060 View Post
    Ah yeh Nomac used this for the dump quite sure, it was in this style of formatting before like in the link:
    ClanMate{name=Rosaline, rank=Owner, experience=463143387, kills=0}
    Is that a standard format? Didn't want to parse that lol

    Hmm, funky toString method
    Code:
    @Override
    	public String toString() {
    		return MoreObjects.toStringHelper(this)
    			.add("name", name)
    			.add("id", id)
    			.add("description", description)
    			.add("weakness", getWeakness().orElse("n/a"))
    			.add("attackable", attackable)
    			.add("aggressive", aggressive)
    			.add("poisonous", poisonous)
    			.add("experience", getExperience())
    			.add("lifePoints", lifePoints)
    			.add("combatLevel", combatLevel)
    			.add("defenceLevel", defenceLevel)
    			.add("attackLevel", attackLevel)
    			.add("magicLevel", magicLevel)
    			.add("rangedLevel", rangedLevel)
    			.add("slayerLevelRequirement", requiredSlayerLevel)
    			.add("size", size)
    			.add("membersOnly", membersOnly)
    			.add("slayerCategory", getSlayerCategory().orElse("n/a"))
    			.add("areas", Arrays.toString(areas))
    			.add("animations", animations)
    			.toString();
    	}


    Fucking hell lmfao thought u were memeing. Oh well, not gonna forget now
    https://www.baeldung.com/whats-new-in-guava-18, see section 2: MoreObjects Utility Class

    just dump the data and store it in whatever format you want
    Quote Originally Posted by blakeman8192 View Post
    Keep trying. Quitting is the only true failure.
    Spoiler for skrrrrr:

    Attached image
    Reply With Quote  
     

  8. #8  
    Registered Member

    Join Date
    Sep 2016
    Posts
    181
    Thanks given
    84
    Thanks received
    74
    Rep Power
    452
    At the time I didn't have the library / know it existed, Nomac sent me a data dump in that format so I did what I could. We should be asking why he had a dump in that format himself though
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. [REQ] 119 item_def in JSON format
    By mr selby in forum Configuration
    Replies: 0
    Last Post: 10-19-2016, 03:03 PM
  2. All OSRS #121 NPC Sizes in JSON format
    By _Lev in forum Configuration
    Replies: 0
    Last Post: 09-14-2016, 07:25 AM
  3. 2,362 NPCSpawns Json format
    By CrazyPanda in forum Configuration
    Replies: 8
    Last Post: 05-19-2016, 12:41 AM
  4. Json Format?
    By PettyPS in forum Help
    Replies: 5
    Last Post: 04-15-2016, 02:16 AM
  5. Converting to Json format
    By CrazyPanda in forum Help
    Replies: 1
    Last Post: 02-25-2015, 05:13 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •