Administrador Popular Post Ryuzaki Posted January 16, 2020 Administrador Popular Post Posted January 16, 2020 Las siguientes macros son útiles para VENDER en 1 sólo clic todos los ítems de un mismo color cuando se está interactuando con un vendedor. ¡Sé responsable al usarlos! Vender todos los ítems GRISES /run local p,N,n=0 for b=0,4 do for s=1,GetContainerNumSlots(b) do n=GetContainerItemLink(b,s) if n and string.find(n,"9d9d9d") then N={GetItemInfo(n)} p=p+N[11] UseContainerItem(b,s) print("Vendido: "..n) end end end print("Total: "..GetCoinText(p)) Vender todos los ítems BLANCOS /run local p,N,n=0 for b=0,4 do for s=1,GetContainerNumSlots(b) do n=GetContainerItemLink(b,s) if n and string.find(n,"ffffff") then N={GetItemInfo(n)} p=p+N[11] UseContainerItem(b,s) print("Vendido: "..n) end end end print("Total: "..GetCoinText(p)) Vender todos los ítems VERDES /run local p,N,n=0 for b=0,4 do for s=1,GetContainerNumSlots(b) do n=GetContainerItemLink(b,s) if n and string.find(n,"1eff00") then N={GetItemInfo(n)} p=p+N[11] UseContainerItem(b,s) print("Vendido: "..n) end end end print("Total: "..GetCoinText(p)) Vender todos los ítems AZULES /run local p,N,n=0 for b=0,4 do for s=1,GetContainerNumSlots(b) do n=GetContainerItemLink(b,s) if n and string.find(n,"0070dd") then N={GetItemInfo(n)} p=p+N[11] UseContainerItem(b,s) print("Vendido: "..n) end end end print("Total: "..GetCoinText(p)) Vender todos los ítems VIOLETAS /run local p,N,n=0 for b=0,4 do for s=1,GetContainerNumSlots(b) do n=GetContainerItemLink(b,s) if n and string.find(n,"a335ee") then N={GetItemInfo(n)} p=p+N[11] UseContainerItem(b,s) print("Vendido: "..n) end end end print("Total: "..GetCoinText(p)) Creador original: ehiro (Y Gracias a Limita por pasarme estas macros más útiles) L3mmy, CERESJ, francis1 and 2 others 3 1 1
Silverproud Posted September 17, 2020 Posted September 17, 2020 Pregunta capsiosa... es posible escribir una excepcion para un item dentro de esas formulas? por ejemplo https://wotlk.ultimowow.com/?item=9149 o https://wotlk.ultimowow.com/?item=20824 que suelo llevarlos en los bolsillos permanentemente. L3mmy 1 Guias Utiles: Transfiguración Paladín Draenei Vindicador | Compendio de items Paladín Retri PvE | Paladín retribución PvP | Danza de los sellos
Administrador Popular Post Torete Posted September 18, 2020 Administrador Popular Post Posted September 18, 2020 Silverproud dijo: Pregunta capsiosa... es posible escribir una excepcion para un item dentro de esas formulas? por ejemplo https://wotlk.ultimowow.com/?item=9149 o https://wotlk.ultimowow.com/?item=20824 que suelo llevarlos en los bolsillos permanentemente. Te recomiendo usar el addon: Con SellJunk, puedes, entre otras cosas, agregar una lista de ignorados. Yuno, L3mmy, francis1 and 2 others 3 2 Normas | Denuncias | Reclamaciones | FAQ
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