Sysser!

06/04/2016 16:24 1stAntonio#1
i delete all Dragon soul system from client and cant wear items by clicks from mouse
My sysser:
0604 18:22:27118 :: File "ui.py", line 1478, in OnUnselectItemSlot

0604 18:22:27118 :: File "ui.py", line 87, in __call__

0604 18:22:27118 :: File "ui.py", line 78, in __call__

0604 18:22:27118 :: File "uiInventory.py", line 1208, in UseItemSlot

0604 18:22:27118 :: AttributeError
0604 18:22:27118 :: :
0604 18:22:27118 :: 'module' object has no attribute 'GET_ITEM_DROP_QUESTION_DIALOG_STATUS'
0604 18:22:27118 ::
06/04/2016 16:58 Poccix#2
You need to add "GET_ITEM_DROP_QUESTION_DIALOG_STATUS" to locale_interface.txt orlocale_game.txt
06/04/2016 17:10 1stAntonio#3
Unpack locale_**.eix/epk and open locale_game.txt and in th end of text add this GET_ITEM_DROP_QUESTION_DIALOG_STATUS ?

I do this-But i again this errir in sysser and i canr wear item!
06/04/2016 17:16 DasSchwarzeT#4
Quote:
Originally Posted by 1stAntonio View Post
Unpack locale_**.eix/epk and open locale_game.txt and in th end of text add this GET_ITEM_DROP_QUESTION_DIALOG_STATUS ?

I do this-But i again this errir in sysser and i canr wear item!
add this to your constInfo.py

Code:
isItemDropQuestionDialog = 0

def GET_ITEM_DROP_QUESTION_DIALOG_STATUS():
	global isItemDropQuestionDialog
	return isItemDropQuestionDialog

def SET_ITEM_DROP_QUESTION_DIALOG_STATUS(flag):
	global isItemDropQuestionDialog
	isItemDropQuestionDialog = flag
06/04/2016 18:08 1stAntonio#5
Thank you man!