
01-06-2005, 04:47 PM
|
 |
A Griffon
|
|
Join Date: Jul 2004
Server: Everfrost
Posts: 604
|
|
Quote:
|
Originally Posted by sunthas
So your bag is 2 slots vertical and works its way to the right as we add more slots?
/edit: I have so much to learn.
Code:
<Icon BackgroundTint="#000000" IconStyle="/IconStyles.examine" Location="4,20" MouseOverColor="#FFFF00" Name="Slot 0" ScrollExtent="42,42" Size="42,42" TreatAsButton="true" />
<Icon BackgroundTint="#000000" IconStyle="/IconStyles.examine" Location="46,20" MouseOverColor="#FFFF00" Name="Slot 1" ScrollExtent="42,42" Size="42,42" TreatAsButton="true" />
<Icon BackgroundTint="#000000" IconStyle="/IconStyles.examine" Location="88,20" MouseOverColor="#FFFF00" Name="Slot 2" ScrollExtent="42,42" Size="42,42" TreatAsButton="true" />
<Icon BackgroundTint="#000000" IconStyle="/IconStyles.examine" Location="130,20" MouseOverColor="#FFFF00" Name="Slot 3" ScrollExtent="42,42" Size="42,42" TreatAsButton="true" />
<Icon BackgroundTint="#000000" IconStyle="/IconStyles.examine" Location="4,62"
it looks to me like this bag is
0, 1, 2, 3,
4, 5, 6, 7,
8, 9, x, x+1,
I want the bag to work like this
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, x, x+1, x+2, ..., x+n
|
Yes it adds room for 2 more slots every time it needs it..
The rest of the message makes no sense to me..
You're trying to layout a bag that is 10x2 and adds the second row when needed?
edit: changed 12x2 to 10x2 
Last edited by Talyns : 01-06-2005 at 04:58 PM.
|