Thread: Item spawn dump

Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 26
  1. #11  
    Registered Member
    Tyluur's Avatar
    Join Date
    Jun 2010
    Age
    26
    Posts
    5,103
    Thanks given
    1,818
    Thanks received
    1,767
    Rep Power
    2438
    Quote Originally Posted by Rojeh View Post
    Following your suggestions I did some twisting and have updated the json file on google drive, let me know if there is anything else.
    Updated the link on my gist as well =].

    Quote Originally Posted by blakeman8192 View Post
    Keep trying. Quitting is the only true failure.
    Spoiler for skrrrrr:

    Attached image
    Reply With Quote  
     

  2. #12  
    Community Veteran

    mige5's Avatar
    Join Date
    Aug 2008
    Posts
    5,528
    Thanks given
    573
    Thanks received
    1,410
    Rep Power
    2114
    Quote Originally Posted by Rojeh View Post
    Following your suggestions I did some twisting and have updated the json file on google drive, let me know if there is anything else.
    Investigated the issue with breads more.

    it still seems to be adding the gold bar positions from here to the bread data:
    https://oldschool.runescape.wiki/api...mpdgroups=pins

    also it looks like its not adding the 1 bread spawn from here thats on different map:
    https://oldschool.runescape.wiki/api...mpdgroups=pins
    Number of page #1 releases with most views & posts: (Updated: 2023)
    RS2 server section: 1
    RS2 client section: 2
    Reply With Quote  
     

  3. #13  
    Registered Member Rojeh's Avatar
    Join Date
    Jun 2012
    Posts
    353
    Thanks given
    7
    Thanks received
    20
    Rep Power
    75
    Quote Originally Posted by mige5 View Post
    Investigated the issue with breads more.

    it still seems to be adding the gold bar positions from here to the bread data:
    https://oldschool.runescape.wiki/api...mpdgroups=pins

    also it looks like its not adding the 1 bread spawn from here thats on different map:
    https://oldschool.runescape.wiki/api...mpdgroups=pins
    Thank you for the information.
    I am investigating where the script is messing up. I will keep you posted.
    • If it been done before you can do it too!
    • We're all humans, built from the same resources by different layouts and schemes.
    • Nobody is perfect, everyone has their own defects and disabilities.
    • Choose to be kind, not because you have to but because you understand how it feels to be treated bad.
    • Be against racism regardless of how you were raised because nobody loves feeling odd and not belonging.
      If any of the above inspires you make sure to pass it on
    Reply With Quote  
     

  4. #14  
    Community Veteran

    mige5's Avatar
    Join Date
    Aug 2008
    Posts
    5,528
    Thanks given
    573
    Thanks received
    1,410
    Rep Power
    2114
    Quote Originally Posted by Rojeh View Post
    Thank you for the information.
    I am investigating where the script is messing up. I will keep you posted.
    any progress?
    Number of page #1 releases with most views & posts: (Updated: 2023)
    RS2 server section: 1
    RS2 client section: 2
    Reply With Quote  
     

  5. #15  
    Registered Member Rojeh's Avatar
    Join Date
    Jun 2012
    Posts
    353
    Thanks given
    7
    Thanks received
    20
    Rep Power
    75
    Quote Originally Posted by mige5 View Post
    any progress?
    It seems that solely relying on the API for the item name similarly to how I retrieved the quantity did more harm than good so I did switch to this format when item name is available on the API like you previously suggested

    Code:
        {
          "x": XXXX,
          "y": YYYY,
          "z": Z,
          "quantity": #,
          "item_name": "item_name"
        }
    however be assured you may find an item twice in the json on this update
    • One with the item name's and a list of spawns of it all over the world map
    • The second will be under a specific area like Corsair Cove Resource Area

    but overall there shouldn't be anything else to disturb, of course keep me posted if otherwise.

    The file has been updated on google drive
    • If it been done before you can do it too!
    • We're all humans, built from the same resources by different layouts and schemes.
    • Nobody is perfect, everyone has their own defects and disabilities.
    • Choose to be kind, not because you have to but because you understand how it feels to be treated bad.
    • Be against racism regardless of how you were raised because nobody loves feeling odd and not belonging.
      If any of the above inspires you make sure to pass it on
    Reply With Quote  
     

  6. #16  
    Community Veteran

    mige5's Avatar
    Join Date
    Aug 2008
    Posts
    5,528
    Thanks given
    573
    Thanks received
    1,410
    Rep Power
    2114
    Quote Originally Posted by Rojeh View Post
    It seems that solely relying on the API for the item name similarly to how I retrieved the quantity did more harm than good so I did switch to this format when item name is available on the API like you previously suggested

    Code:
        {
          "x": XXXX,
          "y": YYYY,
          "z": Z,
          "quantity": #,
          "item_name": "item_name"
        }
    however be assured you may find an item twice in the json on this update
    • One with the item name's and a list of spawns of it all over the world map
    • The second will be under a specific area like Corsair Cove Resource Area

    but overall there shouldn't be anything else to disturb, of course keep me posted if otherwise.

    The file has been updated on google drive
    Thx, only tested a bit in-game but seems great
    Number of page #1 releases with most views & posts: (Updated: 2023)
    RS2 server section: 1
    RS2 client section: 2
    Reply With Quote  
     

  7. #17  
    Community Veteran

    mige5's Avatar
    Join Date
    Aug 2008
    Posts
    5,528
    Thanks given
    573
    Thanks received
    1,410
    Rep Power
    2114
    Quote Originally Posted by Rojeh View Post
    but overall there shouldn't be anything else to disturb, of course keep me posted if otherwise.
    Actually now found an issue, im not sure u can fix :/
    Attached image
    checked the data, and yes it does have the position in there: https://oldschool.runescape.wiki/api...mpdgroups=pins (not sure if theres something there to tell if the pin should be shown or not) [also not sure if the last one should be called coins or gold ring, for some reason its coins in there atleast]

    however if u look at the actual map image for the spawns, there is no pin shown. like for burnt bones: Burnt bones - OSRS Wiki (cant seem to directly link to the map, so u have to open it from there manually using the maplink)
    Last edited by mige5; 03-21-2023 at 07:34 PM.
    Number of page #1 releases with most views & posts: (Updated: 2023)
    RS2 server section: 1
    RS2 client section: 2
    Reply With Quote  
     

  8. #18  
    Registered Member Rojeh's Avatar
    Join Date
    Jun 2012
    Posts
    353
    Thanks given
    7
    Thanks received
    20
    Rep Power
    75
    Quote Originally Posted by mige5 View Post
    Actually now found an issue, im not sure u can fix :/

    checked the data, and yes it does have the position in there: https://oldschool.runescape.wiki/api...mpdgroups=pins (not sure if theres something there to tell if the pin should be shown or not)

    however if u look at the actual map image for the spawns, there is no pin shown. like for burnt bones: Burnt bones - OSRS Wiki (cant seem to directly link to the map, so u have to open it from there manually using the maplink)
    I am not sure yet how to face this issue but does the map id tell you anything?

    This is list of map ids with their name: (With some extra information)
    https://maps.runescape.wiki/osrs/ver.../basemaps.json
    Last edited by Rojeh; 03-21-2023 at 07:31 AM.
    • If it been done before you can do it too!
    • We're all humans, built from the same resources by different layouts and schemes.
    • Nobody is perfect, everyone has their own defects and disabilities.
    • Choose to be kind, not because you have to but because you understand how it feels to be treated bad.
    • Be against racism regardless of how you were raised because nobody loves feeling odd and not belonging.
      If any of the above inspires you make sure to pass it on
    Reply With Quote  
     

  9. #19  
    Community Veteran

    mige5's Avatar
    Join Date
    Aug 2008
    Posts
    5,528
    Thanks given
    573
    Thanks received
    1,410
    Rep Power
    2114
    Quote Originally Posted by Rojeh View Post
    I am not sure yet how to face this issue but does the map id tell you anything?

    This is list of map ids with their name: (With some extra information)
    https://maps.runescape.wiki/osrs/ver.../basemaps.json
    Hey, i think u need to check if the item spawn pos is within the map bounds given to it, if not skip it as invalid spawn.

    EDIT: or I can do that check myself if u include the assigned mapId in the spawn data.

    EDIT2:

    Another issue I noticed:

    Items that can be picked from objects need to be left out, for example: potato
    Attached image
    Attached image
    Last edited by mige5; 03-22-2023 at 04:35 PM.
    Number of page #1 releases with most views & posts: (Updated: 2023)
    RS2 server section: 1
    RS2 client section: 2
    Reply With Quote  
     

  10. #20  
    Registered Member Rojeh's Avatar
    Join Date
    Jun 2012
    Posts
    353
    Thanks given
    7
    Thanks received
    20
    Rep Power
    75
    Quote Originally Posted by mige5 View Post
    Hey, i think u need to check if the item spawn pos is within the map bounds given to it, if not skip it as invalid spawn.

    EDIT: or I can do that check myself if u include the assigned mapId in the spawn data.

    EDIT2:

    Another issue I noticed:

    Items that can be picked from objects need to be left out, for example: potato
    I don't understand what you mean by checking if the item spawn is within the map bounds, the data on the API is a little bit confusing, can you elaborate how it works? or I can add the mapId instead to each spawn if it saves you some time.

    Regarding the fields, I will take them out of the file, no worries.
    • If it been done before you can do it too!
    • We're all humans, built from the same resources by different layouts and schemes.
    • Nobody is perfect, everyone has their own defects and disabilities.
    • Choose to be kind, not because you have to but because you understand how it feels to be treated bad.
    • Be against racism regardless of how you were raised because nobody loves feeling odd and not belonging.
      If any of the above inspires you make sure to pass it on
    Reply With Quote  
     

Page 2 of 3 FirstFirst 123 LastLast

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. king-client (item spawning)
    By Rune-energy in forum Downloads
    Replies: 16
    Last Post: 06-18-2008, 11:04 AM
  2. Securing Item Spawning
    By darkest_mage in forum Tutorials
    Replies: 0
    Last Post: 09-16-2007, 07:34 AM
  3. adding item spawns my way
    By luke1105 in forum Tutorials
    Replies: 1
    Last Post: 09-08-2007, 03:45 PM
  4. ~-~-~ Item Recolor Dump ~-~-~
    By MrWicked in forum Tutorials
    Replies: 18
    Last Post: 09-01-2007, 03:41 AM
  5. making items spawn on ground
    By messiaH in forum Tutorials
    Replies: 4
    Last Post: 05-18-2007, 04:12 AM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •