Client Sysser.txt

Stare
Nu este deschis pentru răspunsuri viitoare.

Abra20000525

Active member
8 Iun 2020
96
104
33
23
hungary
Monede Dragon
0
does anyone know 1 solution for this?
This is what the full Client sysser.


0322 12:16:09487 :: Traceback (most recent call last):

0322 12:16:09487 :: File "uiCharacter.py", line 803, in OnUpdate

0322 12:16:09487 :: File "uiCharacter.py", line 748, in __UpdateQuestClock

0322 12:16:09487 :: TypeError
0322 12:16:09487 :: :
0322 12:16:09487 :: 'NoneType' object has no attribute '__getitem__'
0322 12:16:09487 ::
 
hi, search in game.py ( root)

Cod:
def BINARY_Highlight_Item(self, inven_type, inven_pos):
        self.interface.Highligt_Item(inven_type, inven_pos)

and replace with

Cod:
def BINARY_Highlight_Item(self, inven_type, inven_pos):
        if self.interface:
            self.interface.Highligt_Item(inven_type, inven_pos)
 
Stare
Nu este deschis pentru răspunsuri viitoare.