-
Posts
12579 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
-
problems with healing Resto Shaman Not Healing itself in Party Mode
Droidz replied to Botnut's topic in Fight Classes assistance
Hello, Try to replace "Cast On" : "party1" by "target". Add condition 'Have Target' > Value = "True" If you can share your log file if you get again problems. -
Je suis désolé mais le serveur ne doit probablement pas envoyer d'info au client sur les joueurs invisibles. Si c'est le cas il est impossible de connaitre leurs positions.
-
Hello, Sorry, I cannot help you, you use an very old WRobot version, he has a lot of change since. But the best way is to use C# code if you cannot make it to work with default options of "easy quests profile".
-
Hello, You can look this video: https://www.youtube.com/watch?v=bak7iR0Ewo4 It is old WRobot version (just name of buttons has changed), but I'll make new video today with new WRobot version.
-
-
Click to accept / Click to Turn In Quests. Droidz Budday!
Droidz replied to Networkz's topic in Quester assistance
Hello, It is possible that the name of the buttons changes on some quests. You can get the name of the buttons with this script: http://wrobot.eu/forums/topic/1689-useful-scripts/?do=findComment&comment=8447 In this script replace "TheButtonName" by name returned by the script RunMacroText("/click TheButtonName"); -
Hello, Do you have try to disable in "Spell Settings" the option "Lock frame when checking the conditions" (on you heal spells)?
-
Hello, if you can wait next update. I have added the option "Can walk on water" in Fisher "Product Settings" (activate it). If you can tell me if this resolve your problem.
-
Hello, Sorry for the delay. Can you tell me if you get again this problem (I have updated panrarian navigation files since your post).
-
Hello, In this http://www.wowhead.com/quest=26948/moonfire quest settings , put 0 at "Objective count 2" (put 1 only at "Objective count 1"). To disable wrobot settings "Ignorer formation Dummy" automatically, add step before this quest (in quest orders), put the type "RunCode" and put param: wManagerSetting.CurrentSetting.BlackListTrainingDummy = false; BlackListSerializable.AddBlackListToWRobotSession();
-
Some softwares like "teamviewer" bloc the keyboard access, "use lua to move" allows to move your character without use keyboard. Hello, look in tuto forum: http://wrobot.eu/forums/forum/7-tutorials-wrobot/
-
Hello, WRobot haven't this feature yet. You can use wow addon like Zygor for it.
-
-
You can found some others source code here: http://wrobot.eu/files/category/26-plugins/ I have write sample code (no tested): using System.Collections.Generic; using System.Threading; using System.Windows.Forms; using robotManager.Helpful; using robotManager.Products; using wManager.Plugin; using wManager.Wow.Helpers; using Timer = robotManager.Helpful.Timer; public class Main : IPlugin { private List<string> Names = new List<string> { "ObjNpc Name 1", "ObjNpc Name 2", "ObjNpc Name ...", }; private bool _isLaunched; public void Initialize() { _isLaunched = true; var timer = new Timer(1500); timer.ForceReady(); Logging.Write("[Search Objects] Loadded."); while (_isLaunched && Products.IsStarted) { try { if (timer.IsReady && Conditions.ProductIsStartedNotInPause) { foreach (var o in wManager.Wow.ObjectManager.ObjectManager.GetObjectWoWUnit()) { try { if (o.IsValid && !string.IsNullOrEmpty(o.Name) && Names.Contains(o.Name)) { // Code here where NPC found: MessageBox.Show("Npc found: " + o.Name); } } catch {} } foreach (var o in wManager.Wow.ObjectManager.ObjectManager.GetObjectWoWGameObject()) { try { if (o.IsValid && !string.IsNullOrEmpty(o.Name) && Names.Contains(o.Name)) { // Code here where object found: MessageBox.Show("Object found: " + o.Name); } } catch { } } timer.Reset(); } } catch { } Thread.Sleep(300); } } public void Dispose() { _isLaunched = false; Logging.Write("[Search Objects] Disposed."); } public void Settings() { MessageBox.Show("[Search Objects] No settings for this plugin."); } } (replace "ObjNpc Name ..." line 15 by object or npc name (case sensitivity))
-
Hello, I fixed problem in WRobot, to wait WRobot update, you can use this profile (code to fix problem is in first steps (in quest order)). Undead Quest FIXED.xml
-
Je ne sais pas ce qui cause le problème, vous êtes le seul à l'avoir. Il y a de grande chance que WRobot est des problème à accédé au fichier "WRobot\Data\OffMeshConnections.xml" (soit le fichier est corrompu, n’existe pas, soit l'antivirus ou Windows bloque l'accès?). Vous pouvez essayé sur un autre PC ou d'installer Wow et WRobot dans une machine virtuel (avec VMWare).
-
Hello, Read this to try to resolve problem: http://wrobot.eu/forums/topic/1381-repairinstall-wrobot/ If problem is not resolved please give me your log file: http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/
-
Hello first time user here trying to load up the trial version
Droidz replied to valkyrie's topic in General assistance
In login window (first window) try to unckeck option "DirectX hook". -
C'est le code C#: bool cibleAttaquable = Lua.LuaDoString<bool>("return UnitCanAttack('player', 'target')"); if (cibleAttaquable) { // ta rotation... }
-
Hello, with lastest updates you get yet this problem?
-
You can use action ( http://wrobot.eu/forums/topic/2202-profile-positions-and-action-column/ ) but you are limited. But if you use quester (or custom profile) you get full control of your character, it is the best solution.
-
WRotation - Check if NPC is Hostile/Neutral/Friendly
Droidz replied to Jarek's topic in Fight Classes assistance
Hello, Do you want check it is your fightclass? if yes, you can use lua condition with this wow function: http://wow.gamepedia.com/API_UnitCanAttack -
Hello, You can try to disable option "Detect nodes stuck" and activate option (in gatherer product settings) "Skip nodes Indoors if Outdoors".