Jump to content

Zan

WRobot user
  • Posts

    549
  • Joined

  • Last visited

Reputation Activity

  1. Thanks
    Zan reacted to Matenia in Matenia's HumanMasterPlugin, all Fightclasses and experimental projects for later expansions, including a Quester   
    The experimental project contains its own quester, own combat engine and own fightclasses using that combat engine. It was developed with 3.3.5a in mind and I tried to move it to Legion+ and 64 bit. None of it works in its current form. Git history may help. This also has a modified version of Reapler's WowDB.
    The fightclasses zip contains everything ever posted on here. It has HMP, my fightclasses etc. This works 100%, you just need to put your own WRobot binaries into the projects.

    I can't maintain the code anymore and at the moment it just costs me money. Everything has officially been abandoned. Servers will go down in June or July whenever my contract runs out.
     
    Feel free to do with this code whatever you want and do as you please. This does NOT include turning it into paid products. 
    I had a good run here on WRobot and hope at least the Wholesome team can make use of some of this.
    wrobot-experimental.zip wrobot-fightclasses.zip
  2. Like
    Zan got a reaction from lsabakal in close bot   
    Replace UseItem line with it.
  3. Like
    Zan got a reaction from Zukmar in Stormforge TBC classic pvp   
    Uh,  this is not the server you are looking for.
  4. Thanks
    Zan reacted to Zer0 in Video tutorial - Create a product from scratch   
  5. Like
    Zan reacted to Droidz in TraceLine.TraceLineGo cache?   
    Hi, I added method TraceLine.ClearCache() (wait next update)
  6. Thanks
    Zan reacted to Droidz in 10-year anniversary   
    Happy New Year to all !

    I'm excited to start another year and look forward to continuing to serve you with WRobot.

    This year marks a special milestone for us as we celebrate the 10-year anniversary of WRobot. 
    I'm grateful for your support and look forward to many more years of success together. 

    Thank you for choosing WRobot, and I hope you have a happy, healthy, and prosperous new year!

    View full article
  7. Like
    Zan reacted to Droidz in Shadowlands?   
    I again release fix, I hope this time is good for all
  8. Like
    Zan reacted to Droidz in Shadowlands?   
    Hello,
    I added support, you need to redownload updater to get option
     
  9. Like
    Zan reacted to Droidz in Shadowlands?   
    Thanks, I try to add support this week
  10. Like
    Zan got a reaction from Droidz in Shadowlands?   
    9.2.7 Build 45745
  11. Like
    Zan got a reaction from Droidz in Shadowlands?   
    9.1.5 build 40944 currently and 9.2 is coming Dec 12, 2022. I'll come back here with a build number once it updates.
  12. Thanks
    Zan got a reaction from trampy10 in Smooth out moving   
    Untested. Let me know if it works.
    SmoothMove.dll
  13. Like
    Zan got a reaction from Gregoryn82 in Recovering corpse from Dungeon failing   
    Leave a comment there so Ordush knows.
  14. Like
    Zan got a reaction from kapiwit in To cast instant spells after the casted once.   
    If it is highlighted when it procs you can use:
    wManager.Wow.Helpers.SpellManager.IsSpellOverlayed(string)
    or 
    wManager.Wow.Helpers.SpellManager.IsSpellOverlayed(uint)
  15. Like
    Zan got a reaction from Sleepwalker in Use certain spell when a certain number of mobs are in range?   
    Go download VS Community Edition and add WRobot references while writing in C#
  16. Confused
    Zan got a reaction from ⎝͠҉̭̫͖̗͇ͅTraWin ̍̍̍̍̍̍̍̍̍ in BfA version   
    Why are you guys requesting a version already requested?
  17. Haha
    Zan reacted to Matenia in World explore lua problem   
    Did you just link him to a thread where the answer was his own?
  18. Like
    Zan reacted to Droidz in How to cast revive once?   
    your code is illogical, mouseover is in wrobot API you don't need to write in memory manually, why do "o.Name == o.Name" ? Why blacklist corpse in blacklist for hostile unit? (and search corpse without check if corpse is in this blacklist). 
    It's nice to help, but this type of code can mislead users.
     
     
    Code (not tested) with target should look like:
    var revive = new Spell("Revive", false); if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause && !ObjectManager.Me.IsCast && revive.KnownSpell && revive.IsSpellUsable) { var corpse = ObjectManager.GetObjectWoWCorpse().Where(c => !wManager.wManagerSetting.IsBlackListed(c.Guid)).FirstOrDefault(); if (corpse != null && corpse.IsValid) { Interact.ClearTarget(); // or Interact.InteractGameObject(corpse.GetBaseAddress); revive.Launch(); Interact.InteractGameObject(corpse.GetBaseAddress); wManager.wManagerSetting.AddBlackList(corpse.Guid, 1000 * 60 * 10); } } with focus should look like:
    var revive = new Spell("Revive", false); if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause && !ObjectManager.Me.IsCast && revive.KnownSpell && revive.IsSpellUsable) { var corpse = ObjectManager.GetObjectWoWCorpse().Where(c => !wManager.wManagerSetting.IsBlackListed(c.Guid)).FirstOrDefault(); if (corpse != null && corpse.IsValid) { var old = ObjectManager.Me.FocusGuid; ObjectManager.Me.FocusGuid = corpse.Guid; revive.Launch(true, true, false, "focus"); ObjectManager.Me.FocusGuid = old; wManager.wManagerSetting.AddBlackList(corpse.Guid, 1000 * 60 * 10); } }  
     
  19. Thanks
    Zan got a reaction from Photogenic in How to cast revive once?   
    Blacklist the target for an amount of time after use and use the !Blacklisted to cast on others.
  20. Thanks
    Zan got a reaction from Photogenic in 2 druids same group Tree of Life   
    "Tree of Life" is casted on self.
    Shouldn't it be:
    !ObjectManager.Me.BuffCastedByAll("Tree of Life").Contains(ObjectManager.Me.Guid)  
  21. Thanks
    Zan got a reaction from likon69 in rogue pickpocket   
    https://wrobot.eu/forums/forum/22-fran%C
  22. Haha
    Zan got a reaction from TheSmokie in [SUNWELL] Insane detection system/incredibly active GMs?   
    How do you bot from first quest to lvl 50 using the trial edition?
  23. Haha
    Zan got a reaction from Blazeone in vanilla   
    Self explanatory right?
  24. Like
  25. Like
    Zan got a reaction from Kamogli in Will this work for Wow Classic?   
    Private servers only.
×
×
  • Create New...