Isolate Posted April 19, 2014 Share Posted April 19, 2014 is there a way of detecting quest completion status? I remember using a widget explorer and and there was one for every single quest. it had a quest name and then something like |~~~~~~~~~~~~~~~~~~~~~~| and i was wondering if you can detect how much of a quest is done? Link to comment Share on other sites More sharing options...
Swizzbeat Posted April 19, 2014 Share Posted April 19, 2014 VARPS aka configs Link to comment Share on other sites More sharing options...
Isolate Posted April 19, 2014 Author Share Posted April 19, 2014 On 4/19/2014 at 11:16 PM, Swizzbeat said: VARPS aka configs elaborate plez Link to comment Share on other sites More sharing options...
Swizzbeat Posted April 19, 2014 Share Posted April 19, 2014 On 4/19/2014 at 11:25 PM, Isolate said: elaborate plez There's an array of values stored about your character (in the actual game) called VARPS. If you go to the client settings and check the Configs option you'll be able to see them change in the console when you do certain things. For example, becoming poisoned changes a specific value in your players variables which basically "tells" the game that you are poisoned. You'll understand it a lot more once you see it in-game. Link to comment Share on other sites More sharing options...
Isolate Posted April 20, 2014 Author Share Posted April 20, 2014 On 4/19/2014 at 11:34 PM, Swizzbeat said: There's an array of values stored about your character (in the actual game) called VARPS. If you go to the client settings and check the Configs option you'll be able to see them change in the console when you do certain things. For example, becoming poisoned changes a specific value in your players variables which basically "tells" the game that you are poisoned. You'll understand it a lot more once you see it in-game. ahh thank you im assuming alot so ill try and work out quest ones? Link to comment Share on other sites More sharing options...
Swizzbeat Posted April 20, 2014 Share Posted April 20, 2014 On 4/20/2014 at 12:52 AM, Isolate said: ahh thank you im assuming alot so ill try and work out quest ones? The specific quests config value will change based on how far along you are in the quest, making it easy to detect what part you should be completing. It should be easy to find because it will continue to change as you progress in the quest. Link to comment Share on other sites More sharing options...
Isolate Posted April 20, 2014 Author Share Posted April 20, 2014 On 4/20/2014 at 1:05 AM, Swizzbeat said: The specific quests config value will change based on how far along you are in the quest, making it easy to detect what part you should be completing. It should be easy to find because it will continue to change as you progress in the quest. this is all i see and i don;t really get it Link to comment Share on other sites More sharing options...
lazyy Posted April 20, 2014 Share Posted April 20, 2014 write your own method Link to comment Share on other sites More sharing options...
Joseph Posted April 20, 2014 Share Posted April 20, 2014 On 4/20/2014 at 9:39 AM, Isolate said: this is all i see and i don;t really get it Ya that's what your looking for. You need to activate the change to figure out which config it is. It's hard to explain it, it's better if you see it for your self. A great example would be for you to go into your construction house in building mode. Then change it to non building mode. And you see how config 780 changes from 0 to 1024 when buildings mode is on. You could create you own little method. private boolean buildingModeOn() { return client.getConfig(780) == 1024; } Link to comment Share on other sites More sharing options...
TheScrub Posted April 20, 2014 Share Posted April 20, 2014 if you need an example of varpbits look at my snippets alot of them use them.. http://osbot.org/forum/topic/45485-farming-leprechaun-toolshed/ http://osbot.org/forum/topic/36911-prayer-api/ Link to comment Share on other sites More sharing options...
Soldtodie Posted April 20, 2014 Share Posted April 20, 2014 Yes you can get the quest completion status with the configs. For example Romeo & Juliet is the config 144. 0 = Not started, 10 = started, 20 = Talked with Juliet, 30 = Brought the message to Romeo and now speak with Father Lawrence. Then i stopped. Link to comment Share on other sites More sharing options...
Isolate Posted April 20, 2014 Author Share Posted April 20, 2014 On 4/20/2014 at 11:11 AM, lazyy said: write your own method thats what i'm trying to understand how to do -.-" On 4/20/2014 at 11:59 AM, josedpay said: Ya that's what your looking for. You need to activate the change to figure out which config it is. It's hard to explain it, it's better if you see it for your self. A great example would be for you to go into your construction house in building mode. Then change it to non building mode. And you see how config 780 changes from 0 to 1024 when buildings mode is on. You could create you own little method. private boolean buildingModeOn() { return client.getConfig(780) == 1024; } so if i start a new quest one of them will change? + is this all the configs? On 4/20/2014 at 12:09 PM, TheScrub said: if you need an example of varpbits look at my snippets alot of them use them.. http://osbot.org/forum/topic/45485-farming-leprechaun-toolshed/ http://osbot.org/forum/topic/36911-prayer-api/ thanks! ill check these out On 4/20/2014 at 3:59 PM, Soldtodie said: Yes you can get the quest completion status with the configs. For example Romeo & Juliet is the config 144. 0 = Not started, 10 = started, 20 = Talked with Juliet, 30 = Brought the message to Romeo and now speak with Father Lawrence. Then i stopped. how did you find this though? i do not appear to have 144. the main problem i have is not understand this table of values that shows up. so when i start doing something a value appears? and then does it stay until the next change or only appear whilst i complete that part of something Link to comment Share on other sites More sharing options...
Isolate Posted April 21, 2014 Author Share Posted April 21, 2014 from what i can see now it acts as a history of recent ones? Link to comment Share on other sites More sharing options...
Swizzbeat Posted April 21, 2014 Share Posted April 21, 2014 On 4/21/2014 at 12:12 AM, Isolate said: from what i can see now it acts as a history of recent ones? Anything that changes get's logged to your console messages. You will be the config that changed, the decimal value, as well as the hex (if I remember correctly). Link to comment Share on other sites More sharing options...
TheScrub Posted April 21, 2014 Share Posted April 21, 2014 On 4/21/2014 at 3:22 AM, Swizzbeat said: Anything that changes get's logged to your console messages. You will be the config that changed, the decimal value, as well as the hex (if I remember correctly). i would suggest finding the quest config making a small script just to draw it on the canvas so you get the original value Link to comment Share on other sites More sharing options...