r6449+ | check items inventory

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

Moderators: Moderators, Developers

Click
Human
Human
Posts: 39
Joined: 15 Apr 2008, 06:08
Noob?: Yes
Location: Russia, Velikiy Novgorod

r6449+ | check items inventory

#1 Post by Click »

Code: Select all

lockMap pay_fild06

storageAuto 1
storageAuto_npc alberta 28 229
storageAuto_distance 5
storageAuto_npc_type 1

getAuto Awakening Potion {
   minAmount 0
   maxAmount 2 
Storage opened.
Kafra: Done talking
storage: Awakening Potion out of stock
Storage closed.
Storage logged
move to lockmap
Auto-storaging due to insufficient Awakening Potion
Teleporting to auto-storage
______________________________________________________________

Code: Select all

getAuto Butterfly wing {
minAmount 0
maxAmount 1
passive 0
}

getAuto Fly wing {
minAmount 0
maxAmount 20
passive 0
}

getAuto Concentrate potion {
minAmount 0
maxAmount 5
passive 0
}

Code: Select all

##### HEAL/SUPPORT ITEMS #####
# Adjust these to your needs

Butterfly Wing 10 1 0
Fly Wing 100 1 0
Concentration potion 10 1 0 
storage: Butterfly Wing out of stock
storage: Fly Wing out of stock
storage: Concentration potion out of stock

loops!
______________________________________________

OpenKore_206SVN6259 work correctly
sli
Perl Monk
Perl Monk
Posts: 810
Joined: 04 Apr 2008, 17:26
Noob?: No

Re: [bug] check items inventory ≈ svn6449+

#2 Post by sli »

Edit: Committed fix to SVN.
cs : ee : realist
Click
Human
Human
Posts: 39
Joined: 15 Apr 2008, 06:08
Noob?: Yes
Location: Russia, Velikiy Novgorod

Re: [bug] check items inventory ≈ svn6449+

#3 Post by Click »

sli wrote:Edit: Committed fix to SVN.
sli has solved it so in svn6457

file CoreLogic.pm
was:

Code: Select all

warning TF("storage: %s out of stock\n", $item{name});
became:

Code: Select all

warning TF("storage: %s out of stock - getAuto block disabled\n", $item{name});
                  $config{"getAuto_$args->{index}_disabled"} = 1;
but something to not like me this decision, first we shall present, the openkore has gone in Kafra, there is empty, block disabled, has gone in BuyAuto, has bought, but the block already disabled. Further still a minus: for example we in game were bought in Kafra and to us it is necessary to correct again before start of a openkore a config, undisabled blocks.
Last edited by Click on 17 Aug 2008, 06:21, edited 1 time in total.
Click
Human
Human
Posts: 39
Joined: 15 Apr 2008, 06:08
Noob?: Yes
Location: Russia, Velikiy Novgorod

Re: [bug] check items inventory ≈ svn6449+

#4 Post by Click »

i fix it in svn6458
sli
Perl Monk
Perl Monk
Posts: 810
Joined: 04 Apr 2008, 17:26
Noob?: No

Re: [bug] check items inventory ≈ svn6449+

#5 Post by sli »

All my patch did was disable getAuto blocks that failed for the duration of your botting session. buyAuto blocks won't be affected and the bot still checks the getAuto blocks when it does autoStorage (tested this part specifically). It just no longer leaves its lockMap immediately to try and execute a getAuto block.
cs : ee : realist