Jump to content

vodkalol

Members
  • Posts

    40
  • Joined

  • Last visited

Reputation Activity

  1. Thanks
    vodkalol reacted to Marsbar in Unofficial WRobot API Documentation   
    Hi!
    There are often questions regarding the wrobot api and what functions it has, generally you're told to either decompile the dlls or reference them in your visual studio project and use the object browser.
    Some people only want to know a certain function name and don't wish to go into the deeper realms of development. There isn't a resource they can use to obtain that info without some effort on their part, that's hopefully where this site I generated will come in handy:

    Unofficial WRobot API Docs
    It was created by decompiling the vanilla wmanager and robotmanager dlls and generating an api web template using docfx.
    Currently it doesn't give you anything more than you'd have by decompiling the dlls yourself but I'm hoping to update this with method, property, constructer etc. descriptions and potentially basic code snippets for a better understanding of the wrobot api.
    If you're interested in contributing let me know and I can add you to the gitlab project (sorry if you don't like gitlab but it was quick and easy with free private repos).
  2. Like
    vodkalol reacted to Apexx in Official WRobot API Documentation   
    This has been long awaited for! Thank you everyone for your dedicated work towards the project! 
  3. Like
    vodkalol reacted to Droidz in Happy New Year 2022   
    Wishing you a happy, healthy and prosperous year ahead.

    View full article
  4. Thanks
    vodkalol reacted to Droidz in how to schedule the auction   
    Hello,
    Like this: 
    Don't forget to activate "Relogger" option in the tab "General Settings" > "Enter advanced settings" > tab "Relogger".
  5. Thanks
    vodkalol reacted to Droidz in Random wait time   
    Hello, use plugin like:
    using System.Threading; using robotManager.FiniteStateMachine; using robotManager.Helpful; using wManager.Wow.Helpers; public class Main : wManager.Plugin.IPlugin { public void Initialize() { robotManager.Events.FiniteStateMachineEvents.OnAfterRunState += delegate(Engine engine, State state) { try { if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause && !Conditions.IsAttackedAndCannotIgnore && state.DisplayName == "Looting") { Thread.Sleep(Others.Random(1000, 5000)); } } catch {} }; } public void Dispose() { } public void Settings() { } }  
    RandomWaitAfterLoot.cs
  6. Like
    vodkalol got a reaction from Marsbar in C# Fightclass development - video tutorial   
    Thanks a lot for taking your time to help the next generation of programmers/botters ^^
    I will defendly watch your video because I have decided to use Wrobot as the project to learn me programming 4 real. I know the basics of Python but then life went up side down and I had to take a break from learning programming. Wow botting is what will motivate me to get back at it ^^ 
    I have always loved wow botting. 
  7. Thanks
    vodkalol got a reaction from Droidz in About my licsence key!!   
    Thanks your the best.
    The bot worked so did not download your suggested files. 
    But downloading them now ?
    Your bot is awesome btw. 
    I used all the old well known bots on retail in the past.
    Good work! 
  8. Thanks
    vodkalol reacted to Droidz in About my licsence key!!   
    Install vc++ and slimdx https://wrobot.eu/files/file/2-wrobot-official/
×
×
  • Create New...