21-08-2006, 10:00 AM
Well as a few of you may have noticed i am concentrating on refining what is already here and discovering what really is important to the player. Been playing spoons playerworlds game alot lately and have noticed some annoying issues, also been testing my ms i am working on to really try and find bugs you would only find if you were actively creating (developing, mapping etc) and playing your server.
Basically what this fixes is, when you click in your inventory/spells at present if you then go to walk around it will scroll through that list very fast as your using the arrow keys and its a huge pain for the player. Little bit of research done and i found just the solution for this :]
in frmMirage, add this anywhere:
Easy peasy, a small but very annoying bug that adds to the overall untideyness and unplayability of a game
Basically what this fixes is, when you click in your inventory/spells at present if you then go to walk around it will scroll through that list very fast as your using the arrow keys and its a huge pain for the player. Little bit of research done and i found just the solution for this :]
in frmMirage, add this anywhere:
Code:
Private Sub lstinv_GotFocus()
frmMirage.picScreen.SetFocus
End Sub
Private Sub lstspells_gotfocus()
frmMirage.picScreen.SetFocus
End Sub
Easy peasy, a small but very annoying bug that adds to the overall untideyness and unplayability of a game
