So, I threw together this little anti idle macro so I could leave my trader up for as long as I like.
Code: Select all
|anti idle bazaar macro
|created by loadingpleasewait
sub main
/declare timetowait outer
/echo anti idle macro starting..
:loop
:randagain
/varset timetowait ${Math.Rand[30]}
/if (${timetowait}==0) /goto :randagain
/if (${Me.Sitting}) {
/stand
/echo Standing back up at ${Time.Time12} for ${timetowait} Minutes
} else {
/sit
/echo Sitting back down at ${Time.Time12} for ${timetowait} Minutes
}
/delay ${timetowait}m
/goto :loop
/returnworks for me..



