Autobuy sequence triggers

For everything NOT server specific support. Do NOT ask for connectivity help here!.

Moderator: Moderators

Message
Author
keeperstime
Noob
Noob
Posts: 2
Joined: 07 Jul 2011, 11:13
Noob?: Yes

Autobuy sequence triggers

#1 Post by keeperstime »

I have my config to go auto buy when certain items are at a measly

Code: Select all

buyAuto Butterfly Wing {
	minAmount 2
	maxAmount 10
	npc cmd_in01 79 182
	standpoint cmd_in01 75 182
	distance 6
	
}

buyAuto Red Potion {
	minAmount 10
	maxAmount 60
	npc cmd_in01 79 182
	standpoint cmd_in01 75 182
	distance 6
	
}

buyAuto Awakening Potion {
	minAmount 1
	maxAmount 5
	npc cmd_in01 79 182
	standpoint
	distance 6
	
}


buyAuto fly wing {
	minAmount 10
	maxAmount 30
	npc cmd_in01 79 182
	standpoint
	distance 6
	
}
none of these auto buy's are ever triggered when openkore is at min item I suspect it had to do with other command conflicting it.

keeperstime
Noob
Noob
Posts: 2
Joined: 07 Jul 2011, 11:13
Noob?: Yes

Re: Autobuy sequence triggers

#2 Post by keeperstime »

nvm this is fixed. I have another problem though openkore uses both teleport skill and butterfly or fly wing when teleporting how can I make it stick to using butterfly wings and fly wings and discourage using the teleport skill.

tmrcik
Noob
Noob
Posts: 17
Joined: 06 Feb 2009, 07:28
Noob?: Yes

Re: Autobuy sequence triggers

#3 Post by tmrcik »

Try like this;

Code: Select all

buyAuto Butterfly Wing {
npc cmd_in01 79 182
standpoint
distance 7
price 800
minAmount 1
maxAmount 5
Imo, don't involve standpoint since the bot automatically stands at 6 step away from the npc. Hope it helps.

guytwo
Plain Yogurt
Plain Yogurt
Posts: 59
Joined: 26 Aug 2011, 04:45
Noob?: Yes

Re: Autobuy sequence triggers

#4 Post by guytwo »

I have my autobuy set up as such:

Code: Select all

buyAuto Red Potion {
	maxAmount 50
	minAmount 0
	npc payon 159 96
	distance 3
}

buyAuto Fly Wing {
	maxAmount 50
	minAmount 0
	npc payon 159 96
	distance 3
}
Yet my bot doesn't autobuy when it runs out of these items. If I set the minimum to 0, that mean it should go buy it as soon as it uses the last one? It doesn't for me. He just keeps fighting and eventually has to rest for long periods of time.

Post Reply