Page 1 of 1

/classes/Store.lua Error

Posted: Mon Jan 24, 2011 8:03 pm
by jason404
I keep getting this error after my bot sells his items to the merchants.

Any suggestions on how to fix this? Note: using the latest svn.

Image

Re: /classes/Store.lua Error

Posted: Mon Jan 24, 2011 8:11 pm
by lisa
can you post what is in your profile.
specifically this section.

Code: Select all

		<option name="HEALING_POTION" 			value="99" />
		<option name="MANA_POTION" 			value="20" />
		<option name="ARROW_QUIVER" 			value="0" />
		<option name="THROWN_BAG" 			value="0" />
		<option name="POISON" 				value="0" />

Re: /classes/Store.lua Error

Posted: Mon Jan 24, 2011 8:18 pm
by jason404
If I remember correctly it was working before I did the latest svn update.

Code: Select all

<!-- Rest if HP or Mana is below that level -->
		<option name="HP_REST" value="15" />
		<option name="MP_REST" value="15" />

		<!-- Shopping options, how many of what do you want to keep in your inventory -->
		<option name="HEALING_POTION" value="99" />
		<option name="MANA_POTION" value="0" />
		<option name="ARROW_QUIVER" value="" />
		<option name="THROWN_BAG" value="0" />
		<option name="POISON" value="99" />
		<option name="INV_AUTOSELL_ENABLE" value="true" />
		<option name="INV_AUTOSELL_FROMSLOT" value="8" />
		<option name="INV_AUTOSELL_TOSLOT" value="60" />
		<option name="INV_AUTOSELL_QUALITY" value="white,green" />
		<option name="INV_AUTOSELL_IGNORE" value="Spirit Herb, Arrow, II, III, Disenchant, Infinite Herb, Infinite Elemental Stone, Sand Dune Ring, Blend Rune, POISON" />
		<option name="DEBUG_AUTOSELL" value="true" />
O wait i've just noticed something now (<option name="ARROW_QUIVER" value="" />) missed out the 0

Re: /classes/Store.lua Error

Posted: Mon Jan 24, 2011 8:21 pm
by lisa
yup that will be the problem =)

Re: /classes/Store.lua Error

Posted: Mon Jan 24, 2011 8:23 pm
by jason404
Yep it solved it, me and my foolish mistakes. Thanks for helping me point it out.