Difference between revisions of "OgreOther:InventoryManager"

From ISXOgre
Jump to: navigation, search
(Inventory Manager)
Line 1: Line 1:
 
== Inventory Manager ==  
 
== Inventory Manager ==  
 
----
 
  
 
['''I''']nventory ['''M''']anager (known as IM) is a collection of scripts to help manage inventories.
 
['''I''']nventory ['''M''']anager (known as IM) is a collection of scripts to help manage inventories.
Line 8: Line 6:
 
* Junk selling - [Not completed] - Able to maintain a list (in-game) where it will automatically sell anything deemed as junk. Able to examine to auto-add.
 
* Junk selling - [Not completed] - Able to maintain a list (in-game) where it will automatically sell anything deemed as junk. Able to examine to auto-add.
 
* Broker depot - [Not completed] - Able to maintain a list (in-game) to which items you want to go in each broker bag.
 
* Broker depot - [Not completed] - Able to maintain a list (in-game) to which items you want to go in each broker bag.
 +
 +
----
  
 
== Trading ==
 
== Trading ==
Line 36: Line 36:
 
*** ogre im -e 1
 
*** ogre im -e 1
 
**** Trades 1 "stack" of what ever you have currently examined, to your current target.
 
**** Trades 1 "stack" of what ever you have currently examined, to your current target.
 +
 +
----

Revision as of 17:52, 18 October 2011

Inventory Manager

[I]nventory [M]anager (known as IM) is a collection of scripts to help manage inventories.

  • Trading - Advanced trading script. See below for more information.
  • Junk selling - [Not completed] - Able to maintain a list (in-game) where it will automatically sell anything deemed as junk. Able to examine to auto-add.
  • Broker depot - [Not completed] - Able to maintain a list (in-game) to which items you want to go in each broker bag.

Trading

There are 2 methods to using the trading script.

  • Console commands
  • In-game UI [Not completed]


Console Commands

  • Trading
    • Added command line parameters that will bypass the UI from loading.
      • -e | -examine
        • Will trade the examined item.
      • -i <text> | -item <text>
        • Will trade any items containing the text. Example: -item adept -item master would trade ALL adepts AND masters. Special note: anything with spaces MUST be enclosed in quotes. Example: -item "big heavy rock"
      • -t <toonname> | -target <toonname>
        • Will trade the items to the toonname listed. If omitted, uses your current target.
      • #
        • Will trade this many items TOTAL. If this is omitted, it will trade all of them. Example: If you had 8 adepts, and 500 masters, and you did 10, it would trade 10 items total. (There's no way to tell which items would be counted first, since it's based on an internal EQ2 array).
        • No prefix required, and can be anywhere in the parameters. Example: -item adept 10 -item master would work fine.
    • Examples:
      • ogre im -item arrow -target toonname 20
        • Trades 20 stacks of "arrows" to toonname
      • ogre im -i arrow -t toonname 20
        • Trades 20 stacks of "arrows" to toonname (same as above, just using the abbrev versions)
      • ogre im -i master -i adept
        • Trades all your masters and adepts to your current target
      • ogre im -e 1
        • Trades 1 "stack" of what ever you have currently examined, to your current target.