Jump to content

Droidz

Administrators
  • Posts

    12584
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

Recent Profile Visitors

149765 profile views
  1. Hello, Try with this plugin Main.cs : using System.Threading; using wManager.Wow.Class; using wManager.Wow.Enums; using wManager.Wow.Helpers; public class Main : wManager.Plugin.IPlugin { const int SpellId = 46457; const int NpcId = 50041; public void Initialize() { robotManager.Events.FiniteStateMachineEvents.OnRunState += (engine, state, cancelable) => { if (state is wManager.Wow.Bot.States.ToTown) { MovementManager.StopMove(); new Spell(SpellId).Launch(true); Thread.Sleep(5000); var npc = new Npc { ContinentId = (ContinentId)Usefuls.ContinentId, Name = "Field Repair Bot 75B", Entry = NpcId, Position = wManager.Wow.ObjectManager.ObjectManager.Me.Position, Type = Npc.NpcType.Repair, Faction = Npc.FactionType.Neutral }; NpcDB.ListNpc.RemoveAll(n => n.Active && n.Entry == npc.Entry && n.Type == npc.Type && n.ContinentId == npc.ContinentId && n.CurrentProfileNpc); NpcDB.AddNpc(npc, false, true); } }; } public void Dispose() { } public void Settings() { } }
  2. Hello, When you use this spell, does an NPC or GameObject appear (if so, could you provide me with the entry ID)? Or do you directly get the sales window?
  3. Hello, the best is to use "Relogger" application. You can also try with the product "Schedule" (or "Quester" if you have good knowledge).
  4. Hello, For this type of request, it's best to send me a private message. You can find the invoice for your subscription upgrade here: https://wrobot.eu/clients/orders/
  5. https://wrobot.eu/forums/topic/15054-payment-option/?&_rid=1#findComment-70150
  6. Hello, Please provide me with the information you want to update via private message: https://wrobot.eu/messenger/compose/?to=1
  7. Hello, Your payment attempt failed (Stripe error "incorrect_number").
  8. Hello, You can execute your code in the product thread (gatherer) using, for example, the "OnBeforeCheckIfNeedToRunState" event. Sample : https://wrobot.eu/forums/topic/15429-plugin-for-robotsresponse-to-player-attack/?&_rid=1#findComment-69230
  9. Hello, By default, when the bot goes to town, it starts by mailing items using the closest mailbox. The bot goes to town when the bags are full. Configure the mailing parameters in "Advanced Settings" and add a mailbox to your profile.
  10. Hello, can you share your log file please
  11. Droidz

    Log spam

    Hello, Check in the main tab if the remote option is enabled; if it is, try disabling it. If that's not the issue, it's likely due to one of your plugins/profiles/fightclasses. Try disabling them one by one to find the source of the problem.
  12. If you use the "Relogger" you can try to schedule a bot restart every X hours. You can try on a bot to separate its folder (1 wrobot folder for 1 wow) to see if it solves the problem.
  13. Do you use Relogger? If yes, try to restart bot/game more frequently (like every 6h). Or use one WRobot folder per game, but that requires much more work for maintenance.
  14. Hello, Do you have enough free space on your "C:" drive? Try installing/reinstalling the latest version of the .NET Framework: https://dotnet.microsoft.com/en-us/download/dotnet-framework/thank-you/net481-web-installer Do you have this issue with other profiles/fightclasses?
×
×
  • Create New...