Jump to content

Droidz

Administrators
  • Posts

    12431
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Droidz reacted to Runaro in Identifying Transmogs?   
    You can add a macro into your profile, before using the vendor he spams the macro and equips all BOE gear.
    /run for b=0,NUM_BAG_SLOTS do for s=1,GetContainerNumSlots(b) do local l=GetContainerItemLink(b,s) if l then if format('%9$s',GetItemInfo(l)) ~= '' then EquipItemByName(l) end end end end  
    To avoid the popup for equipping BOE gear, just use the attached World of Warcraft Addon.
    Ps. Add another macro to the profile, where he equips your default Gear back on, once he's done with the BOE gear. ( not the cleanest solution, but i don't know any addon which does that all for you )
    AutoConfirmEquip.zip
  2. Like
    Droidz reacted to will127 in Former mmo glider user   
    Hey guys just picked this up came back to the game after. 3 years away.  Use to use mmo glider. Back in its hay day. This program reminds me a lot of that one.   Well some things at least.   This is. Pretty. Easy to use.   I still have to dive in to setting up. My own questing profiles to se how that looks.    And  last thing being able to use this on private server was what made me decide to try u guy cuz if I do get banned.   Won't long as I don't get greedy.  I can still play around on them.  Thanks guys good job. 
  3. Like
    Droidz got a reaction from BetterSister in wait... WHAT??   
    ^^ not realy, but I was forced to update a lot of files when I have change settings for 'Automaticly add npc to db..."
  4. Like
    Droidz reacted to Whyme in Mantid Arch. Find   
    thanks Droidz,
     
    i updated today and will test it, will report back if it works or not..
    You're the MAN, works perfect now, 

    Thanks for solving this DroidZ!!!
  5. Like
    Droidz got a reaction from Krack3n in Disable Teamviewer Warning   
    Wait next update, I have removed teamviewer messagebox with 'WRobot Quick Launch'. To avoid message, you can launch WRobot with the "Relogger".
  6. Like
    Droidz got a reaction from Dreamful in stuck at selling   
    Wait next update, I have changed settings, now you can select npcs at add to database by type (vendors is disabled by default):

  7. Like
    Droidz got a reaction from BetterSister in stuck at selling   
    Wait next update, I have changed settings, now you can select npcs at add to database by type (vendors is disabled by default):

  8. Like
    Droidz reacted to Whyme in Mantid Arch. Find   
    He droidz,
     
    Sorry i forgot to add that.. ;)
    Here's the dump of wrobot:
     
    ==================================
    NEAR GAMEOBJECT INFO:
    ==================================
    CreatedBy = 108086391056918294
    DisplayId = 13706
    FlagsInt = 0
    Flags = 0
    Position = 2413,96 ; 5595,29 ; 70,8838 ; "None"
    Name = Mantid Archaeology Find
    GetDistance = 1,754054
    GetDistance2D = 1,75341
    ParentRotation = 0
    Data0 = 1859
    Data1 = 46918
    Data8 = 0
    GOType = Chest
    IsMailbox = False
    LockEntry = 1859
    CanOpen = False
    SkillLineRequired = None
    IsOutdoors = True
    IsIndoors = False
    GetBaseAddress = 300797172
    IsValid = True
    GetDescriptorStartAddress = 300797740
    Guid = 17371290645112622813
    Type = GameObject
    GetDynamicFlags = -65536
    IsInvisible = False
    Entry = 211150
    Scale = 2
    Rotation() = 0
    you think you can add the id? 
     
     
  9. Like
    Droidz got a reaction from iMod in BlackList Logic   
  10. Like
    Droidz got a reaction from KevinVapes in Hold Range / Moving Backwards   
    Hello, like this: http://wrobot.eu/forums/topic/1118-snippets-of-lua-codes-for-fightclass/?do=findComment&comment=11416 and http://wrobot.eu/forums/topic/2482-shadow-priest-void-tendrils-help/?do=findComment&comment=11415
  11. Like
    Droidz got a reaction from BetterSister in Bot skips waypoints   
    Hello, if you can wait next update. I have added step type "Reset", use this step before "Pulse" step.
  12. Like
    Droidz got a reaction from Chiffon in Wrotation Auto Attack Delay   
    Hello, in your fight, add spell:
    Name:
    RunMacroText("/startattack") Spell Settings:
    Not spell, is lua script > True
    Once per Target > True
    Add condition:
    Have Target > Value = True
    (you can add more conditions if you want)
    startattack.xml
  13. Like
    Droidz reacted to eeny in Getting started with WRobot video   
  14. Like
    Droidz reacted to eeny in Relogger Tutorial Video   
  15. Like
    Droidz reacted to KevinVapes in Computer freezes up   
    Sorry for doublepost but heres a hint.
    I searched trough that win10 update because it bothered me so much. There are indeed LOTS of players who complain about performance issues due to a win10 update. A recent update activated a function called GameDVR without you knowing. This cause lots of trouble. You can disable it in the registry, or disable it by having a microsoft-account.
    Try googling it, else i will post you the regedit path here, or when im at home. Think i need to check this on my notebook too, since theres win10 also (girlfriend playing WoW on it)
  16. Like
    Droidz got a reaction from BetterSister in Disable Teamviewer Warning   
    Wait next update, I have removed teamviewer messagebox with 'WRobot Quick Launch'. To avoid message, you can launch WRobot with the "Relogger".
  17. Like
    Droidz got a reaction from Krack3n in Stop drinking / eating once 100%   
    This problem appear on WRobot for wow 3.3.5 (mana in memory is not refresh frequently). I have fixed problem, wait next update.
  18. Like
    Droidz got a reaction from Runaro in Stop drinking / eating once 100%   
    (on  2.4.3 with no english game client (same result with english game client)): 2016-08-17_11-19-23.mp4
  19. Like
    Droidz got a reaction from iMod in How to get the UnitID out of the WoWUnit object   
    Wait next WRobot update and use this code:
    public static int GetThreat(WoWUnit target) { int threatpct = 0; string luaCode = "local _, _, threatpct = UnitDetailedThreatSituation('player', 'focus'); return threatpct;"; try { if (!target.IsValid) return threatpct; if (target.IsMyTarget) { threatpct = Lua.LuaDoString<int>(luaCode.Replace("'focus'", "'target'")); } else if (target.Guid == ObjectManager.Me.FocusGuid) { threatpct = Lua.LuaDoString<int>(luaCode); } else { var currentFocus = ObjectManager.Me.FocusGuid; ObjectManager.Me.FocusGuid = target.Guid; threatpct = Lua.LuaDoString<int>(luaCode); ObjectManager.Me.FocusGuid = currentFocus; } } catch { } return threatpct; } (this code not freeze wow)
  20. Like
    Droidz reacted to Lord in Bot attacking dead npc   
    Here is the text you ask : 

     
     
  21. Like
    Droidz reacted to Zan in A Value instead of True or False for Settings   
    Yes it is. I figured it out :)
  22. Like
    Droidz reacted to BetterSister in Refund please..   
    Me and eeny are working right now on quester profiles for retail. Me alliance and eeny horde. Eeny is currently at 80lvl and I'm at 25lvl (i started couple days ago and i got school) 
    But meanwhile even tho my profiles take longer to create they are optimized for xph (Hearthstone usage etc) and are great quality. If i find problem after release i fix it (or atleast try to) 
  23. Like
    Droidz reacted to eeny in Pickpocket Mobs   
    OK, pickpocket.XML is a QUEST PROFILE. so load it as a quest profile.
    The bot has a nasty habbit of sometimes breaking steal and killing everything.. which is Ok otherwise you end up with all the camps pic-pocketed and the bot will just be doing loops.
     
    I turned Looting OFF as i found it broke stealth too much and the loot really isnt worth it.
     
    EDIT: just opened my 30 boxes... what a waste of time.. why are you doing this?
     

    Pickpocket.xml
    Rogue_pickpocket_fight_Class.xml
  24. Like
    Droidz reacted to eeny in how to make a profile to quest dungeon?   
    Simpletons way of instance profile making... Best of luck
     
     
    ...its not simple.
  25. Like
    Droidz reacted to eeny in gatherer profiles not working tanaan g   
    On the first log with ur shaman you actually got some farms.. you could always make a copy of the tanaan mesh's, move them out of the directory they are now and start the bot.
     
    The bot will need to re-download new mesh's and you may have a bit more luck... Maybe worth a shot
×
×
  • Create New...