Jump to content

Recommended Posts

Sometimes when I click on a player this appears Does not appear the group and friends and whisper and feelings
https://metin2.download/picture/7tR4Wjm0aJg368UqSF70qdD14coJ4HL4/.png

I suspect that the error is in this code
 

	if app.ENABLE_ELEMENT_ADD:
		if app.ENABLE_VIEW_TARGET_DECIMAL_HP:
			def SetHPTargetBoard(self, vid, hpPercentage, iMinHP, iMaxHP, element):
				if vid != self.targetBoard.GetTargetVID():
					self.targetBoard.ResetTargetBoard()
					self.targetBoard.SetEnemyVID(vid)

				self.targetBoard.SetHP(hpPercentage, iMinHP, iMaxHP)
				self.targetBoard.SetElementImage(element)
				self.targetBoard.Show()
		else:
			def SetHPTargetBoard(self, vid, hpPercentage, element):
				if self.interface.IsHideUiMode == True:
					return

				if vid != self.targetBoard.GetTargetVID():
					self.targetBoard.ResetTargetBoard()
					self.targetBoard.SetEnemyVID(vid)

				self.targetBoard.SetHP(hpPercentage)
				self.targetBoard.SetElementImage(element)
				self.targetBoard.Show()
	else:
		if app.ENABLE_VIEW_TARGET_DECIMAL_HP:
			def SetHPTargetBoard(self, vid, hpPercentage, iMinHP, iMaxHP):
				if vid != self.targetBoard.GetTargetVID():
					self.targetBoard.ResetTargetBoard()
					self.targetBoard.SetEnemyVID(vid)

				self.targetBoard.SetHP(hpPercentage, iMinHP, iMaxHP)
				self.targetBoard.Show()
		else:
			def SetHPTargetBoard(self, vid, hpPercentage):
				if vid != self.targetBoard.GetTargetVID():
					self.targetBoard.ResetTargetBoard()
					self.targetBoard.SetEnemyVID(vid)

				self.targetBoard.SetHP(hpPercentage)
				self.targetBoard.Show()

		def SetHPTargetBoard(self, vid, hpPercentage):
			if self.interface.IsHideUiMode == True:
				return

			if vid != self.targetBoard.GetTargetVID():
				self.targetBoard.ResetTargetBoard()
				self.targetBoard.SetEnemyVID(vid)

			self.targetBoard.SetHP(hpPercentage)
			self.targetBoard.Show()



I don't know if this is true or not
I hope for a solution, thank you
 

 

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

  • Replies 0
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

Popular Days

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • 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.