-
Posts
12582 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
WoW Legion key
Droidz replied to misth's topic in WRobot for Wow Warlords of Draenor - Help and support
Hello, WRobot legion versions are not "WRobot for private server", these are old normal WRobot versions, these works with 'normal' and 'unlimited' WRobot subscription. You can also buy subscription 'for private servers' and send me private message, I'll upgrade your key for free. -
Hello, to resolve your problem, please read this: http://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 If you problem is not resolved, can you share your log file please (http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/).
-
(to answer the questions) WRobot is theoretically no detected (since WRobot update of the 11/11/2016), but I cannot confirm today that use WRobot is safe (and blizz GM seem very actives since banwave).
-
http://wrobot.eu/forums/topic/4430-banwave/?do=findComment&comment=20795
-
Problem WOD
Droidz replied to xerian's topic in WRobot for Wow Warlords of Draenor - Help and support
Hello, can you read this: http://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 If you problem is not resolved, can you share your log file please (http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/). -
-
Hello, http://download.wrobot.eu/wrobot/oldversion/WRobot_7.0.3_22522.zip
-
Hello, http://download.wrobot.eu/wrobot/oldversion/WRobot_7.0.3_22522.zip
-
Hello, http://download.wrobot.eu/wrobot/oldversion/WRobot_7.0.3_22522.zip
-
Hello, http://download.wrobot.eu/wrobot/oldversion/WRobot_7.0.3_22522.zip
-
[REQUEST] Wrobot 7.0.3 22522
Droidz replied to ⎝͠҉̭̫͖̗͇ͅTratin ̍̍̍̍̍̍̍̍̍̍'s topic in General assistance
Hello, http://download.wrobot.eu/wrobot/oldversion/WRobot_7.0.3_22522.zip- 8 replies
-
- 22522
- wrobot 7.0.3 22522
-
(and 1 more)
Tagged with:
-
Hello, Can you share your log file please (http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/).
-
Am I able to write any type of profile in C#?
Droidz replied to Brian's topic in Developers assistance
Hello, create bot (product) is good way, you can also create "Custom Profile" (full c# code) or create quest profile (you can use c# code in quest profile). -
Hello,this problem is caused by new protection. In relogger go to "General Settings" and change "Path to WRobot", select file with same icon than 'WRobot.exe' with an random name like "UqtfGgP.exe".
-
'Error during hook test'
Droidz replied to herpderp123's topic in WRobot for Wow Wrath of the Lich King - Help and support
Hello, try to launch WRobot with shortcut "WRobot No DX" -
I wanted to also tell you to beware of unbanning services.
-
Hello, Due to recent banwave, I recommand to not use WRobot on your main account (close all wrobot windows and wow before switch on your main account) and you need to know than currently ban risks is high. Ofcourse I have works to avoid new banwave, but keep careful. If you want use WRobot launch it and accept update. Kind regards, Droidz. UPDATE: http://wrobot.eu/forums/topic/4516-banwave-update/
-
Is now fully supported by WRobot (relaunch and update wow and wrobot).
-
Hello, with lua code like this: TalentMicroButton:Click() if PlayerTalentFrame then PlayerTalentFrameTab2:Click() PlayerTalentFrameTalentsTalentRow1Talent2:Click() PlayerTalentFrameTalentsTalentRow2Talent1:Click() PlayerTalentFrameTalentsTalentRow3Talent1:Click() PlayerTalentFrameTalentsTalentRow4Talent1:Click() PlayerTalentFrameTalentsTalentRow5Talent1:Click() PlayerTalentFrameTalentsTalentRow6Talent1:Click() PlayerTalentFrameTalentsTalentRow7Talent1:Click() PlayerTalentFrameCloseButton:Click() end Replace talent number, in PlayerTalentFrameTalentsTalentRow4Talent1:Click() replace 1 by 1, 2 or 3 (talent number) (in the line, is the row 4, it is the talent for level 60) You can get wow button name with this script: http://wrobot.eu/forums/topic/1689-useful-scripts/?do=findComment&comment=8447
-
force stop Force Stop Battleground Free Movement and Targeting/Attacking
Droidz replied to cgeorg13's topic in General discussion
Hello, wManager.Events.FightEvents.OnFightStart += (target, cancelable) => { cancelable.Cancel = true; while (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause && ObjectManager.Me.InCombat) { // you custom move.... } };- 2 replies
-
- battleground
- movement
-
(and 2 more)
Tagged with:
-
Hello, can you give me wowhead link of one of this quest.
-
Hello, use c# code like: wManager.Events.FightEvents.OnFightEnd += delegate(Int128 guid) { uint itemId = 86143; // Battle Pet Bandage if (ItemsManager.HasItemById(itemId)) { if (PetBattles.PetJournalGetHealth(1) != PetBattles.PetJournalGetMaxHealth(1) || PetBattles.PetJournalGetHealth(2) != PetBattles.PetJournalGetMaxHealth(2) || PetBattles.PetJournalGetHealth(3) != PetBattles.PetJournalGetMaxHealth(3)) { ItemsManager.UseItem(itemId); Usefuls.WaitIsCasting(); } } };