-
Posts
12519 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
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");
-
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".
-
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).
-
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.
-
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).
-
Hello, you play on Wow official servers?
-
Hello, no, its not an automatic payment.
-
hello, http://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966
-
Hello, answered by private message
-
Do you have try to install last version of Framework https://www.microsoft.com/en-us/download/details.aspx?id=48130 ?
-
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")
-
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)".
-
If you can wait next update for the fix.
-
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 support
Hello, http://wrobot.eu/bugtracker/335a-bot-unable-to-relog-bug-in-reloger-r337/ -
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.
-
Thank you, i'll look. I comeback here later
-
Hello, With lua, you can interact with NPC (you are limited) but you cannot gatherer, you can found wow api here: wow.gamepedia.com/World_of_Warcraft_API
-
Hello, thank, I'll look this, I come back here when is done.
-
Changed Status to Confirmed Changed Version to All
-
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'.
-
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?
-
Hello, you can run lua code directly in fightclass. Can you give more detail about your objective.