Jump to content

Droidz

Administrators
  • Posts

    12582
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, Can you give more detail about your problem, and share your log files ( http://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 ).
  2. Hello, if you can give me object id (for it go to tab "Tools" > "Dev... tools" > Click on button "Dump...". If you can give me entry id of "Demonic Archaeology Find"
  3. Hello, I'll not add this feature (but it is possible to implement it in wrobot plugin)
  4. This resolve your problem? You can try to put your quest in separed profile. Use quest type "follow path" don't works?
  5. Hello, I'll fix it. If you can wait next update.
  6. Hello, try this quest profile (not tested) : test.xml
  7. Hello, I have edited your profile with position of my current zone and it works fine, I am cannot tell you why you get this problem. Can you try to remove "Quest.HasQuest(39495) &&" in IsCompleteCondition
  8. Hello, you can try to use this c# code: System.Threading.Thread.Sleep(robotManager.Helpful.Others.Random(0, wManager.Wow.ObjectManager.ObjectManager.Target.CastingTimeLeft - 350)); wManager.Wow.Helpers.SpellManager.CastSpellByNameLUA("Spell Name In English"); with spell option "Not Spell, Is C# code" (and custom condition to check if your spell is ready and good distance and ...)
  9. Hello, read this guide: http://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 If your problem is not resolved post new thread with your log files and more details.
  10. Hello, this problem is probably caused by your fightclass.
  11. Hello, wrobot for 6.2.3.20886 works on wow 6.2.3.20779 ( http://wrobot.eu/forums/topic/3671-wod-private-server/?do=findComment&comment=17210 )
  12. it is isKeyCurrentlyDown = IsShiftKeyDown(); it is not isKeyCurrentlyDown = IsShiftKeyDown
  13. Hello, you need active WRobot subscription to download WRobot files (profiles and figthclasses).
  14. Your wow clien is in english?
  15. 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
  16. With lua code like local targetExists = UnitExists("target"); TargetNearestEnemy(); FocusUnit("target"); if targetExists then TargetLastTarget(); else ClearTarget(); end or TargetNearestEnemy(); FocusUnit("target"); TargetLastTarget();
  17. 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)
  18. 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);
  19. 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(); }
  20. Hello, http://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 (step 13). This error close WRobot?
  21. Hello, Sorry but I'll not add this feature.
  22. Hello, When you click on button "Go to town" tab "Tools" WRobot sell items? You can try to add action totown.
  23. Hello, you can use Alt-X or http://wrobot.eu/forums/topic/1118-snippets-of-lua-codes-for-fightclass/?do=findComment&comment=11958
  24. Hello, tab "General settings", try to disable option "harvest herbs" and "harvest mines". if your problem is not resolved, please share your log file
  25. Hello, http://wrobot.eu/forums/topic/213-how-to-create-plugin-developer-only/
×
×
  • Create New...