Jump to content

Droidz

Administrators
  • Posts

    12586
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello community, I have released new version of WRobot, the version 1.2.0. Interface colors change, and I have added two new products, Automaton (botting without profile) and Schedule (planning easy of bots at use when you are not here). You can read here others fix/add here of the new version.
  2. Hello, I found it strange because this feature is already added: If you can try to install wrobot in new folder, don't edit settings (edit only your flying mount and fightclass) and tell me if you have same problem.
  3. Hello, You can try to repair wow. Do you have try to disable your antivirus/firewall?
  4. Hello, I have reply by private message.
  5. Hello, This option is already available, not exactly same way but you can add more profiles in one, bot change the zone when required level is good for next zone.
  6. Hello, What is the Entry of your mailbox?
  7. Hello, Check if your mailbox has l'option "Can fly to" activated.
  8. In NPC DB window select Npc and press keyboard key "Del", or, stop wrobot, in WRobot folder remove file "WRobot\Data\NpcDB.xml".
  9. Hello, We have this profile but for alliance: You can try if this works with the Horde.
  10. Quick Search by buff list (useful for detecting poison, stunned ...) LuaScript: local idBuffs={13750,5004,433,121279,20572} for key,value in pairs(idBuffs) do for i=1,40 do local name, _, _, _, _, _, _, _, _, _, spellId = UnitBuff("player", i) if (value==spellId) then result=1 return; end end end result=0 Research: 1 Var: result Replace spells id 13750,5004,... by your buff spells id needed.
  11. Hello, You need to check buff of your character, if your character has an poison spell buff you launch Cleanse. You can use this lua condition to detect quickly poison: LuaScript: local idBuffs={13750,5004,433,121279,20572} for key,value in pairs(idBuffs) do for i=1,40 do local name, _, _, _, _, _, _, _, _, _, spellId = UnitBuff("player", i) if (value==spellId) then result=1 return; end end end result=0 Research: 1Var: result Replace spells id 13750,5004,433,121279,20572 by poison spells id.
  12. Hello, Try to remove all npc in your npcdb.
  13. Droidz

    Chat feature bug

    Thank you for repport.
  14. Look it: http://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/384235-pqr-pvp-lists.html This list need probably update.
  15. Hello, Look here: Try this version: http://download.wrobot.eu/wrobot/wManager_5.4.2_17688.zip But the support is not guaranteed, and if I change login system or mesh (for pathfinding) this version will no longer work.
  16. Look this: WRobot UI has changed since but the name of button is same. Try to make profile without waypoint also.
  17. local spellName = GetSpellInfo(53477) for i=1, 4 do local partyId = "party"..i if (UnitExists(partyId)) then TargetUnit(partyId) CastSpellByName(spellName, partyId) end end You can add condition at this line: if (UnitExists(partyId)) then By sample, if (UnitExists(partyId) and UnitHealth(partyId) < 500 and UnitInRange(partyId) and not UnitIsDead(partyId)) then ...
  18. Your code is not good, does not exist in wow api. My code don't works?
  19. Hello, Create profile with only one waypoint (position).
  20. Hello, Update your drivers and check the temp of your computer with software like SpeedFan (update also Windows).
  21. http://wowpedia.org/UnitId http://wowpedia.org/API_UnitName http://wowpedia.org/API_GetSpellInfo ( http://www.wowhead.com/spell=53477 ) http://wowpedia.org/API_CastSpellByName http://wowpedia.org/API_TargetUnit
  22. Hello, Try it: for i=1, 4 do local partyId = "party"..i local name, realm = UnitName(partyId) local spellName = GetSpellInfo(53477) if (name) then TargetUnit(partyId); CastSpellByName(spellName, partyId) end end
  23. Hello, This profile don't contains repair or vendor NPC, you can add NPC in your profile (with grinder profile creator) or directly in NPC database (in tab "Tools").
  24. Hello, WRobot works nice on windows, no really problems/bugs (if you have problem give me more details and send me your log). And sorry, WRobot don't works on mac/osx (you can try with virtual machine or dualboot).
×
×
  • Create New...