SVN revision: 7517 | getAuto not triggering

This place is for Closed bug reports only. NOT for asking help!

Moderators: Moderators, Developers

Message
Author
rwnath
The Way Of Human
The Way Of Human
Posts: 194
Joined: 03 Nov 2010, 05:50
Noob?: No
Location: The Philippines
Contact:

SVN revision: 7517 | getAuto not triggering

#1 Post 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
Image

rwnath
The Way Of Human
The Way Of Human
Posts: 194
Joined: 03 Nov 2010, 05:50
Noob?: No
Location: The Philippines
Contact:

Re: SVN revision: 7517 | getAuto not triggering

#2 Post 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?
Image


Post Reply