Jump to content

Elexir

WRobot user
  • Posts

    19
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Elexir's Achievements

  1. ça marche parfaitement merci !
  2. Windows 10 Game version : 10.1.7 51261 Hello, in the first days no problem summoning the mount but since it was only days when summoning the mount I have an error message in games which says that: my character has this mount but this character cannot not use it. but I can invoke it manually Thanks in advance
  3. Hello, I need to sell more quickly my items from my bag at the hv the idea seemed simple to me basically if I want create a plugin to automatically sell all the green objects at 10 gold at the hv I tested this code but This doesn't work: using System.Threading.Tasks; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; using wManager.Wow.Enums; using wManager.Events; public class AutoSellGreenItems : wManager.Plugin.Plugin { public override void Initialize() { LuaEvents.OnEventsLuaStringWithArgs += OnAuctionHouseShow; } public void OnAuctionHouseShow(string eventName, List<string> args) { if (eventName == "AUCTION_HOUSE_SHOW") { Task.Run(async () => { await Task.Delay(5000); SellGreenItems(); }); } } public void SellGreenItems() { foreach (WoWItem item in Bag.GetBagItems()) { if (item.Quality == WoWItemQuality.Green) { Lua.LuaDoString($@" local bag = {item.BagIndex} local slot = {item.Slot} PickupContainerItem(bag, slot); StartAuction(50000, 50000, 12, 1);"); } } } public override void Dispose() { LuaEvents.OnEventsLuaStringWithArgs -= OnAuctionHouseShow; } } if you could guide me on my errors I would be grateful, thank you in advance!
  4. J'ai cette version, je pense que c'est la version qui ne fonctionne pas justement, c'est un problème très gênant surtout avec le profils Grinder car de mon coté le bot dés que les sac sont plein va au vendeur le plus proche mais ne retourne pas dans la zone de farm aprés la ventes des items
  5. Il y as un edit dans la description de l'addon qui dit que la suppression automatique ne fonctionne plus pas a cause d'une mis a jour de l'API de wow
  6. same problem): 1 oct. 2024 11H52.log.html tunneleuse.xml
  7. malheureusement l'API de WOW a suprimer la supression automatique des item gris
  8. just have an uncheck that can fly to ?
  9. I also attach the Grinder profiles 1 oct. 2024 01H39.log.html tunneleuse.xml
  10. Hello, I have properly set up my Grinder and configured the mail sending option in the general settings. However, when my bags are full, my character doesn't use the portable mailbox or go to the nearest mailbox. Could you please tell me what the issue might be? Thank you in advance.
  11. Bonjour, J'ai créé un profil de grinder sur la dernière version du bot, et j'aimerais développer un plugin qui, toutes les 10 minutes, met en pause le grinder, jette tous les objets gris inutiles, puis relance le grinder. Est-ce réalisable ? Merci d'avance pour votre aide !
  12. Hello, How can I configure the Grinder program to ignore a mob that is out of my field of vision due to a bug in the game thanks in advance
  13. THANKS ! there will be a version 10.1.7 51261 ?
×
×
  • Create New...