Matenia
Elite user-
Posts
2230 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Matenia
-
BG bot doesnt do anything
Matenia replied to Attam's topic in WRobot for Wow Vanilla - Help and support
Turn off free mode and record a profile (or leave the profile empty, but that mode doesn't work so well either) -
It will NEVER be less than -1. You would need -2 arrows... how can you ever have negative arrows? Just set it to buy new ones if you're below 200. The food thing probably works because wRobot automatically buys food, if it's available at a vendor that it's using during normal ToTown run.
-
bool visible = Lua.LuaDoString<bool>("return GroupLootFrame:IsVisible()");
-
WoW Vanilla Memory error after 06/05/2019 update
Matenia commented on Watcher's bug report in Bug Tracker
Droidz - run 2-3 wRobot sessions at the same time. People have said if you do that it happens much faster -
No. It's not easy to implement and it makes no sense. Plus the trend is to use it for science, education and in machine learning, not real software development.
-
WoW Vanilla Memory error after 06/05/2019 update
Matenia commented on Watcher's bug report in Bug Tracker
When you test droidz binaries, do NOT let wRobot update after restarting it. I can't test atm (maybe Monday at earliest). -
Latest update broke authentication for all products
Matenia commented on Matenia's bug report in Bug Tracker
You redownload the products you own if they have been fixed already -
Latest update broke authentication for all products
Matenia commented on Matenia's bug report in Bug Tracker
I didn't break compatibility and I didn't know Droidz was going to (he likely didn't know himself). We're developing third party binaries that are loaded through the C# API itself. This isn't a simple API change as you'd get it when distributing open source libs to a bunch of users. Discord has all the necessary info, including telling you not to update wRobot until I (or other creators) give the approval. It took me a total of 1:30h after the update to fix all binaries AND announce the update. Not a big deal. Also forum threads are NOT updated. It's considered bad manners between creators to push their own files into the forum's spotlight. -
Latest update broke authentication for all products
Matenia commented on Matenia's bug report in Bug Tracker
Every single one that uses custom authentication and gets the wRobot key that way. All of my products have been updated already. -
Latest update broke authentication for all products
Matenia commented on Matenia's bug report in Bug Tracker
Code to extract key before: var authKey = robotManager.Helpful.Others.StringBetween(authManager.LoginServer.GetSubcriptionInfoThread(), robotManager.Translate.Get(""License Key"") + "": "", ""... - "" + robotManager.Translate.Get(""Subscription time expire"")); Code to extract key after I fixed it for the update: CompilerResults result = RunCode.Compile(RunCode.CodeType.CSharp, @" public class AuthMainClass { public static void Main() { System.Text.RegularExpressions.Match matcher = System.Text.RegularExpressions.Regex.Match(authManager.LoginServer.GetSubcriptionInfoThread(), ""(Key: )(.*)(\\.\\.\\.)(.*)""); if (matcher.Success) { robotManager.Helpful.Var.SetVar(""wRobotAuthKey"", matcher.Groups[2].Value); } else { robotManager.Helpful.Var.SetVar(""wRobotAuthKey"", ""TRIAL""); } } } "); RunCode.InvokeStaticMethod(result, "AuthMainClass", "Main"); Logging.WriteError(RunCode.ErrorsToString(result)); this.wRobotAuthKey = Var.GetVar<string>("wRobotAuthKey"); -
Latest update broke authentication for all products
Matenia commented on Matenia's bug report in Bug Tracker
fbarboza, update your fightclass/plugin/profile. This is not an issue with wRobot, the wRobot update broke third party software This is just a request for droidz to add something more stable. And the log file is in your Logs folder, you don't need to copy it... -
Can you please add a property somewhere for the short wRobot auth key? All authentication features currently use this, but since you changed the string to include (1/10 sessions) now, it's broken unfortunately.
-
No, I don't want to publish everything on my server because it makes it too easy for people to gain unauthorized access. I'm sorry if people can't read the readme and come to the forums with that.
-
Settings for plugins and fightclasses are saved per character. So if you keep making new characters, you have to set things again.
-
Don't use addons
-
[PAID] Affliction/Demonology Warlock 1-60
Matenia commented on Matenia's file in Fight Classes - Vanilla
-
No. You've been spoonfed for months now, you never contribute anything back. If you can't create a C# fightclass when I already give you everything you need, you actually need to start teaching yourself some stuff instead of relying on others to do all the work for you.
-
Hello @Droidz can you give an example of how to add water/roads to the pathfinder myself? I know how to use the functions, my problem is - do I need to manually map everything out? Do I swim in the water and add plenty of small vectors (with 5 yard radius or similar)? How does this work for roads? Basically for Arathi Basin, I want to add water and roads, to help with pathfinding. I'm developing my own battlegrounder that is smart and doesn't require profiles atm, so this would be good.
-
All over the forums. It doesn't use keybinds. It uses spells. This is not comparable to Pirox (which you were probably thinking of). Take your time to read up on how to use wRobot. Sources are plenty and I'm not going to spoon feed them to you. The battlegrounder product is separate from everything else. It basically just signs your char up and tells it where to run and which enemies to attack. Basic functionality is handled by the bot framework and the fightclass (rotation). If you just expect to use Mage.cs (fightclass that comes with wRobot) in BGs you'll get banned within a day. There are tutorials on how to make your own fightclass, both in C# or using the fightclass editor.
-
Mounting is done by wRobot, spells are done by your fightclass (make your own if you're not happy with the one you have).
-
Record your own profile Turn off free mode Or just turn off free mode (with no profile available) and it will try and contribute - although not in a very sophisticated way
-
public static void SetMouseoverUnit(WoWUnit unit) { Memory.WowMemory.Memory.WriteUInt64((uint)Memory.WowMemory.Memory.MainModuleAddress + 0x74E2C8, unit.Guid); } public static void CastOn(WoWUnit unit, string spellName) { SetMouseoverUnit(unit); Lua.LuaDoString($@" TargetUnit(""mouseover""); CastSpellByName(""{spellName}""); TargetLastTarget(); "); }
-
You can't. You HAVE TO target. Vanilla client doesn't allow casting on other units. There are PLENTY of topics all over the forums on how to do this.