Jump to content

Droidz

Administrators
  • Posts

    12508
  • Joined

  • Last visited

Everything posted by Droidz

  1. https://wrobot.eu/forums/topic/12316-party-bot-not-mounting/?tab=comments#comment-59028
  2. Hello, try with another mount name, can you share log if problem is not resovled
  3. Hello, you can add node names to list of object to not gather (in advanced general settings)
  4. Since when you have this problem?
  5. Hi, if lua is modified only on MPQ file (and server don't check it after) you can try to call this code to reset CastSpell...: wManager.Wow.Memory.WowMemory.InjectAndExecute(new [] { wManager.Wow.Memory.WowMemory.CallWrapperCode(0x53B740), "ret" });
  6. you need to add destination position (where portal teleport) (I haven't tested, but you positions seem very near)
  7. Hello, It is strange, @pudge you have this problem since last update? After how many time? @M4k5P0w3r restart WRobot resolve your problem? you have this problem frequently?
  8. No sorry, If you have some knowledge of C # you can create a plugin or add it to your profile.
  9. https://wrobot.eu/forums/topic/12294-general-settings-in-wrobot/
  10. Hello, try https://wrobot.eu/files/file/421-settings-backup/
  11. Hi, try to disable your addons, if problem is not resolved try to contact fightclass creator, hi has a lot of error maybe it is know issue or bad installation.
  12. Hi, Use "Usefuls.InGame" To detect if UI was reloaded you can assign lua variable and check value when you need (after reloadui value will be "nil")
  13. Hi, problem is that WRobot don't unload loaded dll (or code), if you start/stop several times your code will don't found what dll use. You can try to use "Var" like that (no tested): public void Initialize() { robotManager.Helpful.Var.SetVar("TakeDeepRunTram", new Action(() => TakeDeepRunTram())); } public static void TakeDeepRunTram() { //code to enter portal, take tram and leave through other portal } in offmesh use: c#: robotManager.Helpful.Var.Var.GetVar<Action>("TakeDeepRunTram")();
  14. Hello, try to activate "use lua to move" in advanced general settings
  15. https://wrobot.eu/forums/topic/5678-remove-item-from-bag/?do=findComment&comment=25887 Seems to works on wotlk
  16. Hello, what is your game version?
  17. Hello, step 14: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/?tab=comments#comment-966
  18. Bonjour, vous devez faire un profil "Grinder" (grinder permet de choisir les mobs à attaquer)
  19. Hello, The new update should not cause this problem. Are you sure this problem is recent? you haven't updated your fightclass / plugins / wow addons? or change antivirus or other program?
  20. you need to have trainer in npc db (or in your profile) (and wait ~15 seconds)
  21. WRobot does not base this on time, but it checks whether the character is picking up the object or not (casting bar). Try to increment your min latency.
  22. Hi, You are sure that problem is not caused by an wow addons or wrobot plugins/fightclass?
  23. try using System.Windows.Forms; using robotManager.Helpful; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { public void Initialize() { var badCorpsePos = new Vector3(-3362.286f, 4665.728f, -22.70619f); var enterDungeonPos = new Vector3(-3362.163f, 4636.226f, -101.049f); Logging.Write("[EnterCorpse] Started."); wManager.Events.OthersEvents.OnPathFinderFindPathResult += (from, to, path, mpq, success) => { if (ObjectManager.Me.IsDead && to.DistanceTo(badCorpsePos) < 10) { path.Clear(); path.AddRange(PathFinder.FindPath(enterDungeonPos)); } }; } public void Dispose() { Logging.Write("[EnterCorpse] Disposed."); } public void Settings() { MessageBox.Show("??"); } }
×
×
  • Create New...