Jump to content

Droidz

Administrators
  • Posts

    12601
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Droidz got a reaction from hakuta in Path Find   
    Hello, the issue should be resolved.
  2. Thanks
    Droidz got a reaction from Kinsets in Legion Path-finding server down!   
    Hello, what version of WRobot do you use, can you share log file please
  3. Like
    Droidz got a reaction from torenka in Passage des levels   
    Bonjour,
    Avez-vous ajouté le PNJ entraîneur (type WarriorTrainer ou autre selon votre classe) dans votre profil ou dans votre "NPC DB" (onglet "Tools").
  4. Like
    Droidz got a reaction from nax in How can I summon "Field Repair Bot 75B" to sell junk and repair gear?   
    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() { } }  
  5. Thanks
    Droidz got a reaction from fkrausewow in How can I summon "Field Repair Bot 75B" to sell junk and repair gear?   
    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() { } }  
  6. Like
    Droidz reacted to marcia99 in Wow 7.3.5 26124 licence key dont work old version   
    Greetings @Droidz! How can I run the bot on an old version without losing the functionality of the current versions?

  7. Like
    Droidz got a reaction from Deikesu in Survival Hunter Explosive Shot Priority every 6 seconds or when ready   
    Hello, you can use https://learn.microsoft.com/en-us/dotnet/api/system.diagnostics.stopwatch?view=net-9.0 or WRobot Timer https://wrobot.eu/byme/doc/html/AllMembers.T-robotManager.Helpful.Timer.htm ( https://github.com/droidzfr/WRobot_Packages/blob/60ae2bf88708e27e1b461244dcc1cbac17485eb4/vanilla/FightClass/Mage.cs#L159 )
  8. Like
    Droidz got a reaction from unrankedx in WRobot didnt loot Vanilla   
    Hello, try this plugin :
    using wManager.Wow.Enums; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { public void Initialize() { var stopWatch = new System.Diagnostics.Stopwatch(); wManager.Events.InteractEvents.OnInteractPulse += (target, cancelable) => { if (stopWatch.ElapsedMilliseconds < 1000 && stopWatch.IsRunning) { return; } var obj = ObjectManager.GetObjectByGuid(target); if (obj.IsValid && (obj.Type == WoWObjectType.Unit || obj.Type == WoWObjectType.GameObject)) { var isLootable = false; if (obj.Type == WoWObjectType.Unit) { var unit = new WoWUnit(obj.GetBaseAddress); isLootable = unit.IsLootable; } else if (obj.Type == WoWObjectType.GameObject) { isLootable = true; } if (isLootable) { stopWatch.Restart(); Interact.InteractGameObject(obj.GetBaseAddress); cancelable.Cancel = true; } } }; } public void Dispose() { } public void Settings() { } }

     
    Main.cs
  9. Thanks
    Droidz got a reaction from Cougar700 in Press button   
    Hello, yes use this c# code:
    robotManager.Helpful.Keyboard.PressKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, System.Windows.Forms.Keys.A); Replace "A" by your key https://docs.microsoft.com/fr-fr/dotnet/api/system.windows.forms.keys?f1url=https%3A%2F%2Fmsdn.microsoft.com%2Fquery%2Fdev15.query%3FappId%3DDev15IDEF1%26l%3DFR-FR%26k%3Dk(System.Windows.Forms.Keys);k(SolutionItemsProject);k(TargetFrameworkMoniker-.NETFramework,Version%3Dv4.5);k(DevLang-csharp)%26rd%3Dtrue%26f%3D255%26MSPPError%3D-2147217396&view=netframework-4.8
  10. Like
    Droidz got a reaction from josezambrano in Download WRobot for Cata   
    Hello,
    WRobot for World of Warcraft Cataclysm private server is available.
    Download WRobot for Wow Cata (4.3.4.15595) : Click here 
    (don't forget to select good product during install:  )
    If you get problem to install WRobot go here.
  11. Thanks
    Droidz got a reaction from Skemez in Wrong wow language?   
    Download Main.cs and put this file in the folder "WRobot\Plugins\" (you can rename it). Launch WRobot (or restart it) then go to the tab "Plugins" and enable it.
  12. Like
    Droidz got a reaction from nax in Seeking help on the conditional statement of fight-class   
    Hello, you can use 
    if (wManager.Wow.ObjectManager.ObjectManager.Target.CreatureTypeTarget == "Humanoid") { // cast your spell here }  
  13. Like
    Droidz got a reaction from Tkindt94 in Whitemane server has no wow.exe, only wow_64.exe   
    Hello, https://wowdl.net/fichiers/clients
  14. Like
    Droidz got a reaction from doguil in Stop buying low lvl food and drinks   
    Hello, in "script can condition" put code like :
    return wManager.Wow.ObjectManager.ObjectManager.Me.Level >= 5 && wManager.Wow.ObjectManager.ObjectManager.Me.Level <= 15; Replace 5 by the minimum level, 15 by the maximum level (in the current code, the bot will buy your item if the level is equal to or bigger than 5 and equal to or lower than 15).
  15. Like
    Droidz got a reaction from Lazaroh in License Key is not working for Legion 7.3.5 (26124)   
    Hello, the problem should sovled
  16. Like
    Droidz got a reaction from Hierophant Green in OnPathFinderFindPathResult   
    When I run 
    wManager.Wow.Bot.Tasks.GoToTask.ToPosition(new Vector3(-5470.455, -2890.753, 350.0887, "None")); in dev tools I get only one pathfinder call.
    If bot don't found path, in some case there can call pathfinder server several times.
  17. Like
    Droidz got a reaction from nax in License Key is not working for Legion 7.3.5 (26124)   
    Hello, the problem should sovled
  18. Like
    Droidz got a reaction from Sakonung in How can I tell the relogger stop profile, when bags is full   
    Hello, try this WRobot plugin :
    using System; using robotManager.Helpful; using wManager.Plugin; using wManager.Wow.Helpers; public class Main : IPlugin { private bool _isLaunched; public void Initialize() { _isLaunched = true; while (_isLaunched) { CheckBags(); } } private void CheckBags() { if (Conditions.InGameAndConnectedAndProductStartedNotInPause && !Conditions.IsAttackedAndCannotIgnore && Bag.GetContainerNumFreeSlots == 0) { Logging.Write("Bags are full, stopping profile."); wManager.Wow.Memory.WowMemory.CloseHookedProcess(); // Close game Environment.Exit(-20); // Exit code -20 stops relogger profile } } public void Dispose() { _isLaunched = false; } public void Settings() { Logging.Write("No settings available."); } }  
    Main.cs
  19. Like
    Droidz got a reaction from nax in How can I tell the relogger stop profile, when bags is full   
    Hello, try this WRobot plugin :
    using System; using robotManager.Helpful; using wManager.Plugin; using wManager.Wow.Helpers; public class Main : IPlugin { private bool _isLaunched; public void Initialize() { _isLaunched = true; while (_isLaunched) { CheckBags(); } } private void CheckBags() { if (Conditions.InGameAndConnectedAndProductStartedNotInPause && !Conditions.IsAttackedAndCannotIgnore && Bag.GetContainerNumFreeSlots == 0) { Logging.Write("Bags are full, stopping profile."); wManager.Wow.Memory.WowMemory.CloseHookedProcess(); // Close game Environment.Exit(-20); // Exit code -20 stops relogger profile } } public void Dispose() { _isLaunched = false; } public void Settings() { Logging.Write("No settings available."); } }  
    Main.cs
  20. Like
    Droidz reacted to vivinagh in License Key is not working for Legion 7.3.5 (26124)   
    Hey i have the same problem. Could you fix mine too? THX @Droidz
  21. Like
    Droidz got a reaction from rootuser in Wrong wow language?   
    Hello, try this plugin :
    using System.Linq; using wManager.Wow.Helpers; public class Main : wManager.Plugin.IPlugin { public void Initialize() { robotManager.Events.Events.OnCustomEvent += (eventName, args, cancelEvent) => { try { if (eventName =="SpellManager.CastSpellByNameOn" && args != null && args.Length == 2 && args[0] != null && args[0] is string && args[1] != null && args[1] is string) { var spellName = (string)args[0]; var luaUnitId = (string)args[1]; var spell = SpellManager.SpellBook().FirstOrDefault(s => s.NameInGame == spellName); if (spell != null) { var englishSpellName = spell.Name; if (!string.IsNullOrWhiteSpace(englishSpellName)) { Lua.LuaDoString(string.Format("CastSpellByName('{0}', '{1}');", englishSpellName.Replace("'", @"\'"), luaUnitId.Replace("'", @"\'"))); cancelEvent.Cancel = true; } } } } catch{} }; } public void Dispose() { } public void Settings() { } }  
    Main.cs
  22. Like
    Droidz got a reaction from dpz0427 in Auto open clam when fishing   
  23. Haha
    Droidz got a reaction from Skemez in Licence no work.   
    But the refund should appear in your bank account now. (5 to 10 days https://docs.stripe.com/refunds )
  24. Like
    Droidz got a reaction from Thayson in Licence no work.   
    Hello,
    You made a refund request which was accepted.
  25. Like
    Droidz got a reaction from dpz0427 in Download profiles and fight classes for Vanilla   
    Download profiles and fight classes for Vanilla
×
×
  • Create New...