Some clients have a bug like my client had. You want to drop an item
from your inventory, the drop dialog appears but you press the
ESC button. Now you can't click on any item from your inventory.
[FIX]
1. open game.py
2. search for: def OnKeyDown(self, key):
3. Paste the following code under the first if clause:
Code:
if key == app.DIK_ESC: self.RequestDropItem(False) constInfo.SET_ITEM_QUESTION_DIALOG_STATUS(0)






