1. This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.

Stixx's ZMI Altar RuneCrafter [BETA] [Deleted]

Discussion in 'Bot Support & Feedback' started by stixx, Dec 1, 2018.

Thread Status:
Not open for further replies.
  1. stixx

    Joined:
    Jul 19, 2016
    Messages:
    35
    Likes Received:
    23
    #1 stixx, Dec 1, 2018
    Last edited by a moderator: Jan 7, 2019
    cookbenj likes this.
  2. cookbenj

    Joined:
    Nov 11, 2018
    Messages:
    18
    Likes Received:
    5
    would love to try this out once ive completed lunars.. has anyone tried it yet?
     
  3. Snufalufugus

    Joined:
    Aug 23, 2015
    Messages:
    1,961
    Likes Received:
    757
    Nice release, glad to see someone making RC bots. I'll try it out once it has a GUI (y)
     
    cookbenj and stixx like this.
  4. stixx

    Joined:
    Jul 19, 2016
    Messages:
    35
    Likes Received:
    23
    Ye, we all hate that skill ^^, thanks for the feedback, will probably try to find time during the week to implement GUI!
     
  5. Geriel Det

    Joined:
    Dec 25, 2014
    Messages:
    13
    Likes Received:
    0
    Can't wait to see this supporting more set ups. Would like to run it just running back and forth. Tried to use it earlier and would not run for me. Probably need all set up tasks complete. Willing to be a paid for bot once it's up and going.
     
  6. stixx

    Joined:
    Jul 19, 2016
    Messages:
    35
    Likes Received:
    23
    Thanks for the great feedback, really makes me motivated to keep working on this!
    Please check the setup guide, and it should work fine! Otherwise, please pm me about it!
     
    cookbenj likes this.
  7. playfakers

    Joined:
    Dec 6, 2018
    Messages:
    2
    Likes Received:
    0
    is this up and running or is it still down?
     
  8. stixx

    Joined:
    Jul 19, 2016
    Messages:
    35
    Likes Received:
    23
    I pushed a working version with configurable GUI yesterday, so just waiting for the code reviewing team to accept it! ^^
     
    cookbenj likes this.
  9. playfakers

    Joined:
    Dec 6, 2018
    Messages:
    2
    Likes Received:
    0
    awesome can you notify once its accepted! :)
     
  10. stixx

    Joined:
    Jul 19, 2016
    Messages:
    35
    Likes Received:
    23
    Will do! :D
     
  11. Wet Rag

    Wet Rag easily triggered ✌

    Joined:
    Dec 31, 2015
    Messages:
    4,449
    Likes Received:
    1,692
    If you have the bot added and @stixx updated the version number you will automatically get an update.
     
    stixx likes this.
  12. Superperson

    Joined:
    Nov 6, 2018
    Messages:
    23
    Likes Received:
    3
    Does this support teleport after craft? As you don''t say to have law runes in inventory? If added would 100% use
     
  13. stixx

    Joined:
    Jul 19, 2016
    Messages:
    35
    Likes Received:
    23
    Yes, after crafting runes you end up with law runes in your inventory, so it will be able to teleport!
     
  14. Superperson

    Joined:
    Nov 6, 2018
    Messages:
    23
    Likes Received:
    3
    second run, didnt receive a law. This is a big problem as the runes given are not guaranteed.
     
    #14 Superperson, Dec 10, 2018
    Last edited: Dec 10, 2018
  15. stixx

    Joined:
    Jul 19, 2016
    Messages:
    35
    Likes Received:
    23
    Oh crap, did this for 20 hours and didn't happen once.
    Will add a feature for handling this!
     
  16. jukkie

    Joined:
    Apr 8, 2018
    Messages:
    44
    Likes Received:
    6
    You can use varp 261 to fill the pouches, there is only a single varp for all three pouches, but the values of the varp contain information as to what pouch is filled or not. For every configuration of filled pouches (e.g. configuration of ONLY small is filled, or configuration of small AND large is filled but medium empty) the varp value will return a unique value.
    When ONLY the small pouch is full, the varp value will return 1. When ONLY the medium pouch is full the varp value will return 2. When ONLY the large pouch is full the varp will return 4. Every combination of filled pouches is simply the sum of these values (e.g. configuration of small and large is filled, the varp value will return 1+4=5, when small, medium and large are filled varp value will return 1+2+4=7). You can use this to fill the pouches while the bank is open, saving you 20 runes and is also less botlike as humans also fill the pouches from the bank.
    Code (Text):
    1. pouch_state = Varps.getAt(261);
    2. if(pouch_state.getValue()==1||pouch_state.getValue()==3||pouch_state.getValue()==5||pouch_state.getValue()==7){
    3.     //Small pouch is filled. Check other pouches
    4. } else {
    5.     //Small pouch is not filled. Fill it with essence.
    6. }
    So you know the small pouch is filled when varp returns one of the values 1, 1+2=3, 1+4=5,1+2+4=7.
    You can do the same for the other pouches. I don't have giant pouch yet so wasn't able to check.

    Unfortunately, you can not really use this to empty the pouches. When you are out of the bank, filling or emptying any pouch will change the value of the varp to 0. So let's say you have filled the pouches in the bank. Varp value will return 7, even when outside of the bank. Now you walk to the altar and empty the small pouch. The varp value will not return 6 (as now small is empty, but medium and large are filled 2+4) but instead return 0 and you lose information on the filling state of the other pouches.
     
    #16 jukkie, Dec 11, 2018
    Last edited: Dec 11, 2018
    stixx likes this.
  17. stixx

    Joined:
    Jul 19, 2016
    Messages:
    35
    Likes Received:
    23
    Thanks alot bro, did'nt know about this! <3
     
  18. Geriel Det

    Joined:
    Dec 25, 2014
    Messages:
    13
    Likes Received:
    0
    I think the setup needs redone. Or maybe make it so it supports more food options and just running back and forth. Don't have lunar book nor wanna spend the cash on monkfish. Will see how it runs.
     
  19. stixx

    Joined:
    Jul 19, 2016
    Messages:
    35
    Likes Received:
    23
    Could fix that, would be shit xp tho
     
  20. Geriel Det

    Joined:
    Dec 25, 2014
    Messages:
    13
    Likes Received:
    0
    Don't mind the shit xp honestly. More options would make it more versatile and would expand the amount of users you can have.
     
Thread Status:
Not open for further replies.

Share This Page

Loading...