Everything posted by Droidz
-
Could you teach the bot to circumvent the taint (green deadly lava)?
Hello, Blacklist zones works in your case? Sorry but no automatic way to avoid area with lava and currently I am not able to add this. Just avoid zones or blacklist it.
-
Buy a specific item from a specific vendor
Hello, use quest type "Override Pulse CSharp Code" with code: var npc = new Npc { Entry = 1247, Position = new Vector3(-5601.6, -531.203, 399.6539), Type = Npc.NpcType.Vendor }; int itemId = 2894; if (GoToTask.ToPositionAndIntecractWith(npc)) { Vendor.BuyItem(ItemsManager.GetNameById(itemId), 1); } return true;
- Pickpocketing
-
Requeue
WRobot use lua fonction "GetBattlefieldTimeWaited()" to check if you are in queue. When you are in queue and you run this macro what is the result: /run DEFAULT_CHAT_FRAME:AddMessage(GetBattlefieldTimeWaited(1))
-
Attack marked Target
Hello, put this code instead of spell name, and use option spell option 'Not spell, is lua...': local SpellName = GetSpellInfo(109259) for i = 1, 4, 1 do local UnitIdString = "party" .. i .. "target" if UnitExists(UnitIdString) then if GetRaidTargetIndex(UnitIdString) == 8 and IsSpellInRange(SpellName,UnitIdString) then CastSpellByName(SpellName, UnitIdString) return end end end (I have added IsSpellInRange) And add "lua script" condition: Lua script: needToCast=false; local SpellName = GetSpellInfo(109259) for i = 1, 4, 1 do local UnitIdString = "party" .. i .. "target" if UnitExists(UnitIdString) then if GetRaidTargetIndex(UnitIdString) == 8 and IsSpellInRange(SpellName,UnitIdString) then needToCast=true; return end end end Return value research: true Return value var: needToCast To use this code in party chat command just use "Action command type" > "Lua" with the first code of this post. of course, replace 109259 by your spell in in all codes.
- Mage runs into Enemys
-
wrobot now working
Hello, https://us.battle.net/support/en/article/how-to-toggle-32bit-mode-world-of-warcraft If you problem is not resolved: http://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 (don't forget to share your log file)
-
Profile Peche Bancs de Poisson
Bonjour, Page 51: http://download.wrobot.eu/wrobot/guides/WRobot guide FR.pdf Pour les profils pêche, enregistrer un chemin le long de l'eau
-
wow crash
Hello, all your subscriptions has ended.
-
Stealth only if there is no skinable corpse
Try to copy/past again code, if this don't works can you share your fightclass or screenshot of the condition
-
WRobot - Official
- 116 comments
- 6 reviews
-
Quester: Fishing Pools and PvP hotspots
Hello, For fishing: http://wrobot.eu/forums/topic/3802-fisherbot-quest/?do=findComment&comment=17769 For Pvp quests, can you give me a wowhead link of an quest?
-
Requeue
Hello, do you have this icon: ? This problem is probably caused by you server (just check and works fine).
-
Stealth only if there is no skinable corpse
Sorry, I have fix code: http://wrobot.eu/forums/topic/3839-stealth-only-if-there-is-no-skinable-corpse/?do=findComment&comment=17939
-
Shared CS code for all profiles
Profile is loaded more quickly than plugin, add Wait step at the start: test (1).xml
-
Bot wont Gather Herbs or Mine
Hello, Can you try to reinstall WRobot, if 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/).
-
Update Status - Patch 7.0.3 Build 22594
Done, WRobot support Wow 7.0.3 build 22594, you need to update WRobot.
-
Updater.exe does not update the old version (22566) of the client.
http://wrobot.eu/forums/topic/3841-update-status-patch-703-build-22594/
-
Stealth only if there is no skinable corpse
Hello, add this "C sharp code" condition at the spell stealth: (wManager.Wow.ObjectManager.ObjectManager.GetWoWUnitSkinnable(new List<MemoryRobot.Int128>()).Count <= 0)
-
Not Picking Up Artifact
Thank you. Please wait next update.
-
game version incorrect
http://wrobot.eu/forums/topic/3841-update-status-patch-703-build-22594/
-
Update Status - Patch 7.0.3 Build 22594
Hello, I start to work on this patch
-
Wrobot hangs/crashes/disconnects game
Hello, can you share your fightclass please.
-
Sugestion: Follow Current Target
Hello, I'll add this. To wait you can select target in game, in WRobot go to tab "Tools" > Click on button "Development Tools" > Click on button "Target Informations", name appear in textbox between <Name> and </Name> (copy/past the name in party option).
-
Macro only ONCE after combat
remove "// System.Threading.Thread.Sleep(1000);"