Jump to content

BetterSister

Elite user
  • Posts

    1887
  • Joined

  • Last visited

Reputation Activity

  1. Like
    BetterSister reacted to Droidz in Snippets codes for quest profiles   
    Snippets codes for quest profiles
     
    ps: Feel free to share your tips on this post. If your message is poorly presented or contains a question, it will be deleted.
  2. Like
    BetterSister got a reaction from Droidz in 335A Bot doesn't understand to go down in water without CTM (should use sit button)   
    I will try to get video of the problem.
  3. Like
    BetterSister got a reaction from Droidz in Does default license always reset to trial   
    there is alot to fix today
  4. Like
    BetterSister reacted to Droidz in Does default license always reset to trial   
    Hello, Thank you. I'll fix it today.
  5. Like
    BetterSister got a reaction from Brian in Does default license always reset to trial   
    there is alot to fix today
  6. Like
    BetterSister reacted to Droidz in 'Relogger' application is available   
    Hello, 
    'Relogger' application is now available.
    Update WRobot, the file 'Relogger.exe' will appear in your WRobot folder.
    PS: If you cannot run WRobot today (crash instantly), launch file "Update.exe" (you can found this in WRobot folder) and update WRobot to resolve problem.

    View full article
  7. Like
    BetterSister got a reaction from Brian in WoW crashes every 3-4 hours while botting   
    it could confirm my find
  8. Like
    BetterSister reacted to Brian in Taking developer API requests   
    I actually requested a bot functionality change that would solve your problem, (changing blacklist from static on load to dynamic).  I could make my own blacklist class, however I am hoping droidz will update the bot to allow for blacklists to be dynamic.  I'll look into more when I get home, if wRobot allows for mob skipping based on memory location, and has a move on function(I may write this myself, since it will be very useful in general) I could easily write a temp blacklist class that would solve your problem. May be more work than it's worth since droidz will hopefully update the current blacklist class to allow for dynamic additions.  However, I will look into it and get back to you.
  9. Like
    BetterSister reacted to Brian in Taking developer API requests   
    Taking requests from developers who want certain API functions that aren't currently implemented.  Trying to make a public API library that adds onto the wrobot base API.
     
    Don't request wrappers for other profiles
  10. Like
    BetterSister reacted to eeny in how do i fight?   
    Download a fight class, place it in the fight class folder in the install location.
    In general settings load the fight class you downloaded
  11. Like
    BetterSister reacted to Droidz in Work in progress   
    Hello,
    I post a small new for say that currently I work principly on "Relogger" application (you can look screenshot in this post).
    I took a little delay on the support (on the forum) and for fix the bugs on WRobot for private server, I'll catch up when "Relogger" is realesed (soon :)). After it, I'll start to work on Legion.
    Regards, Droidz.


    View full article
  12. Like
    BetterSister reacted to Droidz in WoW crashes every 3-4 hours while botting   
    Thank you. I have just release new update, I hope than this update will resolve the problem. With the previous update the frequence of crashs had lowered?
  13. Like
    BetterSister got a reaction from Brian in virus detected in robotmanager.dll by bitdefender 2016   
    Must be false positive. I just scanned every file with Avast and didn't find anything so add the folder to exemptions
    in green it says "no infections detected" in finnish

  14. Like
    BetterSister reacted to Brian in When adding NPC to blacklist   
    When adding a NPC to blacklist, it requires a restart of wRobot to take effect.  Is there anyway to change this? I am assume it's impossible from my end (requires update to wRobot), because there are many bugged mobs around warmane so I plan on making an addon add a target to blacklist if it evades x times, or if a timer gets to large when trying to interact with a unit, but without npc blacklist refreshing without a wRobot restart, I wouldn't bother because it would be useless.  Also, I think npc blacklisting is a bit bugged, I added a npc that is below the ground to the blacklist, restart wrobot/wow, and the bot still tried to attack it. (I confirmed the mob was in the blacklist database)
    Same issues applies to zone blacklist, I would like to be able to dynamically change zone blacklists without restarting wRobot.
     
    Also, would like 

     fixed, this is a major bug and effects my profiles many times an hour and causes deaths which shouldn't happen.
  15. Like
    BetterSister reacted to iMod in Druid Mangle (Bear) problem   
    Well i will answer my self. Restart the game and the bot and you should be fine.
    Thanks goes to betterSister for the tipp.
  16. Like
    BetterSister reacted to Droidz in WoW running out of memory   
    Since last update (yesterday) I have try to fix this problem, If someone can confirm that the problem are resolved.
  17. Like
    BetterSister reacted to Droidz in WoW running out of memory   
    This update in only on WRobot for WoD for the moment.
  18. Like
    BetterSister reacted to MeRox in WoW running out of memory   
    Yeah figured, waiting for 3.3.5a one ;)
  19. Like
    BetterSister reacted to MeRox in WoW running out of memory   
    Guess u didnt update 3.3.5a one? Since i havent had got anykind of updates since yesterday, version shows up at 1.5.6.
  20. Like
    BetterSister reacted to Droidz in Improving tank(Too)Far()   
    Add "wManager.Wow.Bot.Tasks." before "GoToTask...."
  21. Like
    BetterSister reacted to Droidz in Improving tank(Too)Far()   
    Hello,
    To stop to go to tank if it is out of view you can use this code:
    #region Tank too far bool tankfar() { WoWPlayer tank = getTanks().First(); while (tank.IsValid && tank.GetDistance > 15 && !wManager.Wow.Helpers.TraceLine.TraceLineGo(tank.Position)) { MovementManager.MoveTo(tank); System.Threading.Thread.Sleep(50); } MovementManager.StopMove(); return false; } #endregion  
    To generate path and go to tank you can use code like this:
    #region Tank too far bool tankfar() { WoWPlayer tank = getTanks().First(); if (tank.IsValid && tank.GetDistance > 15) { wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWith(new WoWUnit(tank.GetBaseAddress), -1, false, context => Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause && tank.GetDistance > 15); } MovementManager.StopMove(); return false; } #endregion  
  22. Like
    BetterSister reacted to Droidz in Elite nearby? C#   
    Hello, I am not sure to understand exactly what you want, but you can use code like this:
    int numberOfEliteNearTank = ObjectManager.GetWoWUnitHostile().Count(u => u.Position.DistanceTo(tank.Position) <= u.InteractDistance && u.IsElite && UnitCanAttack.CanAttack(u.GetBaseAddress, tank.GetBaseAddress)); if (numberOfEliteNearTank >= 3) { // .. }  
  23. Like
    BetterSister reacted to Dreamful in Relog Issue   
    Droidz is aware of this problem, we already reported it. Its in the Bugtracker.
     
     
  24. Like
    BetterSister reacted to eeny in Patch Notices?   
    Probably this hotfix?

     
  25. Like
    BetterSister reacted to Droidz in Battlegrounder Crashes   
    Hello, if "reduce input lag" option don't resolve your problem, can you try to launch wrobot with NoFakeCallStack.bat (download and move this file in wrobot folder, double click on it to launch WRobot) (if wow crash again, if you can send me wow crash files by private message).
×
×
  • Create New...