skeletonboy360
Members-
Posts
38 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by skeletonboy360
-
No. 8.0 just launched anyways
-
Rotation
skeletonboy360 replied to mrfrank's topic in WRobot for Wow The Burning Crusade - Help and support
It’s a good replacement for PQR if you have a good fight class -
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.
-
Every other spell needs something like “IsUsableSpell>Revenge>False” then it will only use revenge when it is available
-
Scout Jyoba's Report quest: how to do
skeletonboy360 replied to morris79's topic in Quester assistance
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); -
Vanilla: ObjectManager.Me.GlobalCooldownEnabled always returns false
skeletonboy360 commented on Ordush's bug report in Bug Tracker
I used aquatic form to check gcd on mine. Anything with 0 cd would work. if (SpellManager.GetSpellCooldownTimeLeft(“Aquatic Form”) > 0) return. -
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
- 6 replies
-
- warrior
- protection
-
(and 2 more)
Tagged with:
-
Warrior_Prot_xxx.xml
- 6 replies
-
- warrior
- protection
-
(and 2 more)
Tagged with:
-
Try this Warrior_Prot_xxx.xml
- 6 replies
-
- warrior
- protection
-
(and 2 more)
Tagged with:
-
[PVP] Warrior Prot - charge not work
skeletonboy360 replied to Garub's topic in Fight Classes assistance
Check this one. Let me know if charge works how you want it to. test.xml -
"follow path" does not seem to work for me
skeletonboy360 replied to retrostalgic's topic in Quester assistance
Oh yeah -
"follow path" does not seem to work for me
skeletonboy360 replied to retrostalgic's topic in Quester assistance
Can you upload log and profile -
[PVP] Warrior Prot - charge not work
skeletonboy360 replied to Garub's topic in Fight Classes assistance
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 -
how do i make quester set hearthstone
skeletonboy360 replied to retrostalgic's topic in Quester assistance
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. -
This one follows the npc path, and then moves to the npc etc. test2.xml
-
test3.xml
-
I was thinking about this the other day. Something similar to what Jamba does in WoW but for leveling with wrobot.
-
Check with fightclass creators, some use custom regen
-
As in how to make the menu ingame or how to link it with the profile?
-
People easily recognize my bot
skeletonboy360 replied to Photogenic's topic in Battlegrounder assistance
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. -
What is it for? Probably easier to override pulse.
-
Bug
skeletonboy360 replied to Pallastic's topic in WRobot for Wow Wrath of the Lich King - Help and support
4.3.4 my pally spams Blessing of Might even with the buff. -
Melee Classes not able to hit Mobs
skeletonboy360 replied to Bambo's topic in WRobot for Wow Vanilla - Help and support
Just figure out how those two plugins work and make one that works for you. Should just be a small edit