Jump to content

Droidz

Administrators
  • Posts

    12431
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Droidz got a reaction from rawr916 in Legion Warsong Glutch Constant Blockages   
    Hello, can you try to relaunch WRobot and tell me if problem is resolved, if problem is not resolved, can you share your log file please.
  2. Like
    Droidz got a reaction from mercomy in Buy Wrobot   
    Hello, it is automatic, you can found your license key here: http://wrobot.eu/clients/purchases/
  3. Like
    Droidz reacted to lolface92 in wow crash   
    i use another key that is lifetime
    changed to dx9 and it worked
     
  4. Like
    Droidz reacted to dblbacker2200 in Multi-botting   
    well i just tested it a little bit with Jamba, but to be honest It isnt necessary when you have the quickquest addon. I did set it up with HotKeyNet only broadcasting 2 keys and mouse clicks (when paired with the alt key). One of they keys is bound to a macro to make the bot assist my main toon (target my target), and the other is the ` key which is bound to Interact with Target.
    I just target the quest giver/guest turn in/npc to interact with for quest, hit my assist macro then the interact key. the bot (with quickquest addon) automatically picks up and turns in quests. The Dugi questing essentials addon selects the best choice for quest reward.
    The bot on party mode follows and attacks my target, now granted ive only tested in starting area but so far it works flawlessly. I cant wait until i have more time this weekend to test it more. Hell if i didnt just pick up a 2nd job i would be VERY tempted to get 4 more wow accounts and 3 more WRobot accounts to have a full dungeon group to lvl with and then bot at max lvl.... maybe one of these days lol
     
     
    OH this team I am running a paladin manually and botting priest
  5. Like
    Droidz got a reaction from nudl in Skull marked ?   
    Hello,
     
    You have lua functions GetRaidTargetIndex and SetRaidTarget (or SetRaidTargetIcon)
     
    Samples:
     
    Launch the spell id 109259 on the first boss with skull icon:

    local SpellName = GetSpellInfo(109259) for i = 1, 4, 1 do local UnitIdString = "boss" .. i if UnitExists(UnitIdString) then if GetRaidTargetIndex(UnitIdString) == 8 then CastSpellByName(SpellName, UnitIdString) return end end end Launch the spell id 109259 on the first raid target with skull icon (this code check the target of raid members):
    local SpellName = GetSpellInfo(109259) for i = 1, 40, 1 do local UnitIdString = "raid" .. i .. "target" if UnitExists(UnitIdString) then if GetRaidTargetIndex(UnitIdString) == 8 then CastSpellByName(SpellName, UnitIdString) return end end end Launch the spell id 109259 on the first party target with skull icon (this code check the target of party members):
    local SpellName = GetSpellInfo(109259) for i = 1, 4, 1 do local UnitIdString = "party" .. i .. "target" if UnitExists(UnitIdString) then if GetRaidTargetIndex(UnitIdString) == 8 then CastSpellByName(SpellName, UnitIdString) return end end end ps: Replace 109259 by your spell id and add conditions to launch the spell, to launch the spell if mob health is lower than 50%:

    local SpellName = GetSpellInfo(109259) for i = 1, 4, 1 do local UnitIdString = "party" .. i .. "target" if UnitExists(UnitIdString) then if GetRaidTargetIndex(UnitIdString) == 8 then if UnitHealth(UnitIdString)/UnitHealthMax(UnitIdString)*100 < 50 then CastSpellByName(SpellName, UnitIdString) return end end end end ps2: Code no tested, do not hesitate to tell me if this don't works
  6. Like
    Droidz got a reaction from saleh in Useful links   
    Wow API:
    http://wowpedia.org/API (seem best, updated for WoD) http://wowprogramming.com/docs/api_categories http://www.wowwiki.com/World_of_Warcraft_API
  7. Like
    Droidz got a reaction from Drwolftech in Stealth only if there is no skinable corpse   
    Hello, add this "C sharp code" condition at the spell stealth:
    (wManager.Wow.ObjectManager.ObjectManager.GetWoWUnitSkinnable(new List<MemoryRobot.Int128>()).Count <= 0)  
  8. Like
    Droidz got a reaction from Drwolftech in Sugestion: Follow Current Target   
    Hello, I'll add this.
    To wait you can select target in game, in WRobot go to tab "Tools" > Click on button "Development Tools" > Click on button "Target Informations", name appear in textbox between <Name> and </Name> (copy/past the name in party option).
  9. Like
    Droidz got a reaction from saleh in How to cancel subscription   
    Hello, no,  its not an automatic payment.
  10. Like
    Droidz got a reaction from piezs99 in Update Status - Patch 7.0.3 Build 22594   
    Hello,
    I start to work on this patch
  11. Like
    Droidz got a reaction from piezs99 in Update Status - Patch 7.0.3 Build 22594   
    Done, WRobot support Wow 7.0.3 build 22594, you need to update WRobot.
  12. Like
    Droidz got a reaction from Tetsaucer in Update Status - Patch 7.0.3 Build 22594   
    Done, WRobot support Wow 7.0.3 build 22594, you need to update WRobot.
  13. Like
    Droidz got a reaction from sumodima in Update Status - Patch 7.0.3 Build 22594   
    Done, WRobot support Wow 7.0.3 build 22594, you need to update WRobot.
  14. Like
    Droidz got a reaction from Daxa in Update Status - Patch 7.0.3 Build 22594   
    Done, WRobot support Wow 7.0.3 build 22594, you need to update WRobot.
  15. Like
    Droidz got a reaction from Tracelamenace in Update Status - Patch 7.0.3 Build 22594   
    Hello,
    I start to work on this patch
  16. Like
    Droidz got a reaction from nightiee in Update Status - Patch 7.0.3 Build 22594   
    Hello,
    I start to work on this patch
  17. Like
    Droidz got a reaction from sumodima in Update Status - Patch 7.0.3 Build 22594   
    Hello,
    I start to work on this patch
  18. Like
    Droidz got a reaction from Duskydandelions in Update Status - Patch 7.0.3 Build 22594   
    Hello,
    I start to work on this patch
  19. Like
    Droidz got a reaction from Tetsaucer in Update Status - Patch 7.0.3 Build 22594   
    Hello,
    I start to work on this patch
  20. Like
    Droidz reacted to geoffrey71 in Not Picking Up Artifact   
    Hello Droidz,
    I have the same problem for this tools.
    i found that :
    Name                                        Type Display ID Entry ID Position X Position Y Position Z Distance Rotation Faction GUID Summoned/Created By Trouvaille archéologique des Bien-nés - (on WowHead) WoWGameObject 34076 246811 -209,222 5522,944 54,043 5,695726 2,542995 - 007096000059BD672C3AF49880F106C0 0000000005156F6A0814DC0000000000  
    The entry id 246811 is for the one of three type of entity.
    If it's possible to add on bot the three entity :
    http://fr.wowhead.com/object=246811/trouvaille-archeologique-des-bien-nes
    http://fr.wowhead.com/object=246812/trouvaille-archeologique-demoniaque
    http://fr.wowhead.com/object=246804/trouvaille-archeologique-taurene-de-haut-roc
     
    Thanks in advance Droidz,
    Bye
  21. Like
    Droidz got a reaction from saleh in Update Status - Patch 7.0.3 Build 22594   
    Hello,
    I start to work on this patch
  22. Like
    Droidz got a reaction from Daxa in Update Status - Patch 7.0.3 Build 22594   
    Hello,
    I start to work on this patch
  23. Like
    Droidz got a reaction from iDropKickNans in Update Status - Patch 7.0.3 Build 22594   
    Hello,
    I start to work on this patch
  24. Like
    Droidz got a reaction from saleh in Sugestion: Follow Current Target   
    Hello, I'll add this.
    To wait you can select target in game, in WRobot go to tab "Tools" > Click on button "Development Tools" > Click on button "Target Informations", name appear in textbox between <Name> and </Name> (copy/past the name in party option).
  25. Like
    Droidz got a reaction from mercomy in Class trainer   
    To add class trainer, go to your "npc db" (tab "Tools") or edit your profile, in game select npc trainer, in WRobot select npc type (for hunter add Npc type 'HunterTrainer',...) and click on button "Add target...". WRobot go to trainer when he level up.
×
×
  • Create New...