Skip to content
View in the app

A better way to browse. Learn more.

WRobot

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Fight Classes assistance

  1. Started by Macro,

    I would like to do two actions at once - cast a spell while moving back or jump while moving forward. When I try this script { wManager.Wow.Helpers.Move.Forward(Move.MoveAction.PressKey, 1500); wManager.Wow.Helpers.Keybindings.PressKeybindings(wManager.Wow.Enums.Keybindings.JUMP); } It waits until the first action is done until doing the second action. How do I run two actions at once?

  2. Hi, I just purchased wrobot and I'm brand new to scripting. I want to be self sufficient and learn how to make custom fight classes. Right now I am referring to other peoples free cs code and guessing code but a lot of the time I get errors. I'm currently trying to move my hunter forward under certain conditions, wManager.Wow.Helpers.Move.Backward(Move.MoveAction.DownKey, 1500); Thread.Sleep(1500); Works great for moving backwards but when I change the script to "Move.Forward" and "UpKey" - It only gives me errors. Is there a website that has a list of all of the different scripts available? such as the ones referring to wmanager?

  3. Started by Makaveli55,

    Hey i look for a PvE Fury Warrior Fc or Pvp Arms Fc..i would pay with Bitcoin plz help

  4. Started by zeeb,

    I've modified a fight class to suit my needs, however the combat rotation is too slow, a few weeks ago I remember every fight class to execute everything pretty much instantly, now there is a random delay between actions that makes my warrior miss Overpower and Execute oppurtunities, it is really wierd since all of the spells are instant except Heroic Strike. (It does use all abilities, but with said delay that ruins potential DPS) Here is the combat part of the fight class I've been working on: internal void CombatRotation() { if (Lua.LuaDoString<bool>(@"return (UnitIsTapped(""target"")) and (not UnitIsTappedByPlayer(""target""));")) …

  5. Hey, this fight class does everything I want, except it doesnt use fire blast and doesn't always use evocation. Could someone modify it so it fire blasts the mob it is fighting after frostbolt, always when it is off CD. Could it also be modified to always use evocation when it is off CD (unless you are flying, or are over 70% hp/mana) Thanks Tom 1-80 Frost Mage fixed.lnk

  6. My 27 rogue keeps dying to mobs that are way lower than him and it seems to be some error that I cannot figure out. [E] 11:08:26 - StartFight(ulong guid = 0, bool inBg = false): System.MissingMethodException: Method not found: 'System.Collections.Generic.List`1<robotManager.Helpful.Vector3> wManager.Wow.Helpers.PathFinder.FindPath(robotManager.Helpful.Vector3, robotManager.Helpful.Vector3, Boolean ByRef)'. at Escape.RunFightEventHandler(WoWUnit unit, CancelEventArgs cancelable) at wManager.Events.FightEvents.FightTargetHandler.Invoke(WoWUnit unit, CancelEventArgs cancelable) at wManager.Events.FightEvents.(WoWUnit ) at wManager.Wow.He…

  7. Started by Tommy Cox,

    Hi Everyone, I have been messing around in the Fight Class editor on my healer and having an issue. When I'm healing a group it will not cast all the spells on the target that had the lowest health, it sometimes just cast 1 spell and switches to another target with more hp. I have unchecked improve combat roation and it still skips spells. I've set the FPS to 60, I don't know why it's default so low.

  8. So currently, say you're in combat with 2 mobs and you 100% - 0% the first mob, then u have this 0.5sec delay before bot swaps its target to the second mob. That looks very un-humanlike if someone if watching you. Is there anyway to make it so that the bot recognises when the current target is say like at 15% hp and tries to target 2nd mob from that point already? The first mob can be finished off with dots/cleave from 2nd mob.

    • 2 replies
    • 1.6k views
  9. I have been looking for a good hour now though other peoples work and testing things. Im sorry to have to make a post asking. How do I target my pet with a spell in CS? Also, does anyone know of an API resource for wrobot for CS? Would love to develop. EG of what I have for self targeting. I can change 'me' to 'pet' but it will still target myself for the cast, else if (ObjectManager.Me.HealthPercent <= 65 && !ObjectManager.Me.HaveBuff("Renew") && Renew.KnownSpell) { SpellManager.CastSpellByNameLUA("Renew"); return; } else if (ObjectManager.Me.HealthPerc…

  10. SOLVED: else if (FrostNova.IsSpellUsable && ObjectManager.Target.GetDistance >= 6 && ObjectManager.Target.GetDistance <= 10 && !ObjectManager.Target.HaveBuff("Frost Nova") && !ObjectManager.Target.HaveBuff("Frostbite") && ObjectManager.Target.HealthPercent >= 20) { Lua.LuaDoString("SpellStopCasting()"); Thread.Sleep(50); fightState = fightingStateEnum.TargetClose; return; } I'm using this for Frost Nova, however it never casts it if Frost Bolt is already casting, I need help to implement code so that when the conditions are met, the current action is canceled: …

  11. Hello there! I have a question, if its possible to create fight class, for example for hunter that would execute perfectly freezing trap on my focus target. I know its possible with current target, its just i am not sure if its possible to do it for focus target aswell. Thank you very much

  12. Started by Lobbert,

    Hey, can't find a solution for this: I want my fightclass to stop doing anything/waiting actively if Vanish and Preparation are both on cooldown. So far I tried this as C# function with both condtions, out of combat and highest priority: Fight.StopFight(); MovementManager.StopMove(); Thread.Sleep(5000); My idea was that the bot will wait 5s over and over again until the conditions are no longer met, but he still continues moving after this even though the log says he is perfoming "Thread.Sleep(5000)" Suggestions or other solutions for this?

  13. Started by Ohren,

    Could we get a little better explanation of this? If you set this true, does it loop through your party and cast on them as the target?

  14. Started by Razgak,

    Is their a way to convert a FightClass from another bot program like zzukbot and make it usable in wrbot? when i try to load straight in i get compilation errors.

    • 0 replies
    • 963 views
  15. Started by Stranger,

    Goodday, Ive created the fightclass below but i dont understand why the lock keeps recasting Curse of Agony over and over. The need is on False. I have the fightclass attached. TBCafflock2.0.xml

    • 9 replies
    • 2.2k views
  16. Started by Forev,

    I was wondering if this warrior routine could be implemented to run in Wrobot? WarriorVanilla.dll

  17. Started by loveferals,

    Hello, I have several PQR profiles for 3.3.5 for PvP, I played at high rating with them. Is there a way to translate them to Wrobot ? Any guide ? Thank you

  18. Started by morris79,

    Spent 3 hours on it now, cant get it to work. Have uninstall wrobot, fresh install. The only output I can get is [F] 02:50:20 - [FightClass] Loading Fight class: C:\WRobot\\FightClass\Class1.cs 02:50:21 - [My fightclass] Is initialized. 02:50:36 - AOE 02:50:39 - BURST. 02:51:42 - BURST. 02:51:42 - AOE 02:51:46 - [My fightclass] Stop in progress. 02:51:47 - Session statistics: Elapsed time: 00h:01m:25s XP/HR: 0 - 0 min When I press the keys.It does write, put nothing happens. I am total lost. Plz help me out. Morris Class1.cs

  19. Started by morris79,

    This is not my code but from BetterSister, wolk Resto druid AIO. I want to chance getTanks, toget it just from my focus target. I have zero program skilles, plz help. Thanks for your time and support. #region get tanks List<WoWPlayer> getTanks() { List<WoWPlayer> ret = new List<WoWPlayer>(); var u = Party.GetPartyHomeAndInstance().Where(p => p.GetDistance < 80 && p.IsValid && !TraceLine.TraceLineGo(p.Position)); if (u.Count() > 0) { foreach (var unit in u) { //Logging…

  20. Hello, I reported this as a bug but I would like confirmation. I made a Fightclass with heal (party) and combat spell. When the bot engage a NPC and switch to an ally to heal him, it stuck on him, it don't switch back to the enemy target. Any solution? Thank you! ?

  21. Even putting revenge at the top of the priority, sometimes it is not executed, even if it is available. Who could help me? Warrior_Prot_xxx.xml 21 mai 2018 13H34.log.html

  22. Started by tbaker4979,

    I've been trying to setup a resto shaman fight class (I'm new to making fight classes) and I have another account with a warrior I was going to grind with. I'm having issues setting up a simple fight class where the shaman will just stay back or w/e and just lay down totems and also cast a heal whenever the warrior gets below a certain percentage. I've set up a blank fight class even, and in general settings enabled a macro to be hit every 1 second and I still cannot get it to work correctly. I'd like to set up a very simple just sit back lay totems and heal fight class and preferably use the Party mode in Wrobot to follow him around as the "Healer" (in Party mode options…

  23. Started by LordGlory,

    My issues is when i try to load a .cs file it wont work, but the xml files work just fine for the fight classes. Any help?

  24. Started by fihuvwix,

    How can I make rogue use poisons? Have tried 3 FC and none utilize this... pretty important

  25. Started by urkeysjim,

    Hello, I have a mage fight class that was working fine yesterday but started acting strange. Ran it for 100+ hours previously where it worked fine, using proper range and stopping to cast... As of this morning my mage is running into melee range, spamming the frostbolt button as if it were a melee spell... I have my range set to 25 and the Cast While Moving option set to No. Any ideas? It's buffing, using shields, etc. as normal so it's definitely recognizing the correct fight class but isn't following the range/moving parameters set. Would appreciate any feedback, thanks. Picture of fight class below:

    • 1 reply
    • 1.2k views

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.