Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!

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

Status
Not open for further replies.
Joined
Jul 19, 2016
Messages
35
Last edited by a moderator:
Joined
Nov 11, 2018
Messages
18
would love to try this out once ive completed lunars.. has anyone tried it yet?
 
Joined
Jul 19, 2016
Messages
35
Nice release, glad to see someone making RC bots. I'll try it out once it has a GUI (y)
Ye, we all hate that skill ^^, thanks for the feedback, will probably try to find time during the week to implement GUI!
 
Joined
Dec 25, 2014
Messages
13
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.
 
Joined
Jul 19, 2016
Messages
35
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.
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!
 
Joined
Nov 6, 2018
Messages
23
Does this support teleport after craft? As you don''t say to have law runes in inventory? If added would 100% use
 
Joined
Jul 19, 2016
Messages
35
Does this support teleport after craft? As you don''t say to have law runes in inventory? If added would 100% use
Yes, after crafting runes you end up with law runes in your inventory, so it will be able to teleport!
 
Joined
Nov 6, 2018
Messages
23
Yes, after crafting runes you end up with law runes in your inventory, so it will be able to teleport!
second run, didnt receive a law. This is a big problem as the runes given are not guaranteed.
 
Last edited:
Joined
Apr 8, 2018
Messages
45
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:
pouch_state = Varps.getAt(261);
if(pouch_state.getValue()==1||pouch_state.getValue()==3||pouch_state.getValue()==5||pouch_state.getValue()==7){
    //Small pouch is filled. Check other pouches
} else {
    //Small pouch is not filled. Fill it with essence.
}
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.
 
Last edited:
Joined
Jul 19, 2016
Messages
35
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:
pouch_state = Varps.getAt(261);
if(pouch_state.getValue()==1||pouch_state.getValue()==3||pouch_state.getValue()==5||pouch_state.getValue()==7){
    //Small pouch is filled. Check other pouches
} else {
    //Small pouch is not filled. Fill it with essence.
}
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.
Thanks alot bro, did'nt know about this! <3
 
Joined
Dec 25, 2014
Messages
13
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.
 
Joined
Jul 19, 2016
Messages
35
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.
Could fix that, would be shit xp tho
 
Status
Not open for further replies.
Top