Jump to content

Droidz

Administrators
  • Posts

    12427
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Droidz got a reaction from BismarckHurts in License Key is for an other Wrobot Program ( Legion 7.3.5 26124)   
    Hello, try again, problem should be resolved. 
  2. Like
    Droidz got a reaction from Talamin in Mobiyo (AlloPass) payment gateway has been added   
    Hello,
    I added a new payment gateway that not require a credit card, info here : https://wrobot.eu/allopass/

    View full article
  3. Like
    Droidz got a reaction from TimTheTall in fight class can't use macro with lua in combat (1.12.1)   
    Use Wrobot plugin it is better:
    using System.Diagnostics; using wManager.Wow.Helpers; public class Main : wManager.Plugin.IPlugin { public void Initialize() { var t = Stopwatch.StartNew(); wManager.Events.FightEvents.OnFightLoop += (unit, cancelable) => { if (t.ElapsedMilliseconds > 1000) // Every second { Lua.LuaDoString("QuickHeal()"); t.Restart(); } }; } public void Dispose() { } public void Settings() { } } Or
    using System.Diagnostics; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { public void Initialize() { var t = Stopwatch.StartNew(); wManager.Events.FightEvents.OnFightLoop += (unit, cancelable) => { if (t.ElapsedMilliseconds > 1000) // Every second { Lua.LuaDoString("QuickHeal()"); if (unit.Guid != ObjectManager.Me.Target) // Target change, cancel fight and start new { cancelable.Cancel = true; Fight.StartFight(ObjectManager.Me.Target); return; } t.Restart(); } }; } public void Dispose() { } public void Settings() { } }  
  4. Like
    Droidz got a reaction from Kingpincmk in Fissing issue (Keeps running to nodes or loot)   
    Hello, in general settings you need to disable looting and gathering options
  5. Thanks
    Droidz got a reaction from wrobotu in problem   
    Hello, use:
    - "While" step > !wManager.Wow.Bot.Tasks.GoToTask.ToPosition(new Vector3(-10215.35, 36.84612, 34.33632, "None"));
    - "EndWhile" step
  6. Like
    Droidz got a reaction from Pudge in Global variable associated with the license key   
    Hi,
    I wrote few time ago sample HTTP server plugin: Test server http.cs
    using System.Net; using System.Text; using System.Threading.Tasks; using robotManager.Helpful; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { /* Samples: http://localhost:8000/name http://localhost:8000/jump http://localhost:8000/pos http://localhost:8000/runlua?code=print(%22test%20from%20web%22) */ private readonly bool _debugLog = true; private HttpListener _listener; private readonly string _url = "http://localhost:8000/"; private int _requestCount; private bool _runServer; public void Initialize() { // Create a Http server and start listening for incoming connections _listener = new HttpListener(); _listener.Prefixes.Add(_url); _listener.Start(); if (_debugLog) Logging.WriteDebug("Listening for connections on " + _url); // Handle requests var listenTask = HandleIncomingConnections(); listenTask.GetAwaiter().GetResult(); } public void Dispose() { if (_listener != null) { _runServer = false; _listener.Close(); _listener = null; } } public void Settings() { } private async Task HandleIncomingConnections() { _runServer = true; // While a user hasn't visited the `shutdown` url, keep on handling requests while (_runServer) { // Will wait here until we hear from a connection var ctx = await _listener.GetContextAsync(); // Peel out the requests and response objects var req = ctx.Request; var resp = ctx.Response; // Print out some info about the request if (_debugLog) { Logging.WriteDebug("Request #: " + ++_requestCount); Logging.WriteDebug(req.Url.ToString()); Logging.WriteDebug(req.HttpMethod); Logging.WriteDebug(req.UserHostName); Logging.WriteDebug(req.UserAgent); Logging.WriteDebug(req.Url.AbsolutePath); } var content = string.Empty; // Parse if (req.Url.AbsolutePath == "/name") { content = ObjectManager.Me.Name; } else if (req.Url.AbsolutePath == "/jump") { Move.JumpOrAscend(); content = "done"; } else if (req.Url.AbsolutePath == "/pos") { content = ObjectManager.Me.Position.ToStringXml(); } else if (req.Url.AbsolutePath.StartsWith("/runlua")) { //var r = System.Web.HttpUtility.ParseQueryString(req.Url.Query).Get("code"); var r = req.QueryString["code"]; if (!string.IsNullOrWhiteSpace(r)) { Lua.LuaDoString(r); content = "ok"; } else content = "failed"; } // Write the response info byte[] data = Encoding.UTF8.GetBytes(content); resp.ContentType = "text/html"; resp.ContentEncoding = Encoding.UTF8; resp.ContentLength64 = data.LongLength; // Write out to the response stream (asynchronously), then close it await resp.OutputStream.WriteAsync(data, 0, data.Length); resp.Close(); } } } You can use one port by bot.
     
    But in any case what you want to do require programming knowledge. You can also create one server with API type REST to store data (with C# or more easy tools like  python or nodejs), and use this API with bot plugin. You have a lot of possibility, but I can't add it to the bot API.
  7. Like
    Droidz got a reaction from darkside in how to make WRobot use macro while fishing ?   
    Hello, what macro do you want use?
  8. Like
    Droidz got a reaction from Karmo12345 in 2x debited   
    Hello,
    I checked your activity and you have two accounts with subscription ( https://wrobot.eu/profile/92103-karmo1234/ )
    I made the refund of subscription of your second account (you will get your money back in few days)
  9. Like
    Droidz reacted to Blazeone in Getting logged out   
    Thank you! it seems to be running fine now! 
  10. Like
    Droidz got a reaction from Blazeone in Getting logged out   
    Thank you, I released new update, I hope that your problem will be resolved. if it is not the case if you can again send me "memory info" result of the new update please.
  11. Like
    Droidz got a reaction from torenka in Gather profile creation - 5 mins   
    Tips: During profile creation, you can use tab "Map" (and option "Radar 3d") to view recorded path and found easily your start position.
  12. Like
    Droidz got a reaction from Pudge in Copy log to desktop code   
    Hi, it is code:
    private void ButtonCopyLog(object sender, System.Windows.RoutedEventArgs e) { try { var logFilePath = $@"{Others.GetCurrentDirectory}\Logs\{Logging.NameCurrentLogFile()}"; var logCopyDest = $@"{Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory)}\{Logging.NameCurrentLogFile()}"; if (File.Exists(logCopyDest)) File.Delete(logCopyDest); File.Copy(logFilePath, logCopyDest); Logging.Write("[Logging]" + Logging.NameCurrentLogFile() + " copied on your desktop."); } catch { } }  
  13. Like
    Droidz got a reaction from torenka in Happy New Year 2021   
    Wishing you a happy new year with the hope that you will have many blessings in the year to come.

    View full article
  14. Like
    Droidz got a reaction from torenka in Créer une ClassFight Mage feu   
    Bonjour,
    Déplacer votre personnage est compliqué (voir très compliqué si vous utilisez une classe de combat XML), regarder ces exemples https://wrobot.eu/forums/topic/2029-going-backward/?do=findComment&comment=10267&_rid=1
    Pour la création d'eau regarde ce post: https://wrobot.eu/forums/topic/5015-mage-conjuring-too-many-water/
     
     
  15. Like
    Droidz got a reaction from Sye24 in Help with the code to change the complexity of the raid   
    Hello, look https://github.com/tomrus88/BlizzardInterfaceCode/blob/ffbd8a3f993fb455aaff5726a8192b1a6d81f56c/Interface/FrameXML/UnitPopup.lua#L1885 (to get DifficultyID https://github.com/tomrus88/BlizzardInterfaceCode/blob/ffbd8a3f993fb455aaff5726a8192b1a6d81f56c/Interface/FrameXML/UnitPopup.lua#L85 )
  16. Like
    Droidz got a reaction from Artek in Automaton attacking mobs that are not on the list   
    In "Automaton" product settings you need to disable option "Kill mobs" (Wrobot will still kill the monsters on your list)
  17. Thanks
    Droidz got a reaction from chrisklume in Repair/Install WRobot   
    Before request help, thank you to:
    Make sure you start wow in 32-bit and run Wow in Windowed mode. Make sure do you use WRobot on administrator Windows session. Keep Windows updated. Try to disable your antivirus/firewall, redownload and reinstall WRobot in empty folder. Delete completely WRobot folder, download and install it again (you can try to download preinstalled version). Try to put WRobot folder on your desktop and in root of the disc. (Re)Install DirectX, Framework (minimum 4.5) (or Framework Repair Tool), SlimDX (4.0 X86), Redistributable Visual C + + 2010  (X86). If the bot does not work at all, that WRobot freeze, change the version of DirectX that wow uses (do not forget to restart Wow) (if this don't resolve problem, you can try to launch WRobot with shortcut "WRobot No DX"). Reset key bindings Wow (the bot uses Forward, Backward, Jump, Sit / Stand, strafe right and left, but I suggest you reset everything). Some wow addon can cause problems, so disable all. Close Windows program like Skype, Teamviewer and all overlays e.g. Overwolf, Geforce Experience,  raptr, AMD Gaming Evolved, teamspeak (these programs can cause problems at WRobot, also programs for record screen or programs which draw/write in game window). Close/disable your VPN, Proxy and program like ProxyCap. If you have already run WRobot, you can try to remove folde "WRobot\Data\Meshes\". If WRobot window is not display correctly, you  can you try to Right-click on WRobot.exe and then click "Properties". On the "Compatibility" tab, select "Disable Display Scaling On High DPI Settings", and then click "OK" ( https://www.youtube.com/watch?v=0xS-UCuyq7s ). Some virus/malwares can block WRobot. Scan you computer AdwCleaner and/or Malwarebytes for remove malwares, and anti-virus like Eset or Kaspesky. Disable "Bliz Streaming" feature, for it, on the Battle.net App, go to upper left corner, click the down arrow, go to Settings. From there, go to Streaming and uncheck Enable Streaming. When WRobot is launched, you cannot minimize Wow, of course you can keep Wow in background and use your computer, but you cannot minize (put in taskbar) Wow (if minimized, WRobot don't works correctly). Sometime, you need to put "full control" at "WRobot.exe" (and WRobot folder): https://www.windowscentral.com/how-take-ownership-files-and-folders-windows-10 Do a search to see if a solution exists: https://www.google.com/search?q=site:wrobot.eu+adding+mailbox or http://wrobot.eu/search/. If you start to use bot, you can watch this video: http://wrobot.eu/forums/topic/3633-getting-started-with-wrobot-video/ If your problem is not resolved, request help on good forum, to get quick reply, don't forget to share your log file.
  18. Like
    Droidz reacted to chenmo302 in License Key is for an other Wrobot Program. Please check   
    hello , i bought another key  this morning , can you help me to active this key for legion 26124?  thank you!
  19. Like
    Droidz got a reaction from yukihiko in Discord Channel?   
    Hello, you can found link in site header ( https://discord.gg/HXunx8tUpn )
  20. Thanks
    Droidz got a reaction from Freeziepop in Add Vendor   
    Hello,
    Open your profile with profile editor (of your product), you can add/remove NPC (you can also remove all NPC from the "NPC DB" tab tools)
  21. Thanks
    Droidz got a reaction from Freeziepop in Pet Attack   
    Hello, 
    https://wrobot.eu/forums/topic/10135-tbc-lock-reapplying-dot/?do=findComment&comment=53630&_rid=1
  22. Thanks
    Droidz got a reaction from Freeziepop in Dies on spawn   
    hello, try to use 60%>95% (you have more than 50% when character resurrect).
  23. Thanks
    Droidz got a reaction from Freeziepop in Won't attack while using trial.   
    Hello, try to run product "Automaton" with default settings to check if it is not profile problem. If still don't works try to increment "max mob near" in general settings
  24. Like
    Droidz reacted to Plan5 in Gathering a herb is failing everytime   
    I found my problem, it was an addon. 
  25. Like
    Droidz got a reaction from failbot in Smooth out moving   
    Hello, you have an option in advanced general settings tab "pathfi..." but that does not entirely solve your problem. For the moment, no perfect solution.
×
×
  • Create New...