Everything posted by Matenia
-
Бот для фарма данжей
This is a private server bot, not for retail classic...
-
Any suggestions please?
For what you want to do, grinder is not the correct product. You need to use Quester with an EasyQuest profile containing all the steps you want done. You'll never be able to do what you want with grinder. If you're having problems with HMP, please don't try to figure them out in an unrelated thread and contact me on Discord. You can (and NEED to) send a full log file. #faq channel will help you with that.
-
Fisherbot + Relogger issue?
If this doesn't work anymore, you can just adjust the source, since he attached it.
-
Any suggestions please?
Either hardcode vendoring through followpath quest types and using code to vendor (maybe you can make it repeat the grind path until bags are full, idk). If you record the proper followpath, it should not have an issue with flying either. Or you can just try blacklisting everywhere you don't want it to go and hope for the best
-
Бот для фарма данжей
Buy a wRobot license and you might find profiles.
-
Classic WoW PVP Pool boosting
Also, this would work for any expansion that wrobot supports, but not for retail classic wow. This is a private server bot.
-
endless.gg ?
Then why did you bother commenting on a thread that's specifically in regards to anti-cheat on a very specific TBC server? Could it possibly be because most of your posts are to make yourself sound more important and knowledgable while contributing nothing to the topic at hand? I've said this many times, but often your answers are so incomplete or off-topic that they do more damage than they help anybody. This was just another case. So as long as you keep doing that, I'll happily correct you publically so people can actually find an answer to their question. I genuinely don't understand your need to push your post count into oblivion and make yourself seem soooo important at any chance you can get.
-
endless.gg ?
Smokie, your input is basically entirely incorrect. The warden module that let's you execute arbitrary Lua code on the client doesn't work in 2.4.3. So everything you said is true for wotlk (but by far not the only way they're detecting hacks and bots) and has been known for years. Still doesn't apply here at all and you're just making yourself look like a fool to anyone who actually has a little understanding on the matter.
-
BG Anti-AFK profile
You'd just write your own product that simply does nothing but queue for bgs. All the other stuff, including combat behavior is an integral part of wrobot and if you want to reuse literally anything from wrobot, even fightclasses, you can't change that. Also, they might not know if it's a player, but in my experience they simply don't give a shit. If you then don't reply to a whisper pretty much right away, you're banned. And getting caught is a lot more obvious. Trust me, I've tried as far as back on Warmane tbc.
- Forwarding lua events in C#
- Forwarding lua events in C#
-
Product/Profile advice
Well, once you buy a wRobot license I'm sure someone will be willing to help. But this is very specific and probably can't be done just with existing plugins. You'd need to modify existing code, especially for requirements as specific as only picking up mail items until the bags are almost full. "Craft" is also not very specific at all. Basically you want a whole profession automated from 1-450? Good luck.
-
Can I buy a 5-sessions key and use it with my friends in different IP addresses?
Yes, you can run all 5 sessions on different VMs with different IPs.
-
Whisper alert
I highly recommend using this: Mars has done an excellent job with it.
-
Forwarding lua events in C#
Pro tip: There are no events being skipped. If you look at my framework it works perfectly. If you're running patch 6.x or higher, you need your own combatlog parser. Create a lua frame that subscribes to the event, get the payload, store it in a table and periodically empty the table and read the contents "line by line".
-
Pathfinder wrong path
Even with offmesh distance 1000+ it does not work. I PM'd you the code, you can take a look. It's 6 different offmeshes for all directions.
-
Pathfinder wrong path
Can you remove the path I have shown anyway? It is wrong. The bot falls down a wall. There is no valid path down there.
-
Pathfinder wrong path
In my case, I have 6 offmeshes. Darnassus Portal Down Darnassus Portal Down and Auberdine Ruth'eran to Auberdine So depending on where the bot is, it should always find the correct connection, I think. I will try incrementing search distance.
-
Protection from SpellManager.CastSpellBy && LuaDoString (or what?)
It's definitely possible to hook GetTickCount() and modify it. But we are taking a very WILD guess that this is what they use to identify your computer. This is mostly because I cannot think of anything else they would use (from Lua) to create a "hardware" fingerprint. You'll be better off just running VMs.
-
wManagerSetting.CurrentSetting.PathFinderFromServer
It will simply create a straight "path" without meshes if you disable that option.
-
Pathfinder wrong path
Pathfinder seems to think there is a path here. [N] 07:04:47 - [Path-Finding] Path Count: 53 (4214,631y, 679ms) (resultPartial=True, resultSuccess=True (more info with server log option)) I added offmeshes to go through the portal in darnassus (even with useifcanmakepath) and they are ignored unless I am already close to that route. Even with blacklisting this area: Can I somehow remove any vectors from that path and make it unusable for wrobot? It simply DOES NOT exist.
-
Protection from SpellManager.CastSpellBy && LuaDoString (or what?)
Dude, I'm only taking guesses. It's up to you to figure out what they do. And yes, custom MPQ that loads FIRST is probably what you have to do.
-
Protection from SpellManager.CastSpellBy && LuaDoString (or what?)
If they don't check your IP (seems you're proxying) they might check your GetTime() (Lua) result because it is unique to your computer. You can modify this function by hooking it and adding a random offset. Search the forums.
-
Program don't working
Um, you don't have a wRobot license. The updater likely isn't working because you're not actually using the correct wRobot version. I'm sure you know exactly what I'm talking about ?
-
Protection from SpellManager.CastSpellBy && LuaDoString (or what?)
So basically they hook CastSpellByName etc. Smart and exactly what I thought they were doing. Load another custom before BEFORE this one and hook it BEFORE them. Then you may use your own custom function.