Jump to content

Droidz

Administrators
  • Posts

    12432
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Droidz reacted to witti in Bewegen im Kamppf   
    Hallo zusammen,
    ich teste gerade WRobot.
    In erster Linie brauche ich nur die Funktion "Rotation". Habe mehrere Routinen für meinen Jäger ausprobiert und die Sache sieht recht gut aus.
    Allerdings habe ich das Problem, das ich mich während des Kampfes nicht bewegen kann. In manchen Inis ein "no go".
    Habe ich irgendwo eine falschen Einstellung? Kann mir da jemand kurz helfen?
     
    EDIT: Lösung gefunden: Manage Chrakter Movement muss auf OFF stehen.
     
    Danke und Grüße
    Witti
     
  2. Like
    Droidz got a reaction from Samy in Happy New Year 2016!   


    View full article
  3. Like
    Droidz got a reaction from eeny in Starting quest from items picked up   
    Hello,
    Like this: 
  4. Like
    Droidz got a reaction from Newkostya in disable regen phase?   
    Hello,
     
    Go to tab "General Settings" > "Enter advanced settings..." > tab "Food / Drink" > and replace "Food... on 35 %" by 1%
  5. Like
    Droidz reacted to cindarella in 64 bit win 10   
    There is no real advantage in using the 64bit client. As already mentioned - the improvements are minimal.
    And of course people will continue to use 32bit software, have a look into your %programfiles(x86)% folder!
    Instead of switching you could just copy the WOW Folder and use the copied one for botting (rename Wow-64.exe), than you can also lower graphics settings and disable addons.
    The only downside of copying the folder is that you have to login the old fashioned way.
  6. Like
    Droidz got a reaction from Nightstalker in Merry Christmas   
    Merry Christmas


    View full article
  7. Like
    Droidz got a reaction from cindarella in Merry Christmas   
    Merry Christmas


    View full article
  8. Like
    Droidz got a reaction from reefer75 in Merry Christmas   
    Merry Christmas


    View full article
  9. Like
    Droidz got a reaction from BetterSister in Banwave   
    Hello,
    About HB, sincerely, without the contents created by the HB community (profiles, fight classes, plugin, ...), HB is an very basic bot, the dev team take few days to release update after new wow update (I have never understand why, security is false pretext, you can see result...) (I work alone, it takes me a few hours for normal update, and we can begin to work on the PTR server for beings ready when build is released on live server). After the banwave a few months ago, HB team have reopened the bot without knowing exactly what had caused the banwave, current banwave is a logical continuation... This is not the first fault, I was already here at the time where bossland began to writte bot with GatherBuddy, after few months it had already taken a banwave (because poorly coded). Even the banwave dating from there are 1 or 2 years old could be avoid because they had was warned that bliz had added a detection method.
    About WRobot I have worked hard to make wrobot hard to detect (it is more easy to detect HB that WRobot (If any have knowbase he can test)), I use a special technique that I have not seen on another bots to hide WRobot in memory. I know what I'm doing (if I worked among bliz, the  bots would have disappeared ^^). I cannot say that WRobot is undetectable (all is detectable), but I work to avoid it, and I think WRobot is among the most secure bots.
    ps: Sorry for my English.
  10. Like
    Droidz got a reaction from eeny in Banwave   
    Hello,
    About HB, sincerely, without the contents created by the HB community (profiles, fight classes, plugin, ...), HB is an very basic bot, the dev team take few days to release update after new wow update (I have never understand why, security is false pretext, you can see result...) (I work alone, it takes me a few hours for normal update, and we can begin to work on the PTR server for beings ready when build is released on live server). After the banwave a few months ago, HB team have reopened the bot without knowing exactly what had caused the banwave, current banwave is a logical continuation... This is not the first fault, I was already here at the time where bossland began to writte bot with GatherBuddy, after few months it had already taken a banwave (because poorly coded). Even the banwave dating from there are 1 or 2 years old could be avoid because they had was warned that bliz had added a detection method.
    About WRobot I have worked hard to make wrobot hard to detect (it is more easy to detect HB that WRobot (If any have knowbase he can test)), I use a special technique that I have not seen on another bots to hide WRobot in memory. I know what I'm doing (if I worked among bliz, the  bots would have disappeared ^^). I cannot say that WRobot is undetectable (all is detectable), but I work to avoid it, and I think WRobot is among the most secure bots.
    ps: Sorry for my English.
  11. Like
    Droidz reacted to seaniscoolkinda in Profile   
    Change the option "can attack unit already in combat" on the front page of the "general settings"
  12. Like
    Droidz got a reaction from AudreyH in Check wow unit or wow player for debuff   
    Hello,
     
    try this:
    List<WoWPlayer> playerList = ObjectManager.GetObjectWoWPlayer(); string debuffName = "SpellNameInEnglish"; foreach (var player in playerList) { if (player.IsValid && ObjectManager.Me.PlayerFaction == player.PlayerFaction) { if (player.HaveBuff(debuffName)) Logging.Write("[MyPlugin] Player " + player.Name + " have debuff " + debuffName); } }
  13. Like
    Droidz got a reaction from Matenia in Target Enemy and cast Spell on it   
    Hello,   You can add spell normally (just add "Crusader Strike" and WRobot will launch this spell when you select an enemy in range)     Or if you want automatically attack near enemy, in the spell name put: local name = GetSpellInfo(35395); TargetNearestEnemy(); if UnitExists("target") and UnitIsEnemy("player","target") and IsSpellInRange(name, "target") then CastSpellByName(name, "target"); end TargetLastTarget(); In spell settings "Combat only" > False, "Not spell, is lua script" > true, "Timer" > 3000 (for test all 3 secondes).
  14. Like
    Droidz got a reaction from AudreyH in Check wow unit or wow player for debuff   
    For get player role for the moment you can use lua: http://wowprogramming.com/docs/api/UnitGetAvailableRoles
     
    In the next version I have added "AvailableRoles" function, you can use it like:
    List<WoWPlayer> playerList = ObjectManager.GetObjectWoWPlayer(); bool canTank, canHealer, canDps; string debuffName = "SpellNameInEnglish"; foreach (var player in playerList) { if (player.IsValid && ObjectManager.Me.PlayerFaction == player.PlayerFaction) { player.AvailableRoles(out canTank, out canHealer, out canDps); Logging.Write("[MyPlugin] Player " + player.Name + " canTank: " + canTank + ", canHealer: " + canHealer + ", canDps: " + canDps); if (player.HaveBuff(debuffName)) Logging.Write("[MyPlugin] Player " + player.Name + " have debuff " + debuffName); } }
  15. Like
    Droidz got a reaction from eeny in Banwave   
    Hello,
    WRobot is not affected by this banwave.
    This banwave seem detect free rotations bots like Soapbox (don't use free of charge wow cheat/bot, it's all time risky).
  16. Like
    Droidz got a reaction from cindarella in luascript in is complete condition   
    Hello,
    You can use code like this in <is complete condition>  (not tested):
    int shipmentCapacity = wManager.Wow.Helpers.Lua.LuaDoString<int>("local name, texture, shipmentCapacity, shipmentsTotal, creationTime, duration, timeLeftString, itemName, itemIcon, itemQuality, itemID = C_Garrison.GetLandingPageShipmentInfo(); return shipmentCapacity;"); int shipmentsTotal = wManager.Wow.Helpers.Lua.LuaDoString<int>("local name, texture, shipmentCapacity, shipmentsTotal, creationTime, duration, timeLeftString, itemName, itemIcon, itemQuality, itemID = C_Garrison.GetLandingPageShipmentInfo(); return shipmentsTotal;"); return shipmentsTotal >= shipmentCapacity;  
    A few samples of lua usages:
    string luaValue = wManager.Wow.Helpers.Lua.LuaDoString("luaVarName = 'value text'", "luaVarName"); string luaValue2 = wManager.Wow.Helpers.Lua.LuaDoString<string>("return 'value text';"); bool luaValueBool = wManager.Wow.Helpers.Lua.LuaDoString<bool>("return 1==1;"); wManager.Wow.Helpers.Lua.LuaDoString("print('run lua code without return value');");  
  17. Like
    Droidz reacted to Oloritter in Login error   
    i dont get any process, just reinstalled wrobot.
    and it dont finds my wow process what to do?
    Edit: Fixed everything thx =)
  18. Like
    Droidz reacted to Botnut in BM Hunter   
    Thank you for your reply,
    Focus Fire works, Explosive Trap works.
    Took me awhile to understand what you did with Trap as i only know English.. thank god for Translators :P
     
    Thank you for your help :)
  19. Like
    Droidz got a reaction from Botnut in BM Hunter   
    Hello,
    For the trap look this sample: http://wrobot.eu/applications/core/interface/file/attachment.php?id=816 (http://wrobot.eu/forums/topic/2127-piège-hunt/?do=findComment&comment=9960)
    For  http://www.wowhead.com/spell=82692/focus-fire try to replace condition "Buff Stack Pet" by "Buff Stack".
     
  20. Like
    Droidz reacted to toxthefox in hello , thanks   
    THANK you very much for this software holy crap saved me like 49075436 hour :D am multiboxing for pvp and this software got me all the gear in 1 and a half day :D TY
  21. Like
    Droidz reacted to catalin87 in Not Gathering   
    Works like a charm. Thanks a lot man !
    You are a rockstar !
  22. Like
    Droidz reacted to PierreDeRosette in Plusieurs points :)   
    Impeccable.
    Je vois cela des que j'ai a nouveau mes conges. Super et merci beaucoup...
  23. Like
    Droidz got a reaction from odd_hippo in Trouble with profle creator for entrance to a dungeon   
    The easy way is to use Grinder or Gatherer product to make dungeon profile (tuto and sample here: http://wrobot.eu/forums/topic/1925-sample-dungeon-profile/?do=findComment&comment=9355 )
    To check position you can use c# code (IsCompleteCondition):
    return wManager.Wow.ObjectManager.ObjectManager.Me.Position.DistanceTo2D(new robotManager.Helpful.Vector3(-313.3, -120.6, 0)) < 2;  
  24. Like
    Droidz got a reaction from eeny in Another ban wave   
    Hello,   Yes I seen it yesterday.   WRobot is not affected by this banwave. I worked hard in WRobot 1.5.0 to hide WRobot in memory (WRobot is probably the only bot to use this method). It is not possible to make undetectable bot, but with small community (bliz seem targeting big community), if you use your own profiles (path of popular profiles of hb or rebot  are probably know by bliz), if you do not disturb other players (don't use bot 24/24, don't grind in quest zone...), you minimize ban risk.
  25. Like
    Droidz reacted to RamiMuhammadz in Droidz,, HELP PLEASE!!   
    I'll try and gonna tell u :)
×
×
  • Create New...