Everything posted by Droidz
-
Range Calculater for WoW Vanilla is off
Hello, spell.IsDistanceGood (and distance check option in fightclasses editor) test only max distance (not min spell distance). I tested this code and he seem to works: float min = 8, max = 35; var cMin = ObjectManager.Target.GetDistance - ObjectManager.Target.CombatReach - ObjectManager.Me.CombatReach; var cMax = ObjectManager.Target.GetDistance + ObjectManager.Target.CombatReach + ObjectManager.Me.CombatReach; bool inRange = cMin >= min && cMax <= max; Logging.Write("cMin = " + cMin + " - cMax" + cMax + " - inRange= " + inRange); One line (for xml fightclass): ((ObjectManager.Target.GetDistance - ObjectManager.Target.CombatReach - ObjectManager.Me.CombatReach) >= 8 && (ObjectManager.Target.GetDistance + ObjectManager.Target.CombatReach + ObjectManager.Me.CombatReach) <= 35)
-
Bot.States
Hello, bool added = false; robotManager.FiniteStateMachine.State myState = null; // ... robotManager.Events.FiniteStateMachineEvents.OnAddState += delegate (robotManager.FiniteStateMachine.Engine engine, robotManager.FiniteStateMachine.State state, System.ComponentModel.CancelEventArgs cancelable) { if (added) return; if (state.DisplayName == "Quester") { added = true; state.NextStates.Add(myState); //engine.AddState(myState); //state.BeforeStates.Add(myState); } };
- The requested bot is not supported
-
Interact with object
Hello, try to run this c# code (in steps) before to pulse your quest: wManager.wManagerSetting.CurrentSetting.ListHarvest.Add(192518);
-
WRobot Stopped working for me
What is resolve when you run command tracert wrobot.eu in command prompt?
-
Wrobot 1.9 crashes WotLK
Hello, try to remove wow "Chache" folder, try also to launch Wrobot with shortcut "WRobot no dx"
-
Private WotLK crash
- The requested bot is not supported
- Leave shadowform when dismount
This fightclass cast Shadowform only when you have target, and cancel form(buff) when you haven't target: shadowFormTest.xml Video: 2018-03-23_17-09-15.mp4- Leave shadowform when dismount
You play on Vanilla?- WRobot Error
- PathFinder
Hello, use quest type "follow path" and put lower search radius don't resolve this problem?- [Vanilla] wrobot counts ammo-bag/quiver slots as free bag slots
Hello, to wait change option "Min free bag slots" (in advanced general settings tab "vendor...") and put "size of you ammo bag + 1"- shadowform bug
It is not bug: https://wrobot.eu/bugtracker/leave-shadowform-when-dismount-r659/?do=findComment&comment=4877- Leave shadowform when dismount
I ignore where do you have found your code, but in vanilla to cancel Shadowform buff you need to use lua code like: for i=0,15,1 do local currBuffTex = GetPlayerBuffTexture(i); if (currBuffTex and string.find(string.lower(currBuffTex), "spell_shadow_shadowform")) then CancelPlayerBuff(i); end end (and not "CastSpellByName('Shadowform',1)") In one line: for i=0,15,1 do local currBuffTex = GetPlayerBuffTexture(i); if (currBuffTex and string.find(string.lower(currBuffTex), "spell_shadow_shadowform")) then CancelPlayerBuff(i); end end- Quester settings saving
Try to run this code (after change settings) var pName = robotManager.Products.Products.ProductName; robotManager.Products.Products.DisposeProduct(); robotManager.Products.Products.LoadProducts(pName);- Switch offhand weapons during fishing
I comeback here when I have check, if you have time if you can try with weapon without ' in the name- Waypoint Action
- Sunwell new detection method?
try to redownlaod and reinnstall WRobot in new folder- Sunwell new detection method?
Hello, if you use old version (before WRobot 1.9.0) it is normal, this detection problem is resolved with last update ( https://wrobot.eu/forums/topic/8765-private-servers-security-update/ )- UPDATE Ban wave - 9 March 2018
Hello, New WRobot version resolve detection problem, update WRobot and the updater. Use WRobot if you know what you are doing, ban risk keep high, . You can discuss about this here: https://wrobot.eu/forums/topic/8666-ban-wave-2018-discussion/- UPDATE Ban wave - 9 March 2018
Hello, New WRobot version resolve detection problem, update WRobot and the updater. Use WRobot if you know what you are doing, ban risk keep high, . You can discuss about this here: https://wrobot.eu/forums/topic/8666-ban-wave-2018-discussion/ View full article- Switch offhand weapons during fishing
Hello, in fisher product settings name of your weapon is good?- Is complete condition
Hello, for random player or specific player? To check if random player is near (less than 50y): return wManager.Wow.ObjectManager.ObjectManager.GetObjectWoWPlayer().Any(p => p.IsValid && p.GetDistance2D < 50); To check if specific player is near: return wManager.Wow.ObjectManager.ObjectManager.GetObjectWoWPlayer().Any(p => p.IsValid && p.GetDistance2D < 50 && p.Name == "Player Name");- FightClass sans changer la langue du client
Bonjour, c'est possible avec des logiciel comme dnspy mais compliqué si vous n'avez pas les connaissances pour. Vous utilisez quelle fightclasses? la plupart sont multilang- 3 replies
-
- fightclass
- changer
- français
- anglais
-
Tagged with: