-
Posts
12581 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Blank Screen in products
Droidz replied to tyrael98's topic in WRobot for Wow Vanilla - Help and support
Hello, can you read this: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 If you 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/ ). -
Hello, this is sample code with defaut condition: GoToTask.ToPosition(Vector3.Zero, 3.5f, false, context => Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause && !Conditions.IsAttackedAndCannotIgnore);
-
GetDistance is good it is distance from the center of player to the center of the unit. I use PositionWithoutType to avoid useless step (check if fly or swimming) (for performance, but that does not change the result). I'll add: public float GeHitBoxtDistance { get { try { var d = PositionWithoutType.DistanceTo(ObjectManager.Me.PositionWithoutType) - CombatReach - ObjectManager.Me.CombatReach; if (d < 0) d = 0; return d; } catch (Exception e) { Logging.WriteError("WoWUnit > GeHitBoxtDistance: " + e); return 0; } } } Current, for spell.isgooddistance I use: public bool IsDistanceGood { get { try { if (ObjectManager.ObjectManager.Target.IsValid) { float combatReach = 0; if (wManagerSetting.CurrentSetting.CalcuCombatRange) combatReach = ObjectManager.ObjectManager.Target.CombatReach; if (ObjectManager.ObjectManager.Target.GetDistance <= MaxRange + combatReach && (ObjectManager.ObjectManager.Target.GetDistance >= MinRange - combatReach)) { return true; } } return false; } catch (Exception exception) { Logging.WriteError("Spell > IsDistanceGood: " + exception); return true; } } } And to get player combat range (from fightcalss settings): public static float GetRange { get { try { if (_instanceFromOtherAssembly != null) { float range; if (_instanceFromOtherAssembly.Range < 6.5f) { range = 2.7f; if (wManagerSetting.CurrentSetting.CalcuCombatRange && ObjectManager.ObjectManager.Target.IsValid) { range += ObjectManager.ObjectManager.Target.CombatReach; } if (range < 3.5) range = 3.5f; } else { range = _instanceFromOtherAssembly.Range; if (wManagerSetting.CurrentSetting.CalcuCombatRange && ObjectManager.ObjectManager.Target.IsValid) { range += ObjectManager.ObjectManager.Target.CombatReach - 1; } } return range; } return 4.5f; } catch (Exception exception) { Logging.WriteError("CustomClass > GetRange: " + exception); return 5.0f; } } } I will check that (GetRange and isgooddistance), I take note
-
[Vanilla] Player corpse not showing in ObjectManager
Droidz commented on Matenia's bug report in Bug Tracker
Changed Status to Confirmed Changed Version to All -
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Hello, you get this problem only with this food item?
-
Hello, I don"t found problem in your log
-
Hello, GetDistance retourn "PositionWithoutType.DistanceTo(ObjectManager.Me.PositionWithoutType);" You want than I add method to return "Position.DistanceTo(ObjectManager.Me.Position) - this.CombatReach - ObjectManager.Me.CombatReach"?
-
This problem is only in TBC, I ignore if it is server or client bug, and I ignore how to fix that
-
Hello, you can do this to wait: https://wrobot.eu/forums/topic/9656-cant-run-10-sessions/?do=findComment&comment=45078
-
Changed Status to Confirmed Changed Version to All
-
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Try to follow this guide: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966
-
I found why. Edit file "WRobot\Settings\RobotManagerGlobalSetting.xml" and use same "ArgsEnvironmentVariables" in all WRobot installs
-
Hello, can you read this: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 If you 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/ ).
-
Hello, Fightclass thread is in pause when you cast spell, remove condition "'Me In Cast = true"
-
Change continent (dead? logout?) seem to clean objectmanager. Can you try with the new update and tell me if this change something about CPU usage.
-
Executable CPU Utilization ~15-20% per instance
Droidz replied to spector800's topic in General assistance
Hello, can you read this: https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ (try to install slimdx) Try to disable all plugins/fightclass and reactivate them one per one -
Hello, i need log file (disable your wow addons)
-
Bot Quits Looting Herbs Midway
Droidz replied to binbin's topic in WRobot for Wow Vanilla - Help and support
hello, try also to disable your wow addons -
Hello, in tbc all items seems to be keep in memory (in the objectmanager), when you go to big city (with a lot of players and a lot of items (equipped)) or after few hours you can get bigger CPU usages.
-
[Vanilla] Graccu's Mince Meat Fruitcake NOT WORKING
Droidz commented on zeeb's bug report in Bug Tracker
Last question, do you use wow addons? if yes you have try without? Normally WRobot detect spells of food items