Sebastian Posted December 2, 2015 Share Posted December 2, 2015 Hi. For my tutorial island script, i need to perform an emote. I have been searching on the Osbot forums. But nothing seems to work.. Do you guys have any solutions? Also.. I really want to understand widgets. But i don't quite seem to get it. Thanks in advance, Sebastian. Quote Link to comment Share on other sites More sharing options...
Explv Posted December 2, 2015 Share Posted December 2, 2015 (edited) On 12/2/2015 at 11:37 PM, OSRS Sebastian said: Hi. For my tutorial island script, i need to perform an emote. I have been searching on the Osbot forums. But nothing seems to work.. Do you guys have any solutions? Also.. I really want to understand widgets. But i don't quite seem to get it. Thanks in advance, Sebastian. I think its 216, 1, 0 -> some number getWidgets().get(216, 1, 1).hover(); getMouse().click(false); Edited December 2, 2015 by Explv 1 Quote Link to comment Share on other sites More sharing options...
Sebastian Posted December 2, 2015 Author Share Posted December 2, 2015 (edited) On 12/2/2015 at 11:42 PM, Explv said: I think its 216, 1, 0 -> some number getWidgets().get(216, 1, 1).hover(); getMouse().click(false); Haha, it was the "No" emote. Funny . But seriously tho, can you explain this code. I mean, i can just copy pasta it.. But don't really understand what this line of code did. For instance, what is does 216, 1,1 mean? Edited December 2, 2015 by OSRS Sebastian Quote Link to comment Share on other sites More sharing options...
Explv Posted December 2, 2015 Share Posted December 2, 2015 (edited) On 12/2/2015 at 11:47 PM, OSRS Sebastian said: Haha, it was the "No" emote. Funny . But seriously tho, can you explain this code. I mean, i can just copy pasta it.. But don't really understand what this line of code did. Try enabling widgets in settings, and hovering your mouse over different parts of the screen. The screen is separated into widgets. Each widget has an identifier that is either 2 or 3 values: Parent, Child, Child of Child or Parent, Child In this case we have the values 216, 1, 1 216 is the parent widget, 1 is the widget that contains all of the emotes, and finally 1 is the emote So each of the emotes will have widget values 216, 1, ( 0 -> Some number) Edited December 2, 2015 by Explv 1 Quote Link to comment Share on other sites More sharing options...
Sebastian Posted December 2, 2015 Author Share Posted December 2, 2015 On 12/2/2015 at 11:53 PM, Explv said: Try enabling widgets in settings, and hovering your mouse over different parts of the screen. The screen is separated into widgets. Each widget has an identifier that is either 2 or 3 values: Parent, Child, Child of Child or Parent, Child In this case we have the values 216, 1, 1 216 is the parent widget, 1 is the widget that contains all of the emotes, and finally 1 is the emote So each of the emotes will have widget values 216, 1, ( 1 -> Some number) Thanks bro! Understanding it now! Really appreciate it! Quote Link to comment Share on other sites More sharing options...
Explv Posted December 2, 2015 Share Posted December 2, 2015 (edited) - On 12/2/2015 at 11:53 PM, OSRS Sebastian said: Thanks bro! Understanding it now! Really appreciate it! Here is an example image where I have turned widgets on in settings: As you can see, the emote widget is highlighted in green. It has the value (216, 1, 1) Its parent can be seen highlighted in red, it is the widget containing all emotes, with the value (216, 1) Edited December 2, 2015 by Explv 1 Quote Link to comment Share on other sites More sharing options...