krlitoz 1 Posted August 22, 2016 Share Posted August 22, 2016 Hi, I'm trying to make the bot not Vendor any items that are not saved to my appearance. In other words, I don't want my bot to sell Transmog items. How do I identify if an item that is an unknown transmog to me? Some C# reference to do a check on the item before selling it would be great! Thanks! Link to comment https://wrobot.eu/forums/topic/3667-identifying-transmogs/ Share on other sites More sharing options...
Droidz 2738 Posted August 23, 2016 Share Posted August 23, 2016 Hello, do you have search if any wow addon is able to add automaticly bag items to your transmo collection? Link to comment https://wrobot.eu/forums/topic/3667-identifying-transmogs/#findComment-17099 Share on other sites More sharing options...
Runaro 160 Posted August 23, 2016 Share Posted August 23, 2016 20 hours ago, krlitoz said: Hi, I'm trying to make the bot not Vendor any items that are not saved to my appearance. In other words, I don't want my bot to sell Transmog items. How do I identify if an item that is an unknown transmog to me? Some C# reference to do a check on the item before selling it would be great! Thanks! You can add a macro into your profile, before using the vendor he spams the macro and equips all BOE gear. /run for b=0,NUM_BAG_SLOTS do for s=1,GetContainerNumSlots(b) do local l=GetContainerItemLink(b,s) if l then if format('%9$s',GetItemInfo(l)) ~= '' then EquipItemByName(l) end end end end To avoid the popup for equipping BOE gear, just use the attached World of Warcraft Addon. Ps. Add another macro to the profile, where he equips your default Gear back on, once he's done with the BOE gear. ( not the cleanest solution, but i don't know any addon which does that all for you ) AutoConfirmEquip.zip Droidz 1 Link to comment https://wrobot.eu/forums/topic/3667-identifying-transmogs/#findComment-17101 Share on other sites More sharing options...
krlitoz 1 Posted August 23, 2016 Author Share Posted August 23, 2016 Thank you guys!!!! :) Link to comment https://wrobot.eu/forums/topic/3667-identifying-transmogs/#findComment-17103 Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now