Page 1 of 1

SVN revision: 7517 | Inventory locked item problem

Posted: 05 Nov 2010, 08:54
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.

Re: SVN revision: 7517 | Inventory locked item problem

Posted: 05 Nov 2010, 09:18
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.

Re: SVN revision: 7517 | Inventory locked item problem

Posted: 05 Nov 2010, 11:09
by EternalHarvest
It should understand old syntax too, needs fixing.

Re: SVN revision: 7517 | Inventory locked item problem

Posted: 05 Nov 2010, 16:44
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
                 }
        };

Re: SVN revision: 7517 | Inventory locked item problem

Posted: 05 Nov 2010, 23:17
by rwnath
That's weird. Well, as long as it's working.. Thank you