jamess 0 Posted November 18, 2018 Hi. I am unable to figure out how to check if a stamina potion is active. I've tried looking in the widget debugger but I can't find anything that seems to represent stamina potion being active. Does anyone know how to do this? Thanks
jamess 0 Author Posted November 18, 2018 Hi i found something under player settings with the value 638 which seems to be run related. By watching the debugger output I was able to find a config 1575 that had a value of over 4 million when a stamina potion was active and 0 when it wasn't. I was able to find this value in my bot by doing: PlayerSettings playerSettings = new PlayerSettings(getClient()); if (playerSettings.getConfig(1575) != 0) { log("Stam is active"); } which worked. Thanks a lot for your help.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.