Everything posted by Droidz
- Rogue ranged pull with Throw / Shoot Bow
-
sometimes wrobot didnt found buffs
It is not http://www.wowhead.com/spell=220410/puzzling ? Can you give me link to your wowaddon (to get spell id)
-
ISBoxer + WRobot
Hello, I don't think than an multibox software can works with WRobot, WRobot don't use mouse and keyboard
-
Add custom dll
Hello, why do you use namespace Wmod?
-
Weird Lua Message whenever I run bot
And wrobot plugins?
- Plugins and Accept User Keyboard Input
- help with DLL addition
-
Pathfinding and meshes: krokuun and general issue
And do you have try with new wrobot install (without blacklist and ...)?
-
(A) Nightelf Startzone - Quester Profile: Questname twice
Hello, change name of one of your quest
-
Pathfinding and meshes: krokuun and general issue
Can you send me sample of from/to position where pathfinder cannot found path (then it should work)
-
TBC : pretre Disci Wrotation BG
Bonjour, Il est impossible de faire ce genre de fightclass sans C# (et lua). La fightclass qui ce rapproche le plus de ce que vous voulez est: https://wrobot.eu/files/file/1378-paid-pve-raid-restoration-druid-tbc243-by-ordush/ (envoyez un message au créateur pour savoir si il peut répondre a vos demande)
- Plugins and Accept User Keyboard Input
-
wrobot dont use portals on argus ?
Hello, where (bot) and when do you need to use portals? Sample: https://wrobot.eu/forums/topic/2681-snippets-codes-for-quest-profiles/?do=findComment&comment=12213
-
Nourrir son famillier
Bonjour, https://wrobot.eu/forums/topic/6397-solved-need-pet-happiness-macro/
- Mail to more than one recipient
-
Bot Un-targeting Mob Issue
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Don't cast certain spell x second after finish mine\herb
Hello, this is managed by your fightclass
- add new options relogger
-
Self Removing Wrobot
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Bug please help bot doesnt work
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Path-Finding Server Offline Halp
Hello, I think than problem was caused by your fightclass, try to disable spell debug mode
-
[TBC] Bot tries to fight vendors, if they are neutral
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Bot won't eat (v1.8.2 wotlk)
Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
- [Farming] Cannot make path to the target (Gold Vein), ignore it.
-
Mount/Dismount
Use this plugin: Main.cs using wManager.Wow.Enums; using wManager.Wow.ObjectManager; using wManager.Wow.Bot.Tasks; public class Main : wManager.Plugin.IPlugin { public void Initialize() { wManager.Events.InteractEvents.OnInteractPulse += (target, cancelable) => { try { if (ObjectManager.Me.IsMounted) { var o = ObjectManager.GetObjectByGuid(target) as WoWUnit; if (o != null && o.IsValid && o.Type == WoWObjectType.Unit && o.IsFlightMaster) MountTask.DismountMount(); } } catch { } }; } public void Dispose() { } public void Settings() { } }