Jump to content

Exchange windows with limit yang problem


Recommended Posts

https://metin2.download/picture/xyKzYlho35ygEJbCt59jkxI4rwft4TJ4/.png

i have this bug with exchange windows when add gold and when accept the gold, 

i add more than 999.999.999.999 but only add 1.999.999.999

https://metin2.download/picture/5esag9qYJ9TPlo7F1oB3QrLDh769m08f/.png

Edited by Metin2 Dev
Core X - External 2 Internal
Link to comment
Share on other sites

  • Replies 6
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

I don't see any particular errors in the attached file. Check

def __OnValueUpdate(self):

in the uiCommon.py file.

 

It should be:

	def __OnValueUpdate(self):
		ui.EditLine.OnIMEUpdate(self.inputValue)

		text = self.inputValue.GetText()

		money = 0
		if text and text.isdigit():
			try:
				money = long(text)
			except ValueError:
				money = 199999999

		self.moneyText.SetText(self.moneyHeaderText + localeInfo.NumberToMoneyString(money))

 

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.