Everything posted by Droidz
-
bot wont attack while getting node.
Try to change your mount and try to disable you wow addons
-
Shared CS code for all profiles
For create you helpers class, look this sample: MyLib sample.zip (extract it in your WRobot folder, don't forget to activate plugins "MyLib Loader.cs"). This plugin contains two files, "MyLib Loader.cs" and "\MyLib\MyLib.cs". "MyLib Loader.cs" load file "\MyLib\MyLib.cs". "\MyLib\MyLib.cs" is your helpers class. To try this, you can run c# code where you want: MyLibNamespace.MyLib.Test(); (It is plugin, but you can convert "MyLib Loader.cs" to integrate it at your Quester or custom profiles). To check if plugin is active use this code: bool isActive = false; foreach (var p in wManager.wManagerSetting.CurrentSetting.PluginsSettings) { if (p.FileName == "MyLib Loader.cs" && p.Actif) { isActive = true; break; } } or you can use "Var", in plugin Initialize method put: robotManager.Helpful.Var.SetVar("MyLibInitialised", true); and when you want check if plugin loaded (where you want in WRobot): bool isActive = robotManager.Helpful.Var.Exist("MyLibInitialised") && robotManager.Helpful.Var.GetVar<bool>("MyLibInitialised");
-
Class trainer
1: Yes: go to advanced general settings >Tab "Food / Drink" put your food/drink name (case sensitive). > Tab "Vendor..." Put "Food(Drink) Amount" at 5 (or more) and check option "Selling" (don't forget to add vendor or repair npc at you profile/npc db). 2: You need to use Relloger: http://wrobot.eu/forums/topic/3632-relogger-tutorial-video/ or product "Schedule".
-
fishing retraitre of Margoss
I can add bobbers support, but I need the object entry (for it go to tab "Tools" > "Dev... tools" > Click on "Dump" button...) (you need to have bobber near ingame before to click on dump...). give me 'entry id' of the object (you can found object name in game when you put your mouse over). ___________________________ Je peux ajouter le support des flotteurs, mais j’ai besoin de l’'entry id' de l’objet (pour cela allez à l’onglet "Tools" > "Dev... tools" > Cliquer sur le bouton "Dump...") (vous devez avoir le bouchon en jeu avant de cliquer le bouton 'dump...'). Me donner "Entry id" de l’objet (vous pouvez trouver le nom de l'objet dans le jeu lorsque vous placez votre souris dessus).
-
Gathering bot problem (mine only once)
Hello, try to increment Min/Max Latency in advanced general settings tab "Others".
-
Class trainer
To add class trainer, go to your "npc db" (tab "Tools") or edit your profile, in game select npc trainer, in WRobot select npc type (for hunter add Npc type 'HunterTrainer',...) and click on button "Add target...". WRobot go to trainer when he level up.
-
Not Picking Up Artifact
Hello, can you share your log file please. If you can also give me object id (for it go to tab "Tools" > "Dev... tools" > Click on button "Dump...". give me 'entry id' of the object (you can found object name in game when you put your mouse over).
-
Class trainer
Hello, you play on Wow official servers?
-
How to cancel subscription
Hello, no, its not an automatic payment.
-
WRobot for Wow 7.0.3 bugs reports
hello, http://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966
-
Trial
Hello, answered by private message
- Legion Warsong Glutch Constant Blockages
-
reloger Crash
Do you have try to install last version of Framework https://www.microsoft.com/en-us/download/details.aspx?id=48130 ?
-
Change Targets
I have edited my last post: http://wrobot.eu/forums/topic/3811-change-targets/?do=findComment&comment=17863 (replace "ObjectManager.GetWoWUnitHostile().OrderBy(u => u.HealthPercent).FirstOrDefault(u => u.GetDistance <= distance) != null" by "ObjectManager.GetWoWUnitHostile().OrderBy(u => u.HealthPercent).FirstOrDefault(u => u.GetDistance <= 10) != null")
-
Mining
Normally it is automatic, it's for this reason that I'll check. But, to resolve problem, you have two ways: Disable option "Harvest Minerals" and add names of mines at harvest in advanced general settings tab "Looting and Farming options" option "Harvest objects (one name or id by line)(case sensitive)". Or you can add name of mines with hightlevel of you current zone like 'Tin ore' in advanced general settings tab "Looting and Farming options" option "Don't harvest objects (one name or id by line)(case sensitive)".
-
New characters stuck at vendor
If you can wait next update for the fix.
-
Mining
Hello, I come back to you when I find reason or fixed this problem.
-
Relogger bug
Droidz replied to Desperadosik97's topic in WRobot for Wow Wrath of the Lich King - Help and supportHello, http://wrobot.eu/bugtracker/335a-bot-unable-to-relog-bug-in-reloger-r337/
-
reloger Crash
Some times, WRobot can fail to download mesh file and put an corrupted mesh file in 'meshes' folder (this can crash WRobot). But it is not normal than relogger crash.
-
Moves when fishing
Thank you, i'll look. I comeback here later
- Quick example: Gatherer and InteractWithNPC
-
New characters stuck at vendor
Hello, thank, I'll look this, I come back here when is done.
-
New characters stuck at vendor
Changed Status to Confirmed Changed Version to All
-
Change Targets
You can launch it is xml fightclass, Add conditon "C Sharp code" like: ObjectManager.GetWoWUnitHostile().OrderBy(u => u.HealthPercent).FirstOrDefault(u => u.GetDistance <= 10) != null And in instead of spell name, put // Get unit in range and lowest health float distance = 10; WoWUnit unit = ObjectManager.GetWoWUnitHostile().OrderBy(u => u.HealthPercent).FirstOrDefault(u => u.GetDistance <= distance); // Any unit? if (unit != null && unit.IsValid) { // Interact Interact.InteractGameObject(unit.GetBaseAddress); } and activate spell setting 'No spell, is C# code'.
-
reloger Crash
it is strange. You have get this problem recently? (or you just start to use Relogger)? In google, all repport similar at this crash is very recent https://www.google.com/search?q=ltc_game32-116096.dll . What version of Windows do you use? do you have get update recently?