28-05-2007, 03:11 PM
Well, I noticed that in the unedited MS, when you use/drop an item using the picInventory, it always goes back to the beginning. That can be very annoying if you have a very full inventory.
So, I made a little fix:
In modGameLogic, find:
Then, under Dim i as long, add:
Then, before:
Add:
Then, right before End Sub, change
To:
That will save your place in the picInventory.
If you have any problems, please tell me.
So, I made a little fix:
In modGameLogic, find:
Code:
Public Sub UpdateInventory()
Then, under Dim i as long, add:
Code:
Dim Place
Then, before:
Code:
frmMirage.lstInv.Clear
Add:
Code:
Place = frmMirage.lstInv.ListIndex
Then, right before End Sub, change
Code:
frmMirage.lstInv.ListIndex = "0"
To:
Code:
frmMirage.lstInv.ListIndex = Place
That will save your place in the picInventory.
If you have any problems, please tell me.