Matenia
Elite user-
Posts
2230 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Matenia
-
mage [FREE] [PVE] 1-40 Enraged Frost Mage Vanilla
Matenia commented on Enraged's file in Fight Classes - Vanilla
-
way too high cpu usage
Matenia replied to Crespo's topic in WRobot for Wow Vanilla - Help and support
Do /console maxfps 10 ingame for the time being. But yes, I think this should be investigated - although you need to make sure this happens even with an XML fightclass and NO plugins. -
//Checks if there's available LoS between your target and the new spot too. !TraceLine.TraceLineGo(ObjectManager.Target.Position, newPos) //check if there's LoS between you and the new Pos !TraceLine.TraceLineGo(newPos) //Then you can use: bool isValid = false; var path = PathFinder.FindPath(newpos, out isValid); if(isValid) { MovementManager.Go(path, false); } This prevents a CPU/memory hog, but only using pathfinding once you confirmed LoS. Also check that no NPC is near newPos.
-
There are 5.4.7 and 5.4.8 MoP versions. Tons of info on how most servers actually fake the version.
-
PathFinder.FindPath has an API for checking if the path it made is valid. You can also use !TraceLine.Go(vector3) to check that LoS is available to the vector from your position. Using those tools, you should be able to find a vector where no enemy is in sight (by periodicially checking LoS and enemy positions in ObjectManager) around your character. You can also use PathFinder.ReportDangerArea(vector3, radius) to tell the pathfinder to avoid this area (e.g. mob + aggro radius) while running away. But in my experience this is iffy and you should do your own "pathfinding" for small paths when not runnign very far away.
-
It is definitely being maintained. Although with a single dev, you will not see HonorBuddy types of development.
-
wRobot requires you to invest a lot of time to get anywhere. Questing profiles for Legion are all paid. You have to make your own grinder (you can use the quest editor for this) or pet battle profiles if you want to level somewhat fast. You have to make your own fightclasses. Most of camelot's do work though, but they're usually not for low-levels. The fightclass editor is intuitive and very easy to use - there are video tutorials though. Basically invest time and make your own things. There isn't any one-click wonders here. Free stuff is usually okay but nowhere near great.
-
How can I target monster by WoWObject.GetBaseAddress
Matenia replied to jeste309's topic in General assistance
This method ONLY sets the target. If you have your bot set to grind and you are targeting the type of mob that you've set as a target, the bot might decide for itself to "start a fight". Try doing whatever you're doing in a quester or call Fight.StopFight() right after. -
You can find old, unobfuscated binaries somewhere on the internet, I believe. Either way, we've all been asking and he won't do it (you can PM for particular sources and ask nicely). Essentially, the obfuscation got really bad when the bot got cracked over and over. Now it's been fairly safe for him.
-
How can I target monster by WoWObject.GetBaseAddress
Matenia replied to jeste309's topic in General assistance
Depending on what you want to do, it should also be possible to do: ObjectManager.Me.Target = obj1.Guid; -
It's my FC and it does not have anything like that implemented. It must definitely be wRobot itself giving that popup (or maybe some form of plugin). I'd be interested in what causes this: [E] 14:35:43 - ProtectHook(): System.IndexOutOfRangeException: Index was outside the bounds of the array. at robotManager.MemoryClass.Hook.IvuejiguvoruovIwed() Plus, it looks fine to me. The bot actually seems to be running the profile and grinding Ogres. What's the problem here?
-
Vendor/Mailbox/Repair Problems
Matenia replied to Grizzler's topic in WRobot for Wow Vanilla - Help and support
You'd have to edit your profile to force only profile NPCs and then add only the NPCs do the profile you'd want it to use at any given time. -
Vendor/Mailbox/Repair Problems
Matenia replied to Grizzler's topic in WRobot for Wow Vanilla - Help and support
Another thing wRobot does: When choosing vendors, it chooses the closest vendor by 3D distance, but it doesn't calculate which PATH is the shortest (for resource reasons, it makes sense). So sometimes (often?) wRobot will walk you toa vendor that it thinks is closest, but you will actually have to navigate mountains to get to it for 20 minutes. -
Vendor/Mailbox/Repair Problems
Matenia replied to Grizzler's topic in WRobot for Wow Vanilla - Help and support
Pathing in Desolace (Alliance) is broken and and vendors are unreachable -
Vanilla Battlegrounder AV
Matenia replied to dweebster's topic in WRobot for Wow Vanilla - Help and support
In free mode, it just follows people instead of a profile, actually. You can't change anything about BGs though, the product is alright but the bot is definitely not made for that.- 8 replies
-
- vanilla
- battlegrounder
-
(and 3 more)
Tagged with:
-
namespace priestf Sorry I didn't see this earlier, but you CANNOT use your own namespace on the main class. All other classes you have are fine to be used within any of your own and/or different namespaces, but the Main : CustomClass is not.
-
mage [FREE] [PVE] 1-40 Enraged Frost Mage Vanilla
Matenia commented on Enraged's file in Fight Classes - Vanilla
Regarding your rank on bars problem: https://github.com/Schaka/VanillaFightclassFramework Also, would you mind elaborating what stutter stepping bug you had exactly and maybe how it is related to HMP (and/or how you solved this for your own fightclass), so I can fix it? I usually disable buying food/drink in HMP when running a mage. I recently fixed a bug where the bot would stop too often to create water/food though. I'd encourage you to redownload through your purchase link. Not trying to discourage you from doing your own work at all, I think it's great. I pm'd you a link for a private Discord regarding vanilla wRobot devs. -
Discord has been banning botting related channels lately.
-
Warmane Ban
Matenia replied to Ghettochips's topic in WRobot for Wow The Burning Crusade - Help and support
... I am clearly talking about Maylu's grinder on Outland -
Warmane Ban
Matenia replied to Ghettochips's topic in WRobot for Wow The Burning Crusade - Help and support
Also that profile is SO common I can promise you they check all its grinding spots -
Yes, that is part of my fightclass (it's a debugging statement I left in by accident). It stops moving ONLY if you are out food/water and the mage wants to create more. Try incrementing your latency setting to 350-500. You will also need to set up CTM correctly, meaning forcing 60 Hz on your monitor and activating vsync in your video options ingame. If you still have any issues, message me on Discord.