PDA

View Full Version : Delayed bounty turn in script



zennsunni
02-17-2016, 09:07 PM
Hey folks, first time posting here for help so please don't burn me alive. New to ruby (and pretty new to coding in general) and trying to write a script that loops a function checking to see if I'm still saturated or not, and then going to the bounty person and turning in a completed bounty when I'm not. The purpose for this, obviously, is to get saturated, finish a new bounty, and then park. Only problem is it's not working and I don't know why, no doubt something really stupid.




def mind_check
if checksaturated == false
start_script('go2', [ 'advguild', 'disable_confirm_'])
wait_while {running?('go2')}
fput "ask alanna about bounty"
fput "ask alanna about bounty"
start_script('go2', [ 'town', 'disable_confirm'])
wait_while {running?('go2')}
exit
else
end

loop {

mind_check

pause 60
}end