Difference between revisions of "items control.txt"

From OpenKore Wiki
Jump to navigation Jump to search
Line 20: Line 20:
  
 
; <storage>
 
; <storage>
: This is a flag that controls whether Kore should store the item during auto-storage or not. See the possible flag values below. You must set [[storageAuto]] (and other related options) in config.txt or this flag has no effect.
+
: This is a flag that controls whether Kore should store the item during auto-storage or not. See the possible flag values below. You must set [[storageAuto]] (and other related options) in [[config.txt]] or this flag has no effect.
 
   
 
   
 
{|border="1" cellpadding="2" cellspacing="1"  
 
{|border="1" cellpadding="2" cellspacing="1"  
Line 39: Line 39:
  
 
; <sell>
 
; <sell>
: This is a [[References#Basic Value and Parameter Types|boolean flag]] that controls whether Kore should sell the item during auto-sell or not. You must set [[sellAuto]] (and other related options) in config.txt or this flag has no effect.  
+
: This is a [[References#Basic Value and Parameter Types|boolean flag]] that controls whether Kore should sell the item during auto-sell or not. You must set [[sellAuto]] (and other related options) in [[config.txt]] or this flag has no effect.  
  
 
'''Notes:'''  
 
'''Notes:'''  
Line 51: Line 51:
  
 
; <cart get>
 
; <cart get>
: This is a [[References#Basic Value and Parameter Types|boolean flag]] that tells if Kore should automatically get the item from your cart when the amount of that item in inventory is less than '''<minimum>'''. You must have rented a cart or this flag has no effect.  
+
: This is a [[References#Basic Value and Parameter Types|boolean flag]] that tells if Kore should automatically get the item from your cart when the amount of that item in inventory is less than '''<minimum>'''. You must have rented a cart or this flag has no effect.
 
 
  
 
== Example ==
 
== Example ==

Revision as of 10:52, 23 November 2010

The file items_control.txt allows you to automatically manage items in your inventory. If you are using storageAuto and/or sellAuto, this gives you control over which items to put in storage and which items to sell. It also has features for automatically transfering items to and from your cart.


Syntax

The format of this file is simply a set of lines that observes the following syntax:

<item name> <minimum> <storage> <sell> <cart add> <cart get>

Details


<item name>
This is the full name of an item. You can use the keyword "all" to set default options for all items.


<minimum>
This specifies the minimum amount of the item that you want to keep in inventory. This is useful for keeping a certain amount of stackable items in your inventory.

Note. You can't specify an amount other than 0 or 1 for non-stackable items (like armors). For example, you can't use this to keep 3 Knives in inventory and store or sell the rest.


<storage>
This is a flag that controls whether Kore should store the item during auto-storage or not. See the possible flag values below. You must set storageAuto (and other related options) in config.txt or this flag has no effect.
Value Description
0 Do not store this item.
1 Store items from inventory.
2 Store items from inventory and cart.


<sell>
This is a boolean flag that controls whether Kore should sell the item during auto-sell or not. You must set sellAuto (and other related options) in config.txt or this flag has no effect.

Notes:

  • If both <storage> and <sell> are set to 1, Kore will do storage first (unless storage is full) then sell.
  • Kore will not sell or store equipped items. For example, if you're using a Knife and you have a line to auto-sell all Knives, Kore will sell all Knives except for the one you are currently wielding. This also applies to the cart-transfering options.


<cart add>
This is a boolean flag that tells if Kore should automatically put the item in your cart when the amount of that item in inventory is greater than <minimum>. You must have rented a cart or this flag has no effect.


<cart get>
This is a boolean flag that tells if Kore should automatically get the item from your cart when the amount of that item in inventory is less than <minimum>. You must have rented a cart or this flag has no effect.

Example

The example below will make Kore do the following:

  • Sell all Jellopies.
  • Store all Knives.
  • Put all Flowers in cart.
  • Get Red Potions from cart if there is less than 20 Red Potions in your inventory.
Jellopy 0 0 1
Knife 0 1 0
Flower 0 0 0 1 0
Red Potion 20 0 0 0 1
All 0 1 0