Jump to content

Droidz

Administrators
  • Posts

    12432
  • Joined

  • Last visited

Reputation Activity

  1. Thanks
    Droidz got a reaction from zhxwbr8 in Sell the purple items of the first two backpacks?   
    https://wowwiki.fandom.com/wiki/API_GetItemQualityColor
    Try
    /run local q;if MerchantFrame:IsVisible()then for i=1,300 do q=GetContainerItemLink(i/35,i%35)if (q and (q:sub(5,10)=="a335ee" or q:sub(5,10)=="0070dd")) then UseContainerItem(i/35,i%35)end;end;end  
  2. Like
    Droidz got a reaction from 0xbadbac0n in (tbc) Find next not dead position   
    Hello, if it is for one dunjon maybe you can try to blacklist zone, or compare zone and move if you are in bad zone. Otherwise I think with events lua or gameobject entry id
  3. Thanks
    Droidz got a reaction from zhxwbr8 in Too many times to enter the dungeon in a short time.   
    Hello, look https://wrobot.eu/forums/topic/9204-addingusing-a-counter/?do=findComment&comment=42769&_rid=1
  4. Haha
    Droidz got a reaction from HelloKittyGithub in WRobot for Project Ascension   
    Hi, try with new update. But be careful, This team seems active, using a bot can be risky for your game account
  5. Like
    Droidz got a reaction from Marsbar in WRobot for Project Ascension   
    Use new update
  6. Like
    Droidz reacted to Ponke56 in Exorcism and Templar's Verdict wont cast on proc 4.3.4   
    Now that works like a charm ! 
    Added that line to C Sharp Code condition on exorcism and templars verdict. Awesomesauce !
    Thanks alot for all the help Droidz!
  7. Thanks
    Droidz got a reaction from Ponke56 in Exorcism and Templar's Verdict wont cast on proc 4.3.4   
    Hello, use c# condtion with the code
    ObjectManager.Me.HaveBuff(59578)  
  8. Like
    Droidz got a reaction from 0xbadbac0n in Random mount/ start mount via macro   
    Hello, try plugin like:
    using System.Threading; using robotManager.Products; using wManager; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { public void Initialize() { while (Products.IsStarted) { if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause) { try { if (ObjectManager.Me.IsHorde) wManagerSetting.CurrentSetting.GroundMountName = "Horde mount name"; else wManagerSetting.CurrentSetting.GroundMountName = "Ally mount name"; } catch { } } Thread.Sleep(500); } } public void Dispose() { } public void Settings() { } } replace Horde mount name and Ally mount name by you mounts names
  9. Like
    Droidz got a reaction from Koalemos23 in Don't mount if mining/herb node is close by?   
    Hello, in product settings (if you use gatherer product) disable option 'mount all time'. In advanced general settings you have mount distance option, increment it
  10. Like
    Droidz got a reaction from Artek in Bot wont pick Goldthorn at 170 skill   
    Hello, add the node to your harvest list (in advanced general settings)
  11. Like
    Droidz got a reaction from p3tr0s in Check For Hostiles Unit(s) Behind Player   
    Hello, you need to use IsBehind like that:
    u.IsBehind(ObjectManager.Me.Position, ObjectManager.Me.Rotation); ObjectManager.Me.IsBehind(u.Position, u.Rotation); you can also use:
    MovementManager.IsFacing(Me.Position, Me.Rotation, u.Position, 2.20f)  
  12. Like
    Droidz got a reaction from Pudge in Maximize / restore down wow window attached to wrobot process   
    hi, try  
    System.Diagnostics.Process.GetCurrentProcess().MainWindowHandle  
  13. Like
    Droidz got a reaction from 443803059 in The remote screen goes black   
    you have two times options, remove first line

  14. Thanks
    Droidz got a reaction from happiness7 in Fisherbot Quest   
    Hello, use quest type "OverridePulseCSharpCode" with code:
    Vector3 fishPosition = new Vector3(-9387.61, -120.2896, 58.53797, "Flying"); float fishRotation = 4; if (!FishingTask.IsLaunched) { if (GoToTask.ToPosition(fishPosition, 1.5f)) { ObjectManager.Me.Rotation = fishRotation; FishingTask.LoopFish(); } } return true; (replace "-9387.61, -120.2896, 58.53797" by fishing position and 4 by fishing rotation (you can get position and rotation in WRobot tab "Tools" > "Dev... tools" > "Me/Target Position"))
    Don't forget to stop fishing, for it, after pulse fishing quest, in quests order add step type "RunCode" with code:
    wManager.Wow.Bot.Tasks.FishingTask.StopLoopFish();  
    Sample profile: FishingTest.xml
  15. Like
    Droidz got a reaction from Koalemos23 in Is there any way to speed up wRotation?   
    Hello, try to increment you FPS in game, in fightclass editor you have also option "Frames per second", increment this option. Otherwise you have to decrease your number of spells, and avoid using lua (or if you can combine scripts)
  16. Like
    Droidz got a reaction from Artek in Computer identify   
    Hello, if they use lua they can use https://wowwiki.fandom.com/wiki/API_GetTime (if time is similar on several accounts it is probably same computer https://wrobot.eu/forums/topic/10842-careful-with-botting-on-netherwing/?do=findComment&comment=51771 )
     
  17. Thanks
    Droidz got a reaction from Pudge in Maximize / restore down wow window attached to wrobot process   
    You need more code 
    using System; using System.Runtime.InteropServices; using System.Windows.Forms; public class Main : wManager.Plugin.IPlugin { [DllImport("user32.dll", SetLastError = true)] static extern int GetWindowLong(IntPtr hWnd, int nIndex); public const uint WS_MINIMIZE = 0x20000000; public const uint WS_MAXIMIZE = 0x01000000; public const int GWL_STYLE = -16; void GetState() { int style = GetWindowLong(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, GWL_STYLE); if ((style & WS_MAXIMIZE) == WS_MAXIMIZE) { MessageBox.Show("maximized"); } else if ((style & WS_MINIMIZE) == WS_MINIMIZE) { MessageBox.Show("minimized"); } else { // normal style? MessageBox.Show("Normal??? > style=" + style.ToString("x8")); } } public void Initialize() { GetState(); robotManager.Helpful.Win32.Native.ShowWindow(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, 6); GetState(); robotManager.Helpful.Win32.Native.ShowWindow(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, 3); GetState(); robotManager.Helpful.Win32.Native.ShowWindow(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, 4); GetState(); } public void Dispose() { } public void Settings() { } }  
  18. Thanks
    Droidz got a reaction from Pudge in Maximize / restore down wow window attached to wrobot process   
    hi, try 
    robotManager.Helpful.Win32.Native.ShowWindow(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, 3); (no tested)
  19. Like
    Droidz got a reaction from TheSmokie in Bot not skinning   
    Hello, in advanced general settings increment your min latency
  20. Like
    Droidz got a reaction from justme121 in Upgrade subscription   
    Hello, you can found upgrade invoice here: https://wrobot.eu/clients/orders/
     
  21. Like
    Droidz reacted to alzaem121 in WRobot Legion 7.3.5.26365   
    do u got it ? cuz i have same problem with this freakz server
  22. Like
    Droidz got a reaction from ⎝͠҉̭̫͖̗͇ͅTraWin ̍̍̍̍̍̍̍̍̍ in WRobot old versions   
    Wow MoP:
    Wow 5.2.0 (16650) > https://download.wrobot.eu/wrobot/WRobot_5.4_1.0_FINAL.zip Wow 5.3.0 (17128) > https://download.wrobot.eu/wrobot/WRobotFullPack_5.3_FINAL.zip Wow 5.4.0 (17359) >  https://download.wrobot.eu/wrobot/WRobotFullPack_5.4.0_FINAL.zip Wow 5.4.1 (17538) > https://download.wrobot.eu/wrobot/WRobot_for_5.4.1_17538.zip Wow 5.4.2 (17688) > https://download.wrobot.eu/wrobot/wManager_5.4.2_17688.zip Wow 5.4.7 (18019) > https://download.wrobot.eu/wrobot/WRobotFullPack_5.4.7_18019.zip Wow 5.4.8 (18414) > https://download.wrobot.eu/wrobot/oldversion/WRobot_1.2.3.zip Wow 5.4.8 (18414) MoP Final version > https://download.wrobot.eu/wrobot/WRobot_5.4.8.18414_mopFINAL.zip You can download WRobot for MoP here: https://wrobot.eu/forums/topic/2477-download-wrobot-for-mop/  
    Wow WoD:
    Wow 6.0.2 (19027) > https://download.wrobot.eu/wrobot/WRobotFullPack_6.0.2_FINAL.zip Wow 6.0.3 (19342) > https://download.wrobot.eu/wrobot/oldversion/WRobot_6.0.3_19342_FINAL.zip Wow 6.1.0 (19702) > https://download.wrobot.eu/wrobot/oldversion/WRobot_6.1.0_19702_FINAL.zip Wow 6.1.2 (19865) > https://download.wrobot.eu/wrobot/oldversion/WRobot_6.1.2_19865.zip Wow 6.1.2 (19865) Final > https://download.wrobot.eu/wrobot/oldversion/WRobot_6.1.2_19865_FINAL.zip  Wow 6.2.0 (20216) Final > https://download.wrobot.eu/wrobot/oldversion/WRobot_6.2.0_20216.zip  Wow 6.2.0 (20338) Final > https://download.wrobot.eu/wrobot/oldversion/WRobot_6.2.0_20338_FINAL.zip Wow 6.2.2 (20574) Final > https://download.wrobot.eu/wrobot/oldversion/WRobot_6.2.2_20574_FINAL.zip  Wow 6.2.3 (20886) Final > https://download.wrobot.eu/wrobot/oldversion/WRobot_6.2.3_20886_FINAL.zip  You can download WRobot for WoD here: https://wrobot.eu/forums/topic/3408-download-wrobot-for-wod/ Wow Legion:
    Wow 7.0.3 (22345) > https://download.wrobot.eu/wrobot/oldversion/WRobot_7.0.3_22345.zip Wow 7.0.3 (22522) > https://download.wrobot.eu/wrobot/oldversion/WRobot_7.0.3_22522.zip  Wow 7.0.3 (22810) Final > https://download.wrobot.eu/wrobot/oldversion/WRobot_7.0.3_22810.zip Wow 7.1.0 (23222) Final > https://download.wrobot.eu/wrobot/oldversion/WRobot_7.1.0_23222.zip  Wow 7.1.5 (23360) Final > https://download.wrobot.eu/wrobot/oldversion/WRobot_7.1.5_23360.zip Wow 7.1.5 (23420) Final > https://download.wrobot.eu/wrobot/oldversion/WRobot_7.1.5_23420.zip Wow 7.2.0 (24015) Final > https://download.wrobot.eu/wrobot/oldversion/WRobot_7.2.0_24015.zip Wow 7.2.5 (24742) Final > https://download.wrobot.eu/wrobot/oldversion/WRobot_7.2.5_24742.zip Wow 7.3.0 (25195) Final >  https://download.wrobot.eu/wrobot/oldversion/WRobot_7.3.0_25195.zip Wow 7.3.2 (25549) Final > https://download.wrobot.eu/wrobot/oldversion/WRobot_7.3.2_25549.zip Wow 7.3.5 (25996) Final >  https://download.wrobot.eu/wrobot/oldversion/WRobot_7.3.5_25996.zip Wow 7.3.5 (26124) Final >  https://download.wrobot.eu/wrobot/oldversion/WRobot_7.3.5_26124.zip Wow 7.3.5 (26365) (old UI) >  https://download.wrobot.eu/wrobot/oldversion/WRobot_7.3.5_26365.zip Wow 7.3.5 (26365) Final >  https://download.wrobot.eu/wrobot/oldversion/WRobot_7.3.5_26365_final.zip Wow 7.3.5 (26654) Final >  https://download.wrobot.eu/wrobot/oldversion/WRobot_7.3.5_26654.zip Wow 7.3.5 (26822) Final >  https://download.wrobot.eu/wrobot/oldversion/WRobot_7.3.5_26822.zip Wow 7.3.5 (26972) Final > https://download.wrobot.eu/wrobot/oldversion/WRobot_7.3.5_26972.zip  
    ps: Not forum support and I do not guarantee that these versions works in the future.
    ps2: You can found older fightclasses here: https://wrobot.eu/files/category/39-old-obsolete/
  23. Like
    Droidz got a reaction from ⎝͠҉̭̫͖̗͇ͅTraWin ̍̍̍̍̍̍̍̍̍ in Need a bot for wow classic official servers   
    Because you come to my site trying to scam my users.
  24. Thanks
    Droidz got a reaction from ⎝͠҉̭̫͖̗͇ͅTraWin ̍̍̍̍̍̍̍̍̍ in Need a bot for wow classic official servers   
    still no answer...
    You're talking nonsense. VM can protect your data if you run unsafe program, it is useless to reply here with VM, (in case where you use VPN with update webbroser and that you don't accept external application and script) I can do nothing with VPN ip (exept if found fail on your VPN server, in this case I can get your real IP and get access to all your computer/VM if I found fail in your router/OS, but I am not the FBI ^^)
    I've asked you for the links more than 10 times ...
    @Jeeper has buy it, but he have got nothing, you just asked him to pay again.
     
    I wait reply for:
    for:  https://wrobot.eu/forums/topic/11808-need-a-bot-for-wow-classic-official-servers/?do=findComment&comment=57432
    for (I ask this more than 10 times):
     
    I'll send your phone number, born date, address and all information that I have about you at @jeppe010 (he probably has a service with it's bank to help you with this type of litige, and I send these info to you to see that I am no lie), I'll remove all link to your website and close this thread.
    if someone have problem with this scammer
    Classic wow bot classicwowbot classicwowbot.com www.classicwowbot.com www.classicwowbot.com/reviews [email protected] #Classicwowbot #ClassicWoWBotChallenge top wow accounts topwowaccounts www.topwowaccounts.com topwowaccounts.com Yakub wow bot [email protected] Send me private message, I have information about him I can help you.
     
    EDIT:
    I add links:
     -   https://www.epicnpc.com/threads/scammed-me-of-100euro.1591237/ 
    - https://www.ownedcore.com/forums/wow-classic/wow-classic-bots-programs/888216-classicwowbot-com-scam.html
     
     
  25. Like
    Droidz got a reaction from Pudge in Check distance from the ground texture.   
    Hello, with code like 
    Memory.WowMemory.LockFrame(); Vector3 found = Vector3.Zero; for (float i = 1; i < 150; i+= 0.5f) { var to = new Vector3(ObjectManager.Me.Position.X, ObjectManager.Me.Position.Y, ObjectManager.Me.Position.Z - i); bool obstacleFound = wManager.Wow.Helpers.TraceLine.TraceLineGo(ObjectManager.Me.Position, to, CGWorldFrameHitFlags.HitTestGroundAndStructures); if (obstacleFound) { found = new Vector3(to); break; } } Memory.WowMemory.UnlockFrame();  
×
×
  • Create New...