Jump to content

Dagora

Members
  • Posts

    52
  • Joined

  • Last visited

Reputation Activity

  1. Sad
    Dagora got a reaction from Messerboogie in [Wotlk] FlightMaster   
    I resolved this issue when i changed checkboxes in taxi database. Also it could be problem with different languages.

  2. Like
    Dagora reacted to Droidz in Force bot to close game and pause Wrobot   
    Yes create plugin (save it in file type .cs )
    using System.ComponentModel; using wManager.Wow.Enums; using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { public void Initialize() { wManager.Events.FightEvents.OnFightStart += delegate (WoWUnit unit, CancelEventArgs cancelable) { try { if (unit != null && unit.Type == WoWObjectType.Player) wManager.Wow.Memory.WowMemory.Memory.GetProcess().Kill(); } catch { } }; } public void Dispose() { } public void Settings() { } }  
  3. Like
    Dagora reacted to Droidz in Force bot to close game and pause Wrobot   
    Hello,
    in relogger option you have option "Wait time to relaunch and relogge after crash", use it to not relaunch bot and wow quickly.
    To close game you can use this code:
    wManager.Events.FightEvents.OnFightStart += delegate (WoWUnit unit, CancelEventArgs cancelable) { try { if (unit != null && unit.Type == WoWObjectType.Player) wManager.Wow.Memory.WowMemory.Memory.GetProcess().Kill(); } catch {} };  
  4. Sad
    Dagora reacted to Jensen- in Warmane bans   
    leave warmane for now, its a waste of time
  5. Like
    Dagora reacted to Olya in How to use a proxy correctly   
    I apologize for the bad English I use Google translation 
    Many asked the question how to properly bind the proxy to the WoW client and I decided to write a small guide to answer all at once. Immediately make a reservation that I do not know whether this will also work for official servers, because long ago not botting them. But this will definitely work for earlier versions.
    To bind a proxy server to a specific application, you need a special soft. There are several options, but I prefer the Proxyfier, because some others, if they can not connect to any particular hosts, will simply run them through your static ip address.
    So we need the following tools:
    Proxyfier
    LinkShellExtention
    First of all, you need to create several copies of the warcraft.

    You can simply copy the client several times to separate folders. But who uses only SSD and wants to save space on the hard drive will use the LinkShellExtension to create symbolic links to the massive client data. So, we install all the necessary software and start
    We copy all the folders and files (without "data") of the wow client to our newly created folder for the bot
     
    Right-click on the "Data" and choose Pick Link Source from the drop-down menu. Then go to the new folder, click on the empty space and choose Symbolic Link

    The result should look like this

    Measuring the amount of memory used, we get only about 30 MB and it's absolutely working client

    You might have noticed that in the client folder for the bot, the client launch file is called WoW1
    You must do the same for each directory with the bot. That is, if you have 5 clients proxy, you must name the startup files accordingly: WoW1.exe, WoW2.exe, WoW3.exe, WoW4.exe, WoW5.exe and so on. Otherwise, no matter how many directories you create, each of them will work on the same proxy as the process will be called the same.
    Now you can add your proxy to the Proxyfier. I will not separately describe how to do this since it should be clear. Then go to the proxification rule and make a binding as shown in the screenshot

    In the application field, specify the path to the warcraft client in which the specific bot will work. Also this proxy is attached to the browser. I highly recommend registering the account through the proxy on which it will work in the future. But do not forget to untie the browser after registration so that there are no more intersections. In the action field, you must select the desired IP address.
    And this is the result

    In conclsion, even if the clients are proxy correctly, the first thing you need to pay attention to is the quality of the proxy. It is most important
  6. Like
    Dagora reacted to BottingPotato in Travel Form problem   
    When my druid gets in ground travel form after fighting a mob or something else, it just can't get back to flying mode like at all. It gets stuck at standing at same place, and jumping. All the logs says is constantly:

    [D] 12:33:07 - [StuckResolver] Flying mode.
    [D] 12:33:09 - [StuckResolver] done.
    [D] 12:33:15 - [StuckResolver] Flying mode.
    [D] 12:33:18 - [StuckResolver] done.
    [D] 12:33:23 - [StuckResolver] Flying mode.
    [D] 12:33:26 - [StuckResolver] done.
    [D] 12:33:31 - [StuckResolver] Flying mode.
    [D] 12:33:34 - [StuckResolver] done.
    [D] 12:33:39 - [StuckResolver] Flying mode.
    [D] 12:33:43 - [StuckResolver] done.
    [D] 12:33:49 - [StuckResolver] Flying mode.
    [D] 12:33:55 - [StuckResolver] done.
    [D] 12:34:00 - [StuckResolver] Flying mode.
    [D] 12:34:04 - [StuckResolver] done.
    [D] 12:34:12 - [StuckResolver] Flying mode.
    [D] 12:34:17 - [StuckResolver] done.
    [D] 12:34:23 - [StuckResolver] Flying mode.
    [D] 12:34:27 - [StuckResolver] done.
    [D] 12:34:33 - [StuckResolver] Flying mode.
    [D] 12:34:37 - [StuckResolver] done.
    [D] 12:34:43 - [StuckResolver] Flying mode.
    [D] 12:34:48 - [StuckResolver] done.
    [D] 12:34:53 - [StuckResolver] Flying mode.
    [D] 12:34:57 - [StuckResolver] done.
    [D] 12:35:05 - [StuckResolver] Flying mode.
    [D] 12:35:11 - [StuckResolver] done.
    [D] 12:35:16 - [StuckResolver] Flying mode.
     
    Any way to fix this?
×
×
  • Create New...