Jump to content

Droidz

Administrators
  • Posts

    12587
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, normally problem is resolved with Sky Golem http://wrobot.eu/forums/topic/3832-bot-wont-attack-while-getting-node/?do=findComment&comment=18985
  2. Hello, replace ObjectManager.Me.Target > 0 by ObjectManager.Me.Target.IsNotZero() and replace (if '_lastTarget' is WoWUnit): if (ObjectManager.Me.Target == _lastTarget) by if (ObjectManager.Me.Target == _lastTarget.Guid)
  3. Hello, http://wowwiki.wikia.com/wiki/Guild_mass_recruiting RunMacroText("/who"); if WhoFrameWhoButton then WhoFrameWhoButton:Click() end local n=GetNumWhoResults(); local i=1; while(i<=n) do local c,g=GetWhoInfo(i); if(g=="") then SendChatMessage("Your Message Here "..c.."! Guild Name Another Message Here","WHISPER","COMMON",c); GuildInvite(c); end i=i+1; end To run this code, go to tab "Tools" > Click on "Development Tools" > paste code in textbox and click on button "Lua (return value in 'ret')".
  4. Sorry for the delay (I didn't have this mount), I have resolved problem, if you can wait next update.
  5. Hello, current version of WRobot support Wow 7.0.3 Build 22810, you don't need to update WRobot. Kind regards
  6. Hello, do you have try to use condition "Global Cooldown Enabled" > "False"
  7. Hello, not feature for this, but you can do this with lua/c# and custom profile, plugin or quest profile.
  8. Hello, sorry I cannot change this.
  9. Droidz

    Chat in Remote

    Hello, sorry but I'll not add this feature.
  10. Hello, general settings window was never been resizable
  11. Hello, Try to remove "return ItemsManager.GetItemCountById(38607) >= 1;" and put true at "Auto Detect Objective Count ..."
  12. Hello, longmove use only the flying mount.
  13. Hello, in product settings you can select "ramdon" or select specific BG (max 2)
  14. Hello, http://wrobot.eu/forums/topic/596-use-hearthstone/?do=findComment&comment=6812
  15. Hello, you don't need to cancel your subscription: http://wrobot.eu/forums/topic/1381-repairinstall-wrobot/?do=findComment&comment=17816
  16. Hello, you seem launch Wow in 64 bit. Can you check if all is good: start wow in 32-bit Try also to install SlimDX
  17. http://wrobot.eu/bugtracker/sitting-on-full-ancient-mana-r549/
  18. Hello, you get this problem in product "WRotation"? if yes try to active option "Launch rotation when combat starts". This problem can be caused by your fightclass also.
  19. Hello, yes you can, add task type 'ChangeCharacter'
  20. Hello, you can found on website several way to use Stealth: https://www.google.com/search?q=site%3Awrobot.eu+stealth
  21. Do you have error in wow when milling don't works?
  22. Hello, add step type runcode before pulse your quest: wManager.wManagerSetting.CurrentSetting.HarvestAvoidPlayersRadius = 0;
  23. Hello, to avoid to jump you can try also to: wManager.wManagerSetting.CurrentSetting.AvoidWallWithRays = false; For precision movement you can: wManager.Wow.Helpers.ClickToMove.CGPlayer_C__ClickToMove(position.X, position.Y, position.Z, Int128.Zero(), (int)wManager.Wow.Enums.ClickToMoveType.Move, 0.5f); OR wManager.Wow.Helpers.MovementManager.MoveTo(new Vector3(x, y, z)); Code for quest "Enigmatic" (replied by private message, but this can help): if (wManager.Wow.ObjectManager.ObjectManager.Me.HaveBuff(219247)) { var tile = wManager.Wow.ObjectManager.ObjectManager.GetObjectWoWAreaTrigger() .Where(u => u != null && u.IsValid && (u.SpellID == 219246 || u.SpellID == 219262)) .OrderBy(u => u.Position.DistanceTo(wManager.Wow.ObjectManager.ObjectManager.Me.Position)) .FirstOrDefault(); if (tile != null) { var loc = tile.Position; if (loc.DistanceTo(ObjectManager.ObjectManager.Me.Position) > 1.5) { MoveTo(loc); } } }
  24. Hello, in general settings you can try to put "Max units near" at 0. But not easy way to skip node if you are in combat.
  25. Hello, http://wrobot.eu/forums/topic/4087-discord-channel/
×
×
  • Create New...