Thread: Bag test
View Single Post
  #7  
Unread 01-06-2005, 04:15 PM
sunthas sunthas is offline
A Griffon
Interface Author - Click to view interfaces
 
Join Date: Dec 2004
Server: Unrest
Posts: 306
Default

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

Last edited by sunthas : 01-06-2005 at 04:26 PM.
Reply With Quote