Everything posted by Droidz
- Impie Death Knight
- [Ohren]Fight Class Collection
- Mining Kyparit + Ghost Iron Ore
-
WRobot - Official
- 116 comments
- 6 reviews
- Resto Shaman Not Healing itself in Party Mode
-
Listes et invisibles...
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.
-
2 Daily quests annoy me
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".
-
How about some how to guides?
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.
-
Apexis Daily Quests
Hello, Yes you need to click manually on button to select quest on the table (like this you can select the quest that you want)
-
Click to accept / Click to Turn In Quests. Droidz Budday!
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");
-
wow and bot freezing when healing
Hello, Do you have try to disable in "Spell Settings" the option "Lock frame when checking the conditions" (on you heal spells)?
- Fishing Profile
-
Pandarian Archaelogy Dance
Hello, Sorry for the delay. Can you tell me if you get again this problem (I have updated panrarian navigation files since your post).
-
Issue with quest
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();
-
[Gatherer] - Hovering on the nodes.
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/
-
how to set automatic equip
Hello, WRobot haven't this feature yet. You can use wow addon like Zygor for it.
-
Nagrand (Ground)(Mine, Herb, Timber)
Hello, do you have activated "Harvest Timber" in tab "General Settings"?
-
Possible to search for object?
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))
-
Need help with pathing
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
-
Probleme pendant farming
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).
-
Just bought a sub cant login
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
In login window (first window) try to unckeck option "DirectX hook".
-
WRotation en duel
C'est le code C#: bool cibleAttaquable = Lua.LuaDoString<bool>("return UnitCanAttack('player', 'target')"); if (cibleAttaquable) { // ta rotation... }
-
TREE
Hello, with lastest updates you get yet this problem?
-
2 question about TP and buy item form NPC
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.