-
Posts
12596 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
Isle of Thunder - Server side pathfinding bug
Droidz commented on camelot10's bug report in Bug Tracker
In advanced general settings you need to activate option "Show server logs" to show in your log when it is patial result. You can try this code: Logging.Write("Without meshconnetions"); wManager.wManagerSetting.CurrentSetting.PathFinderFromServer = true; wManager.wManagerSetting.CurrentSetting.PathFinderRequestLog = true; wManager.Wow.Helpers.PathFinder.FindPath(new Vector3(6975.315, 5187.96, 66.03867), new Vector3(7073.398, 5179.925, 66.0382), "MoguIslandDailyArea"); Logging.Write("With meshconnetions"); wManager.Wow.Helpers.PathFinder.OffMeshConnections.Add(new PathFinder.OffMeshConnection(new List<Vector3> { new Vector3(7076.924, 5200.99, 66.03947), new Vector3(7025.558, 5252.079, 84.2523) }, 1064)); wManager.Wow.Helpers.PathFinder.OffMeshConnections.Add(new PathFinder.OffMeshConnection(new List<Vector3> { new Vector3(7025.558, 5252.079, 84.2523), new Vector3(7076.924, 5200.99, 66.03947) }, 1064)); wManager.Wow.Helpers.PathFinder.FindPath(new Vector3(6975.315, 5187.96, 66.03867), new Vector3(7073.398, 5179.925, 66.0382), "MoguIslandDailyArea"); wManager.Wow.Helpers.PathFinder.OffMeshConnections.Load(); // reset offmeshes result (in log): -
Isle of Thunder - Server side pathfinding bug
Droidz commented on camelot10's bug report in Bug Tracker
I have not changed that, your offmeshes does not work anymore? -
Hello, do you use last WRobot update?
-
Isle of Thunder - Server side pathfinding bug
Droidz commented on camelot10's bug report in Bug Tracker
Hello, it is not really bug, in new mesh I added most of gameobjects (to avoid stucks), in this gameobjects they are probably door closed, to resolve this problem use offmeshconnetions: <OffMeshConnection> <Path> <Vector3 X="7071.287" Y="5205.807" Z="66.03905" /> <Vector3 X="7003.947" Y="5274.675" Z="84.44761" /> <Vector3 X="6953.603" Y="5222.888" Z="75.49843" /> </Path> <ContinentId>1064</ContinentId> <Name>The Foot of Lei Shen</Name> </OffMeshConnection> <OffMeshConnection> <Path> <Vector3 X="6953.603" Y="5222.888" Z="75.49843" /> <Vector3 X="7004.001" Y="5273.199" Z="84.44643" /> <Vector3 X="7071.814" Y="5203.753" Z="66.03793" /> </Path> <ContinentId>1064</ContinentId> <Name>Stormsea Landing</Name> </OffMeshConnection> I'll blacklist this door for the next mesh update -
I have test with the position of your log and I don't get problem, if you can record video
-
Mage - mob seem bugged
Droidz replied to Seminko's topic in WRobot for Wow Vanilla - Help and support
Hello, try to change your fightclass -
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Hello, try to add herbs/ores name in the list "Harvest objects..." (in advanced general settings tab "Looting and farming options")
-
https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/?do=findComment&comment=33664 Pour les lags y'a des chance que ce soit votre antivirus
-
Hello, if you want use old meshes, disable pathfinder server option in avanced general settings, if you can tell me positions where old meshes are better
-
Hello, you can with quester profile: RandomStep.xml
-
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Initialize function is not triggered on plugin
Droidz replied to falder's topic in Developers assistance
Hello, yes sorry this doesn't work anymore on WRobot for Legion. If you select "WRobot.exe", you can run, WRobot will start and detach debuger, but in visual sudio you can https://msdn.microsoft.com/en-us/library/3s68z0b3.aspx -
Hello, do you have try with another web browser?
-
Hello, https://wrobot.eu/files/file/518-group-loot/?tab=comments#comment-2826 (or you can also use wow addon for that)
-
Key Saying Expired but I paid for 3 and only have access too 2.
Droidz replied to Edgewood411's topic in General assistance
Hello, first: Purchased 10/28/17 Expires 10/31/17 Second: Purchased 10/29/17 Expires 11/01/17 And current: Purchased 10/30/17 Expires 11/02/17 All subscriptions work for 3 days, I do not understand why you pay every day. (I added time at your current key) -
Attacking Friendly Hunter Pet? (WotLK 1.8.3 - 29574)
Droidz commented on y2krazy's bug report in Bug Tracker
This is proabably a bug of your server and in your current profile you have this mob entry id. -
You can use C# with the condition name "C Sharp Code"
-
Bonjour, https://wrobot.eu/forums/topic/2018-wrobot-old-versions/
-
Hello, use task type "ChangeWowPath"
-
https://wrobot.eu/forums/topic/4918-since-last-update-the-bot-spams-reloadui/?do=findComment&comment=22750
-
Bonjour, essayé ce plugin: SkinDoubleClick.cs using System.Threading; using System.Windows.Forms; using robotManager.Helpful; using wManager.Wow.Enums; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { public void Initialize() { wManager.Events.InteractEvents.OnInteractPulse += (target, cancelable) => { try { if (Var.GetVar<object>("LastTargetSkin") == (object)target) return; Var.SetVar("LastTargetSkin", target); var o = ObjectManager.GetObjectByGuid(target); if (o.IsValid && o.Type == WoWObjectType.Unit) { var u = new WoWUnit(o.GetBaseAddress); if (u.IsValid && u.Skinnable) { new Thread(delegate() { Thread.Sleep(500 + Usefuls.Latency); Interact.InteractGameObject(u.GetBaseAddress); }).Start(); } } } catch {} }; } public void Dispose() { } public void Settings() { MessageBox.Show("No settings for this plugin."); } }
-
Not Sending *Some* Mail? (WotLK 1.8.3 - 29574)
Droidz commented on y2krazy's bug report in Bug Tracker
Hello, do you use wow addons? -
Attacking Friendly Hunter Pet? (WotLK 1.8.3 - 29574)
Droidz commented on y2krazy's bug report in Bug Tracker
Hello, this happen frequently? Option ( in advanced general settings) "Ignore combat with all pets" is activate?
