Jump to content

skeletonboy360

Members
  • Posts

    38
  • Joined

  • Last visited

Everything posted by skeletonboy360

  1. It’s a good replacement for PQR if you have a good fight class
  2. Something like that. I'm not sure if Is Spell Usable works for revenge, but thats the basic idea. Yes its tedious, but until you figure out how to make a c# profile, thats what you have to do.
  3. Every other spell needs something like “IsUsableSpell>Revenge>False” then it will only use revenge when it is available
  4. I did this one. Quest One: interact target. Complete if return Quest.HasQuest(quest id); quest two: kill mobs. Complete if return Quest.IsObjectiveComplete(1, questid);
  5. I used aquatic form to check gcd on mine. Anything with 0 cd would work. if (SpellManager.GetSpellCooldownTimeLeft(“Aquatic Form”) > 0) return.
  6. If you want to activate it, just bind a macro in game and press it. /cast Berserker Stance /cast Recklessness Add Defensive Stance spell to fight class, Condition: Buff > Defensive Stance > False. Bot will cast defensive stance when it doesnt have it
  7. Check this one. Let me know if charge works how you want it to. test.xml
  8. Not xml, might be able to change some stuff an make it c sharp code for xml. This is my druid feral charge: if (TargetDistance() >= 8 && TargetDistance() <= 25 && SpellManager.KnowSpell(16979) && Rage() >= 5 && SpellManager.GetSpellCooldownTimeLeft(16979) == 0) { Logging.WriteFight("Casting Feral Charge (Bear Form)"); Lua.LuaDoString(FeralCharge); } I've got one for warrior too, but thats also c# code. Also need something like ObjectManager.Me.HasTarget
  9. Something like var bindLocation = Lua.LuaDoString("hearth=GetBindLocation();", "hearth"); while (bindLocation != "Goldshire") { wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithNpc(innkeeper.Position, innkeeperEntry); Lua.LuaDoString("SelectGossipOption(1)"); // WRobot has a command for this too, I forgot it Lua.RunMacroText("/click StaticPopup1Button1"); } I can't remember what I did but thats the basic idea.
  10. This one follows the npc path, and then moves to the npc etc. test2.xml
  11. I was thinking about this the other day. Something similar to what Jamba does in WoW but for leveling with wrobot.
  12. Check with fightclass creators, some use custom regen
  13. As in how to make the menu ingame or how to link it with the profile?
  14. Its debatable whether BG botting forced Blizzard to finally take action on botting. But I agree it's a top reason. That said, you should probably find another bot if you don't want to get caught in BGs. I really can't think of anything else the bot could do that would be any more detectable than BG botting. Whats worse than a bunch of players on a small map who all have to watch each other and work together as a team, when all of the sudden this random player who isnt responding just starts walking to the same spots every time. And while friendly players try to get you to work with them to win the battleground, the enemy team of 10+ players who are all engaged and watching intently eventually notice this one specific player who is really bad and clearly isnt a human. Having the bot grind npc's when we know the npc's limitations is safe. But humans being unpredictable leads them to be able to kite the bot into walls and such. I wont get into my personal opinions of people who bot BGs though. I've never used WRobot for Battlegrounds. Seeing how it quests/grinds is enough to know I never will use it in BGs. HB was believable but this just isnt the kind of bot. Theres only so much you can do with this bot. If you BG bot, you shouldnt really have any issue with reports/bans. It shouldnt never be an account you care for.
  15. What is it for? Probably easier to override pulse.
  16. 4.3.4 my pally spams Blessing of Might even with the buff.
  17. Just figure out how those two plugins work and make one that works for you. Should just be a small edit
×
×
  • Create New...