SVN revision: 7517 | Inventory locked item problem

This place is for Unresolvable 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 | Inventory locked item problem

#1 Post by rwnath »

See, this worked before. You know, like putting Shiny Bead 1 0 0 on items_control.txt. But now, it just won't work. Even if I have set the items_control.txt, the bot still tries to put it in storage. I have looked up items.txt and I am positive that I am using the correct item name.

The error results in an endless loop of the bot trying to put the item in kafra storage.
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 | Inventory locked item problem

#2 Post by rwnath »

Disregard this post. I found out that we need to put quotation marks for items with spaces. Pardon my noobness. I didn't see what midnytblu's table update on pRO tables had.

Thank you for the update.
Image

EternalHarvest
Developers
Developers
Posts: 1798
Joined: 05 Dec 2008, 05:42
Noob?: Yes

Re: SVN revision: 7517 | Inventory locked item problem

#3 Post by EternalHarvest »

It should understand old syntax too, needs fixing.

EternalHarvest
Developers
Developers
Posts: 1798
Joined: 05 Dec 2008, 05:42
Noob?: Yes

Re: SVN revision: 7517 | Inventory locked item problem

#4 Post by EternalHarvest »

Can't reproduce that, seems like items with spaces works fine without quotation for me:

Code: Select all

all 0
Shiny Bead 1 0 0
"Poring Card" 0 1 0

Code: Select all

eval use Data::Dumper; Log::message Dumper \%items_control
$VAR1 = {
          'shiny bead' => {
                          'cart_get' => undef,
                          'cart_add' => undef,
                          'keep' => '1',
                          'storage' => '0',
                          'sell' => '0'
                        },
          'poring card' => {
                           'cart_get' => undef,
                           'cart_add' => undef,
                           'keep' => '0',
                           'storage' => '1',
                           'sell' => '0'
                         },
          'all' => {
                   'cart_get' => undef,
                   'cart_add' => undef,
                   'keep' => '0',
                   'storage' => undef,
                   'sell' => undef
                 }
        };

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 | Inventory locked item problem

#5 Post by rwnath »

That's weird. Well, as long as it's working.. Thank you
Image

Post Reply