Everything posted by Droidz
-
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);"
-
bot wont attack while getting node.
Try to change your mount and try to disable you wow addons
-
Shared CS code for all profiles
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");
-
Class trainer
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".
-
fishing retraitre of Margoss
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).