December 2, 201510 yr 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.
December 2, 201510 yr 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, 201510 yr by Explv
December 2, 201510 yr Author 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, 201510 yr by OSRS Sebastian
December 2, 201510 yr 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, 201510 yr by Explv
December 2, 201510 yr Author 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!
December 2, 201510 yr - 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, 201510 yr by Explv
Create an account or sign in to comment