Right, I'm making a swamp toad picker, but could someone please give me a example of a part in a script when it tells it to bank like when it has fullinvent it knows to walk to the bank?
Thanks!
Right, I'm making a swamp toad picker, but could someone please give me a example of a part in a script when it tells it to bank like when it has fullinvent it knows to walk to the bank?
Thanks!
Just like a
Simba Code:repeat
blahblah
until (InvFull);
Would that work for what you're doing?
I assume so and then il just loop the whole processes together collecting, walking, banking, walking back etc?
Yeah like for example your main loop could look like this:
Simba Code:begin
WalkToSpot;
repeat
Collect;
until (InvFull)
WalkToBank;
end.
Or you could put the repeat in the procedure itself.
Alright Griff I think I got it now, Thanks for your help![]()
There are currently 1 users browsing this thread. (0 members and 1 guests)