Everything posted by Droidz
-
Exorcism and Templar's Verdict wont cast on proc 4.3.4
Hello, use c# condtion with the code ObjectManager.Me.HaveBuff(59578)
-
PathFinder server seem down, try to change server.
can you try again and tell me if you have again this problemù
-
PathFinder server seem down, try to change server.
full log file please
-
PathFinder server seem down, try to change server.
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Exorcism and Templar's Verdict wont cast on proc 4.3.4
tab tool, in "dev tools" can you click on buff name (maybe you have passive "The Art of War" buff)if it is case, try to check buff by spell id
-
[FIXED] Bot doesn't stop killing mobs after finishining quest objective.
Try to download another wow client in another website, it is strange,
-
Exorcism and Templar's Verdict wont cast on proc 4.3.4
Hello, you have try to activate spell settings "Debug mode" (on the bugged spells) to try to understand what happen?
-
I would like to ask how to set it in the mailing interface. Can you mail gold coins?
Hello, you cannot with default WRobot features
-
WRobot for Project Ascension
hello, try to download wow client in another website (at least try to use wow.exe from another client). If problem is not resolved with default wow client if you can share your log files (folder "Logs")
-
[FIXED] Bot doesn't stop killing mobs after finishining quest objective.
use "AutoDetectObjectiveCount1" instead "ObjectiveCount1". But you have some weird problems. Have you tried other user's profiles? you have the same problem?
-
Bot is picking up quest but doesnt turn it in.
Can you share your log please
-
[FIXED] Bot doesn't stop killing mobs after finishining quest objective.
hello, what is result of "Current quests memory info" (in quest tools) when bot continue to attack mobs?
-
Bot is picking up quest but doesnt turn it in.
I tested your profile works, try to use it in new WRobot install (don't change settings, select only your profile)
-
Bag.GetContainerItemCooldown()
I am sorry i have no idea what can cause this problem.
-
Bag.GetContainerItemCooldown()
I think it is a problem with https://docs.microsoft.com/en-us/dotnet/api/system.environment.tickcount?view=netcore-3.1 but I don't understand why, random use default .NET api no reason that bug. Try to reinstall/repair framework.net maybe
-
Bot is picking up quest but doesnt turn it in.
try also to clear your blacklist (tab tools)
-
Bot is picking up quest but doesnt turn it in.
Hello, try to use quest type "None" and remove pulse step
-
How does "Hostile Unit near target work"
Hello, in fightclass this option count target (it doesn't make sense but I won't change it to avoid breaking the existing fightclass) Use this c# condition to don't count target: ObjectManager.GetWoWUnitHostile().Count(u => u.Position.DistanceTo(ObjectManager.Target.Position) <= 10 && !u.IsMyTarget && u.IsAttackable) <= 3 replace 10 by the range, and 3 by number of unit
-
Bag.GetContainerItemCooldown()
the date and time of your computer are correctly set?
-
Check if spell was correctly used
Hello, to check if spell was correctly used you need to use lua event (with C # code). You use timer with spell "Pestilence", you cannot test it with buff?
-
Wrobot not detecting .cs files in the plugins folder.
Hello, Are you sure that your file ends with .cs (and not by .cs.txt for example)?
-
Bot Looping - Flying Mode broken on Woltk
Any info can be useful, if you do not want to share in public it is always possible to send me the information by private message.
-
Bot Looping - Flying Mode broken on Woltk
Hello, sorry for the delay, you can records videos when you get the problem (and share log of the sessions). If you have easy way to reproduce this problem tell me. You use last version?
-
server seem to be down,you may try to disable your anti-virus or fairwall and try again
Hello, try to install required software: and disable you firewall/vpn/proxy. if your problem is not resolved can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Random mount/ start mount via macro
Hello, try plugin like: using System.Threading; using robotManager.Products; using wManager; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { public void Initialize() { while (Products.IsStarted) { if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause) { try { if (ObjectManager.Me.IsHorde) wManagerSetting.CurrentSetting.GroundMountName = "Horde mount name"; else wManagerSetting.CurrentSetting.GroundMountName = "Ally mount name"; } catch { } } Thread.Sleep(500); } } public void Dispose() { } public void Settings() { } } replace Horde mount name and Ally mount name by you mounts names