Jump to content

Droidz

Administrators
  • Posts

    12587
  • Joined

  • Last visited

Everything posted by Droidz

  1. With lua, but now WRobot read dbc to update taxi list, positions are safe.
  2. you have installed slimdx? https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966
  3. You use old wow version, I cannot resolve this problem.
  4. Hello, if you clean your taxidb and restart wrobot you get same problem? Try with default wrobot settings (with clean install) (I have fixed this problem few update ago).
  5. https://wrobot.eu/forums/topic/2681-snippets-codes-for-quest-profiles/?do=findComment&comment=13088
  6. Hello, in advanced general settings disable all npc scan options, in "NPC DB" (tab tools) remove all.
  7. Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ), I'll fix that
  8. Hello, like this var t = new TaxiNode(slotIndex, name, new Vector3(x, y, z), Usefuls.ContinentId); if (t.IsValid()) { t.Active = true; TaxiList.AddOrEditForCurrentPlayer(t); }
  9. Try to increment your min/max latency
  10. Droidz

    Auto Loot

    Hello, increment your min/max latency (in advanced general settings)
  11. Hello, look this sample: https://wrobot.eu/forums/topic/7193-brewfest-ram-riding-daily/?do=findComment&comment=32677 You have buff when you are on the mount
  12. Hello, https://wrobot.eu/forums/topic/7348-plugins-and-accept-user-keyboard-input/?do=findComment&comment=33478
  13. Hello, in advanced generals settings enable option "try to detect evading mobs..."
  14. 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/ ).
  15. Do you have enabled "vertical sync" option?
  16. Hello, do you run wow in window mode? Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  17. https://www.virustotal.com/fr/url/5219f9d27ce5caadea249de88520708cadc646c1b78051b9b7bc363ca2250ea4/analysis/1512406288/ https://www.virustotal.com/fr/file/86be33116ce89271f1ca6e42debcd6394f158c252293889094b608202bd54788/analysis/1512390865/
  18. Hello, I added condition to check "attack before being attacked" only when player move (this will resolve this problem, after combat your character don't move). You get this problem only in vanilla? I'll add option (but I ignore when): https://wrobot.eu/forums/topic/7047-resurrecting-bugged-elysium/ & Sincerely, it is hard to implement this (and "avoidit" add a lot of bugs). I keep note, I'll make some test but I ignore when and if I'll add this feature. Wait next update, WRobot will skip regen step if "ForceIgnore..." is enabled. I cannot add this, this depend mainly on your server (although servers usually use the same database).
  19. Hello, 1: if you want that be automatic https://wrobot.eu/files/file/1435-paid1121243335a-afking-and-humanizing-plugin/ (or you can add (or request this at the profile owner) in the profile the npc vendors, and change food name relative to your level in wrobot settings with c# code. 2: This plugin drag new skills to bar 1, but, when you use class like warrior the bar 1 is override by your aura ".... Stance" (when you are dead, you can see spell drag by this plugin) 3: contact fightclass owner. 4: You can try to use external relogger, but this depend of your profile (normally if he cannot pickup quest wrobot skip it after few minutes)
  20. Add "!" before "wManager.Wow.Helpers.Lua.LuaDoString<bool>..."
  21. Hello, check if this problem is not caused by your wrobot plugins/wow addons. You can also try to use WRobot plugin like using System.Threading; using wManager.Wow.Enums; using wManager.Wow.Helpers; public class Main : wManager.Plugin.IPlugin { public void Initialize() { EventsLua.AttachEventLua(LuaEventsId.PARTY_INVITE_REQUEST, OnInviteRequest); } public void Dispose() { } public void Settings() { } void OnInviteRequest(object context) { try { if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause) { Lua.LuaDoString("DeclineGroup();"); Thread.Sleep(Usefuls.Latency + 50); Lua.LuaDoString("StaticPopup_Hide('PARTY_INVITE');"); // Lua.LuaDoString("LeaveParty();"); } } catch { } } } to decline group invitation
  22. Hello, in min latency try to put "500" (in advanced general settings)
  23. Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  24. Hello, use plugin like: using System.Threading; using robotManager.FiniteStateMachine; using robotManager.Helpful; using wManager.Wow.Helpers; public class Main : wManager.Plugin.IPlugin { public void Initialize() { robotManager.Events.FiniteStateMachineEvents.OnAfterRunState += delegate(Engine engine, State state) { try { if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause && !Conditions.IsAttackedAndCannotIgnore && state.DisplayName == "Looting") { Thread.Sleep(Others.Random(1000, 5000)); } } catch {} }; } public void Dispose() { } public void Settings() { } } RandomWaitAfterLoot.cs
×
×
  • Create New...