Thread: Customizations
View Single Post
  #6  
Unread 06-13-2007, 03:56 AM
Zonx's Avatar
Zonx Zonx is offline
A Green Troll
This person is a EQ2Map developer.
Featured
 
Join Date: Dec 2004
Server: Blackburrow
Posts: 2,221
Default Customizing Inventory

Customizing Inventory

Shrink by default

Open eq2ui_inventory_inventory.xml in NotePad.

Search for the first occurance of...
Code:
" PackLocation="
Replace with...
Code:
 Shrink.Checked=true Shrink.Activated=true" OnHide="Shrink.Checked=false Shrink.Activated=false" PackLocation="
Collapse by default

Search for the first occurance of...
Code:
" PackLocation="
Replace with...
Code:
 Collapse.Checked=true Collapse.Activated=true" OnHide="Collapse.Checked=false Collapse.Activated=false" PackLocation="
Shrink & Collapse by default

Search for the first occurance of...
Code:
" PackLocation="
Replace with...
Code:
 Shrink.Checked=true Shrink.Activated=true Collapse.Checked=true Collapse.Activated=true" OnHide="Shrink.Checked=false Shrink.Activated=false Collapse.Checked=false Collapse.Activated=false" PackLocation="
Stats by default
Search for the first occurance of...
Code:
" PackLocation="
Replace with...
Code:
 EquipmentPage.Stats.visible=true" PackLocation="
Stats + any size setting
Insert the following code befor any of the above replacements...
Code:
 EquipmentPage.Stats.visible=true
Note: With all of these replacements its important to retain leading spaces, quotes and keep everything on 1 line.
Reply With Quote