Page 1 of 1

SVN revision: 7517 | getAuto not triggering

Posted: 06 Nov 2010, 07:23
by rwnath

Code: Select all

getAuto Blue Gemstone {
	minAmount 0
	maxAmount 10
	passive 0
}
it worked the first time I configured it, but after that, it doesn't trigger anymore. All the bot does is an endless loop trying to calculate for a route to the lockMap. I know I have set the right parameters because when I force it to autostorage, it does get the gemstones. It just won't do it automatically.

Image

Re: SVN revision: 7517 | getAuto not triggering

Posted: 06 Nov 2010, 07:37
by rwnath
Update:

I monitored it and it seems that when I force the bot to autostorage, my automacro triggers immediately after getting the gemstones. So it tries to cast warp while the storage is open.

My temporary fix is

Code: Select all

automacro getGems {
	map morocc
	inventory "Blue Gemstone" = 0
	exclusive 1
	run-once 1
	call {
		do autostorage
		pause 1
		release getGems
	}
}
automacro warpToVeins {
	map morocc
	hp > 90%
	sp > 10%
	inventory "Blue Gemstone" > 0
	exclusive 1
	run-once 1
	call {
		do move 145 82
		pause 2
		do sl 27 145 79
		pause 1
		do warp 3
		pause 2
		do move 145 79
		release warpToVeins
	}
}
QUESTION: How do I make macro not trigger while bot is on such ai sequences like autostorage?

Re: SVN revision: 7517 | getAuto not triggering

Posted: 14 Dec 2010, 09:59
by EternalHarvest