GetAuto not working properly

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

Moderators: Moderators, Developers

WaRL0rD
Noob
Noob
Posts: 3
Joined: 15 Sep 2010, 14:19
Noob?: No

GetAuto not working properly

#1 Post by WaRL0rD »

every time im out of Quivers my bot wont automatically autostorage

here is my autostorage config
btw im using r7549 havent tested it yet with r7558 yet

i would like to add already tried using passive 0 or blank but its still not working

Code: Select all

storageAuto 1
storageAuto_npc veins 208 128
storageAuto_distance 8
storageAuto_npc_type 1
storageAuto_npc_steps c r1 n
storageAuto_password 0000
storageAuto_keepOpen 0
storageAuto_useChatCommand
relogAfterStorage 1
minStorageZeny 50

npcTimeResponse

getAuto Crystal Arrow Quiver {
	minAmount 0
	maxAmount 30
	passive 0
}

getAuto Awakening Potion {
	minAmount 0
	maxAmount 10
	passive 0
}

getAuto Butterfly Wing {
	minAmount 0
	maxAmount 1
	passive 1
}

getAuto Clip [Vitata] [1] {
	minAmount 0
	maxAmount 1
	passive 1
please close this topic if its already fixed with the new versions
Last edited by WaRL0rD on 05 Nov 2010, 04:51, edited 1 time in total.
rwnath
The Way Of Human
The Way Of Human
Posts: 194
Joined: 03 Nov 2010, 05:50
Noob?: No
Location: The Philippines

Re: GetAuto not working properly

#2 Post by rwnath »

try

Code: Select all

saveMap_warpToBuyOrSell 1
bring a butterfly wing
Image
WaRL0rD
Noob
Noob
Posts: 3
Joined: 15 Sep 2010, 14:19
Noob?: No

Re: GetAuto not working properly

#3 Post by WaRL0rD »

rwnath wrote:try

Code: Select all

saveMap_warpToBuyOrSell 1
bring a butterfly wing

you dont need a bwing with openkore, having a teleport clip is enough as long as u have the correct SaveMap indicated in your config...

my problem is GetAuto not working and not the auto Respawn option

thanks for the suggestion though

add:

tested it with the r7558 version, and still it isnt working hope any mods or other botters can help me solve this problem
rwnath
The Way Of Human
The Way Of Human
Posts: 194
Joined: 03 Nov 2010, 05:50
Noob?: No
Location: The Philippines

Re: GetAuto not working properly

#4 Post by rwnath »

is your saveMap_warpToBuyOrSell set to 1?

I remember having this problem before. I just set my saveMap_warpToBuyOrSell to 1 and it worked.

and, have you tried configuring your items_control.txt? set the minimum amount for the item you want to bring.
Image
rwnath
The Way Of Human
The Way Of Human
Posts: 194
Joined: 03 Nov 2010, 05:50
Noob?: No
Location: The Philippines

Re: GetAuto not working properly

#5 Post by rwnath »

OK, I tested it and it's not working for me either. It worked once but then it never triggered again.

What the bot does is it keeps calculating a rout for the lockMap.
Last edited by rwnath on 06 Nov 2010, 07:09, edited 1 time in total.
Image
gamenikko
The Way Of Human
The Way Of Human
Posts: 192
Joined: 16 Aug 2009, 03:47
Noob?: Yes
Location: Gonryun

Re: GetAuto not working properly

#6 Post by gamenikko »

use a macro

something like:

Code: Select all

automacro noQuivs {
inventory "Quivers" = 0
timeout 30
call {
do autostorage
}
}
this is just a pseudo macro.
Just like old times.
rwnath
The Way Of Human
The Way Of Human
Posts: 194
Joined: 03 Nov 2010, 05:50
Noob?: No
Location: The Philippines

Re: GetAuto not working properly

#7 Post by rwnath »

I know how to do that. I just want storageAuto and getAuto to work. Otherwise they would be useless.

Again, all it does is calculate for a route to its lockMap. And it's always failing probably because it's in Morocc and the lockMap is in Veins.
Image
gamenikko
The Way Of Human
The Way Of Human
Posts: 192
Joined: 16 Aug 2009, 03:47
Noob?: Yes
Location: Gonryun

Re: GetAuto not working properly

#8 Post by gamenikko »

Well you can't always count on developers, they are making progress but you can do temporary substitutions in their lacks.
Just like old times.
rwnath
The Way Of Human
The Way Of Human
Posts: 194
Joined: 03 Nov 2010, 05:50
Noob?: No
Location: The Philippines

Re: GetAuto not working properly

#9 Post by rwnath »

Anyway, I filed a bug report so they can have a look at it. It's just weird that it triggered the first time I configured it, and then... well, it keeps pissing me off :D

I temporarily fixed it using this

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
   }
}
Image
rwnath
The Way Of Human
The Way Of Human
Posts: 194
Joined: 03 Nov 2010, 05:50
Noob?: No
Location: The Philippines

Re: GetAuto not working properly

#10 Post by rwnath »

No fix yet?
Image