July 14, 20187 yr I was reading through the api and was wondering if there is a way to fetch other peoples level and stats rather than just fetching my own. I was planning on using it to avoid players in PVP worlds while looting. From what I am reading on https://osbot.org/api/org/osbot/rs07/api/Skills.html it seems to only refer to my Player.
July 14, 20187 yr 6 minutes ago, AdhesiveBandage said: I was reading through the api and was wondering if there is a way to fetch other peoples level and stats rather than just fetching my own. I was planning on using it to avoid players in PVP worlds while looting. From what I am reading on https://osbot.org/api/org/osbot/rs07/api/Skills.html it seems to only refer to my Player. I don't think you can get anything other than their combat lvl, whether they're skulled etc. using the API: Player player = getPlayers().closest("Adhesivebandage"); int lvl = player.getCombatLevel(); If you actually need their different skill levels (not sure why you would), you can make use of the official OSRS web API: Edited July 14, 20187 yr by Explv
July 14, 20187 yr Author 15 hours ago, Explv said: I don't think you can get anything other than their combat lvl, whether they're skulled etc. using the API: Player player = getPlayers().closest("Adhesivebandage"); int lvl = player.getCombatLevel(); If you actually need their different skill levels (not sure why you would), you can make use of the official OSRS web API: This solved my problem. Thanks for the help!
Create an account or sign in to comment