Jump to content

Droidz

Administrators
  • Posts

    12595
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, you need active WRobot subscription to download WRobot files (profiles and figthclasses).
  2. Your wow clien is in english?
  3. Hello, c#: new System.Threading.Thread(() => { wManager.Wow.Helpers.Keybindings.PressKeybindings(wManager.Wow.Enums.Keybindings.JUMP, 250); for (var i = 0; i < 30; i++) { wManager.Wow.Helpers.Interact.InteractGameObject(wManager.Wow.ObjectManager.ObjectManager.GetNearestWoWUnit(wManager.Wow.ObjectManager.ObjectManager.GetWoWUnitByEntry(45455)).GetBaseAddress, false, true); System.Threading.Thread.Sleep(350); }}).Start(); AAA - Cime du Vortex EDITED.xml
  4. With lua code like local targetExists = UnitExists("target"); TargetNearestEnemy(); FocusUnit("target"); if targetExists then TargetLastTarget(); else ClearTarget(); end or TargetNearestEnemy(); FocusUnit("target"); TargetLastTarget();
  5. Hello, use this c# code: if (wManager.Wow.Helpers.Party.IsInGroup()) { var o = wManager.Wow.ObjectManager.ObjectManager.GetNearestWoWGameObject(wManager.Wow.ObjectManager.ObjectManager.GetWoWGameObjectByName("Guild Chest")); if (o.IsValid) { wManager.Wow.Helpers.Interact.InteractGameObject(o.GetBaseAddress, true); } } (replace "Guild Chest" by game object name how is appear in game (you can get object name when you put mouse over)
  6. Hello, try to change all "spellInstance.Launch();" Launch params: Spell.Launch(bool stopMove, bool waitIsCast, bool ignoreIfCast, string luaUnitId) Use params like: spell.Launch(spell.CastTime > 0, false);
  7. Hello, you can get number of mob kills in "wManager.Statistics.Kills". The better way is to create plugin. But you can add this code in your custom profile: int maxKill = 10; if (wManager.Statistics.Kills >= maxKill && Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause && !Conditions.IsAttackedAndCannotIgnore) { try { Memory.WowMemory.Memory.GetProcess().Kill(); // if you want close game } catch {} robotManager.Products.Products.ProductStop(); }
  8. Hello, http://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 (step 13). This error close WRobot?
  9. Hello, Sorry but I'll not add this feature.
  10. Hello, When you click on button "Go to town" tab "Tools" WRobot sell items? You can try to add action totown.
  11. Hello, you can use Alt-X or http://wrobot.eu/forums/topic/1118-snippets-of-lua-codes-for-fightclass/?do=findComment&comment=11958
  12. Hello, tab "General settings", try to disable option "harvest herbs" and "harvest mines". if your problem is not resolved, please share your log file
  13. Hello, http://wrobot.eu/forums/topic/213-how-to-create-plugin-developer-only/
  14. Do you have check the temperature of your processor/graphics card?
  15. You get this problem without fightclass? with another fightclass?
  16. Hello, trial version works only on WRobot for private server.
  17. This save setting only for current character, to copy quickly you setting you can use this plugin http://wrobot.eu/files/file/421-settings-backup/
  18. Hello, http://wrobot.eu/forums/topic/1530-pet-hunter-camping-module/?do=findComment&comment=7919 (old script)
  19. Hello, Not tested, but like this: int entryIdNpc = 123456; var path = new List<Vector3>(); // your path MovementManager.Go(path); while (MovementManager.InMovement && Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause && !Conditions.IsAttackedAndCannotIgnore) { // Wait follow path Thread.Sleep(100); } MovementManager.StopMove(); if (path[path.Count - 1].DistanceTo(ObjectManager.Me.Position) < 10) { // easy way: GoToTask.ToPositionAndIntecractWithNpc(path[path.Count - 1], entryIdNpc); // no easy: /*var u = ObjectManager.GetNearestWoWUnit(ObjectManager.GetWoWUnitByEntry(entryIdNpc)); if (u.IsValid) { // can need to go to but I'll not implement it Interact.InteractGameObject(u.GetBaseAddress); }*/ }
  20. Hello, you don't need to use fightclass:
  21. I cannot help you more , if I get this quest I comeback here
  22. Hello, I don't understand what you want. Can you give more information
  23. Hello, do you have try to reinstall wrobot?
  24. You get this problem only in this quest on in all quests? You can try to count number of http://www.wowhead.com/item=122095/crackling-leyworm-core in your bag
×
×
  • Create New...