Jump to content
Frequently Asked Questions
  • Are you not able to open the client? Try following our getting started guide
  • Still not working? Try downloading and running JarFix
  • Help! My bot doesn't do anything! Enable fresh start in client settings and restart the client
  • How to purchase with PayPal/OSRS/Crypto gold? You can purchase vouchers from other users
  • Bot Manager


    TheHitchhiker

    Recommended Posts

    I am working on a python based bot manager for my own personal use and I was thinking about open sourcing it. What features would yall like to see in a bot manager?

     

    Usage is very dependent on the user knowing some python. To program behavior, the user would use my library to start/manage/end bot sessions. I suppose someone could easily create a web page to execute functions a remote connection but that isn't in the works atm.

     

    Current progress relies heavily on windows and probably will continue to for the foreseeable future.

     

    Planned features:

    • Bot status
    • Communication from the scripts (obviously this will only really be available for scripts that implement this functionality)

     

    Usage snippet:

     

    f2pWorlds = ["301","308","316","326","335","381","382","383","384","385","393","394"]
    world = random.choice(f2pWorlds)
    botPID = StartBot("looter1",fileName,"swiftCombat","proxy1",world)
    print("world: " + world)
    Wait(5)
    KillBot(botPID)

    Link to comment
    Share on other sites

    I have something similar I'm working on, in Python aswell:  https://dreambot.org/forums/index.php/topic/12136-crondroid-bot-control-software-cronscript/?p=115410 

     

    So if you need inspiration, have a look at the project thread :)

     

    Also, if you have any questions or discuss this kind of stuff with me, I'm all about that!

     

    GL with the project!

     

     

    Edit: It's a shame they have to use a library though :/ The virtue with python is that you can easily build REST web services with it, which would take away the need for any libraries (making the scripts that use your manager eligible for the SDN/script store)

    Link to comment
    Share on other sites

    Thanks!

     

    I don't think I intend to make mine nearly as polished as yours. (I don't have the time! haha)

     

    As far as the communication with the manager is concerned: I am reading the console output of dreambot and currently some scripts write out more than others. The goal is to have a script that post a sentinel whenever it is completed so that the manager can read it and do whatever the user intends. Assuming some arbitrary script writes out, you could identify a custom sentinel for a script that wasn't originally developed for use with the manager.

    Link to comment
    Share on other sites

    Archived

    This topic is now archived and is closed to further replies.

    ×
    ×
    • Create New...

    Important Information

    We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.