Jump to content

skeletonboy360

Members
  • Posts

    38
  • Joined

  • Last visited

Recent Profile Visitors

700 profile views

skeletonboy360's Achievements

  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.
×
×
  • Create New...