-
-
Notifications
You must be signed in to change notification settings - Fork 126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mailing to a banker #531
Comments
Hey, not so long ago - i can't recall during which expansion got introduced maybe Legion or BFA - the in-game Mailbox lua API got restricted due of massive amount of malicious 3rd party Addons and WeakAura Profiles. Which means only very basic info can be extracted by the To locate the Mailbox GameObject on the screen, with a naive approach, scanning the whole screen area until the cursor changes should be no problem. Unless the view is obstructed.
While the Filling the Then, I was unable to open up the chat input by pressing Enter. Which means, i was unable to Copy & Paste -> Execute lua commands. That means, it brings a lot of complexity to select which item should be attached in the mail. After thinking about it, one solution would be to select the item via the mouse which right click. This step requires to detect a given item on the screen while the inventory is open. However in case using 3rd party addon for bags, the layout can change. The other way is to create a predefined macro in prior. Editing macro from the bot has not yet been done before, so that's a new thing as well. Default macro's have limited 255 characters to use. With this macro you can select /run c=C_Container for bag=0,4 do for slot=1,c.GetContainerNumSlots(bag) do i=c.GetContainerItemInfo(bag,slot) if i and i.quality==1 then c.UseContainerItem(bag,slot) end end end It would be super nice edit this script from the c# code side. Even convenient would be, to open up the chat window while the Maybe other 3rd party addons have auto mailing feature, out of the blue, i can't recall any addon what i used in the past which had such feature in it. |
With the Dragonflight release, a new Soft Targeting system has been added to the game. Which allows to make interaction with GameObject's such as mailbox, herb and veins without using mouse. To enable this function be sure to Then to make it easier to interact with the mailbox type the following command to extend the angle where the player can interact. Then if everything goes well, standing nearby at mailbox proximity, it should be highlighted. You can either use the
|
With #573 the backend is capable of detecting and interactable GameObject is in range such as Vein, Herb. Mailbox can be detected, however i have not yet found a comprehensive list of all available mailbox id(s). |
Is your feature request related to a problem? Please describe.
I always get frustrated when I'm afk leveling and I see my bag full of BoEs (green,blue, purple) items, although I sold all the grey items to the vendor + i have repaired my armor
Describe the solution you'd like
Could we implement some kind of functionality that basically every time that you are full, your toon basically would go to the vendor in order to sell grey items + repair amor + send a mail to a banker toon (you will define his name on the configuration/profile).
Describe alternatives you've considered
A more deep configuration related to which items sent (Filters on colors)
The text was updated successfully, but these errors were encountered: