it's possible for the bot to equip unbound items (which you usually get from drops)?
you must accept this.
Equipt question
Re: Equipt question
I've been able to figure out that the frame is called "StaticPopup1" and the accept button is called "StaticPopup1Button1". All you need to do now is figure out what function is called when clicking that button. I haven't been able to figure it out.
- Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
- I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
- How to: copy and paste in micromacro
________________________
Quote:- “They say hard work never hurt anybody, but I figure, why take the chance.”
- Ronald Reagan
Re: Equipt question
yes it works. great THX
inventory:useItem(xxx);
sendMacro("StaticPopup_OnClick(StaticPopup1, 1);");
http://www.theromwiki.com/API:StaticPopup_OnClick
inventory:useItem(xxx);
sendMacro("StaticPopup_OnClick(StaticPopup1, 1);");
http://www.theromwiki.com/API:StaticPopup_OnClick
Re: Equipt question
I missed that one. Great! That should be a solution for other popups too.bullit0 wrote:yes it works. great THX
inventory:useItem(xxx);
sendMacro("StaticPopup_OnClick(StaticPopup1, 1);");
http://www.theromwiki.com/API:StaticPopup_OnClick
- Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
- I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
- How to: copy and paste in micromacro
________________________
Quote:- “They say hard work never hurt anybody, but I figure, why take the chance.”
- Ronald Reagan
Re: Equipt question
how can be called popup for binding itemsrock5 wrote:That should be a solution for other popups too.