Best Studio 1
Best Studio
Agora Metin2 1
Agora Metin2
raderde 1
raderde
Cannn6161 1
Cannn6161
noisiv 1
noisiv
Manwe Work 1
Manwe Work
Mt2Hizmet 1
Mt2Hizmet
melankolıa18 1
melankolıa18
romegames 1
romegames
Krutzo 1
Krutzo
shrpnl 1
shrpnl
Hikaye Ekle
Reklam vermek için turkmmo@gmail.com
Kaynak ikonu

[C++,Python]Karşıdaki Kişinin HP Görme - Bar & Decimal Target HP 2020-06-19

indirmek için izniniz yok

ROHAN2 WORLD 1-120 TR TİPİ OFFICIAL YOHARA, BALATHOR VE AMON! 80. GÜNÜNDE! +10.000 ONLİNE! HİLE VE BOT %100 ENGELLİ HEMEN TIKLA!

Rica ederim.
Eksiği söylersen düzeltip konuyu güncellerim.

Uitarget.py

Kod:
	if app.ENABLE_VIEW_TARGET_DECIMAL_HP:
		def SetHP(self, hpPercentage, iMinHP, iMaxHP):
			if not self.hpGauge.IsShow():
				if app.ENABLE_VIEW_TARGET_PLAYER_HP:
					showingButtonCount = len(self.showingButtonList)
					if showingButtonCount > 0:
						if chr.GetInstanceType(self.vid) == chr.INSTANCE_TYPE_PLAYER:
							self.SetSize(max(150 + 75 * 3, showingButtonCount * 75), self.GetHeight())
						else:
							self.SetSize(200 + 7*self.nameLength, self.GetHeight())
					else:
						self.SetSize(200 + 7*self.nameLength, self.GetHeight())
				else:
					self.SetSize(200 + 7*self.nameLength, self.GetHeight())
				
				if localeInfo.IsARABIC():
					self.name.SetPosition( self.GetWidth()-23, 13)
				else:
					self.name.SetPosition(23, 13)
				
				self.name.SetWindowHorizontalAlignLeft()
				self.name.SetHorizontalAlignLeft()
				self.hpGauge.Show()
				self.UpdatePosition()
			
			self.hpGauge.SetPercentage(hpPercentage, 100)
			if app.ENABLE_VIEW_TARGET_DECIMAL_HP:
				iMinHPText = '.'.join([i - 3 < 0 and str(iMinHP)[:i] or str(iMinHP)[i-3:i] for i in range(len(str(iMinHP)) % 3, len(str(iMinHP))+1, 3) if i])
				iMaxHPText = '.'.join([i - 3 < 0 and str(iMaxHP)[:i] or str(iMaxHP)[i-3:i] for i in range(len(str(iMaxHP)) % 3, len(str(iMaxHP))+1, 3) if i])
				self.hpDecimal.SetText(str(iMinHPText) + "/" + str(iMaxHPText))
				(textWidth, textHeight)=self.hpDecimal.GetTextSize()
				if localeInfo.IsARABIC():
					self.hpDecimal.SetPosition(120 / 2 + textWidth / 2, -13)
				else:
					self.hpDecimal.SetPosition(130 / 2 - textWidth / 2, -13)
				
				self.hpDecimal.Show()
	else:
		def SetHP(self, hpPercentage):
			if not self.hpGauge.IsShow():
				if app.ENABLE_VIEW_TARGET_PLAYER_HP:
					showingButtonCount = len(self.showingButtonList)
					if showingButtonCount > 0:
						if chr.GetInstanceType(self.GetTargetVID) != chr.INSTANCE_TYPE_PLAYER:
							if showingButtonCount != 1:
								self.SetSize(max(150, showingButtonCount * 75), self.GetHeight())
							else:
								self.SetSize(max(150, 2 * 75), self.GetHeight())
						else:
							self.SetSize(200 + 7*self.nameLength, self.GetHeight())
					else:
						self.SetSize(200 + 7*self.nameLength, self.GetHeight())
				else:
					self.SetSize(200 + 7*self.nameLength, self.GetHeight())


				if localeInfo.IsARABIC():
					self.name.SetPosition( self.GetWidth()-23, 13)
				else:
					self.name.SetPosition(23, 13)


				self.name.SetWindowHorizontalAlignLeft()
				self.name.SetHorizontalAlignLeft()
				self.hpGauge.Show()
				self.UpdatePosition()
 
Uitarget.py

Kod:
    if app.ENABLE_VIEW_TARGET_DECIMAL_HP:
        def SetHP(self, hpPercentage, iMinHP, iMaxHP):
            if not self.hpGauge.IsShow():
                if app.ENABLE_VIEW_TARGET_PLAYER_HP:
                    showingButtonCount = len(self.showingButtonList)
                    if showingButtonCount > 0:
                        if chr.GetInstanceType(self.vid) == chr.INSTANCE_TYPE_PLAYER:
                            self.SetSize(max(150 + 75 * 3, showingButtonCount * 75), self.GetHeight())
                        else:
                            self.SetSize(200 + 7*self.nameLength, self.GetHeight())
                    else:
                        self.SetSize(200 + 7*self.nameLength, self.GetHeight())
                else:
                    self.SetSize(200 + 7*self.nameLength, self.GetHeight())
                
                if localeInfo.IsARABIC():
                    self.name.SetPosition( self.GetWidth()-23, 13)
                else:
                    self.name.SetPosition(23, 13)
                
                self.name.SetWindowHorizontalAlignLeft()
                self.name.SetHorizontalAlignLeft()
                self.hpGauge.Show()
                self.UpdatePosition()
            
            self.hpGauge.SetPercentage(hpPercentage, 100)
            if app.ENABLE_VIEW_TARGET_DECIMAL_HP:
                iMinHPText = '.'.join([i - 3 < 0 and str(iMinHP)[:i] or str(iMinHP)[i-3:i] for i in range(len(str(iMinHP)) % 3, len(str(iMinHP))+1, 3) if i])
                iMaxHPText = '.'.join([i - 3 < 0 and str(iMaxHP)[:i] or str(iMaxHP)[i-3:i] for i in range(len(str(iMaxHP)) % 3, len(str(iMaxHP))+1, 3) if i])
                self.hpDecimal.SetText(str(iMinHPText) + "/" + str(iMaxHPText))
                (textWidth, textHeight)=self.hpDecimal.GetTextSize()
                if localeInfo.IsARABIC():
                    self.hpDecimal.SetPosition(120 / 2 + textWidth / 2, -13)
                else:
                    self.hpDecimal.SetPosition(130 / 2 - textWidth / 2, -13)
                
                self.hpDecimal.Show()
    else:
        def SetHP(self, hpPercentage):
            if not self.hpGauge.IsShow():
                if app.ENABLE_VIEW_TARGET_PLAYER_HP:
                    showingButtonCount = len(self.showingButtonList)
                    if showingButtonCount > 0:
                        if chr.GetInstanceType(self.GetTargetVID) != chr.INSTANCE_TYPE_PLAYER:
                            if showingButtonCount != 1:
                                self.SetSize(max(150, showingButtonCount * 75), self.GetHeight())
                            else:
                                self.SetSize(max(150, 2 * 75), self.GetHeight())
                        else:
                            self.SetSize(200 + 7*self.nameLength, self.GetHeight())
                    else:
                        self.SetSize(200 + 7*self.nameLength, self.GetHeight())
                else:
                    self.SetSize(200 + 7*self.nameLength, self.GetHeight())


                if localeInfo.IsARABIC():
                    self.name.SetPosition( self.GetWidth()-23, 13)
                else:
                    self.name.SetPosition(23, 13)


                self.name.SetWindowHorizontalAlignLeft()
                self.name.SetHorizontalAlignLeft()
                self.hpGauge.Show()
                self.UpdatePosition()
Peki nasıl bir sıkıntı var onu söylersen iyi olur :smile:
 
char.cpp: In member function 'void CHARACTER::PointChange(BYTE, int, bool, bool)':
char.cpp:3225: warning: comparison between signed and unsigned integer expressions
char.cpp: In member function 'void CHARACTER::ClearTarget()':
char.cpp:5644: error: 'struct TPacketGCTarget' has no member named 'iMinHP'
char.cpp:5645: error: 'struct TPacketGCTarget' has no member named 'iMaxHP'
char.cpp: In member function 'void CHARACTER::SetTarget(CHARACTER*)':
char.cpp:5689: error: 'struct TPacketGCTarget' has no member named 'iMinHP'
char.cpp:5690: error: 'struct TPacketGCTarget' has no member named 'iMaxHP'
char.cpp:5697: error: 'struct TPacketGCTarget' has no member named 'iMinHP'
char.cpp:5698: error: 'struct TPacketGCTarget' has no member named 'iMaxHP'
char.cpp:5723: error: 'struct TPacketGCTarget' has no member named 'iMinHP'
char.cpp:5724: error: 'struct TPacketGCTarget' has no member named 'iMaxHP'
char.cpp:5731: error: 'struct TPacketGCTarget' has no member named 'iMinHP'
char.cpp:5732: error: 'struct TPacketGCTarget' has no member named 'iMaxHP'
char.cpp:5740: error: 'struct TPacketGCTarget' has no member named 'iMinHP'
char.cpp:5741: error: 'struct TPacketGCTarget' has no member named 'iMaxHP'
char.cpp:5751: error: 'struct TPacketGCTarget' has no member named 'iMinHP'
char.cpp:5752: error: 'struct TPacketGCTarget' has no member named 'iMaxHP'
char.cpp:5759: error: 'struct TPacketGCTarget' has no member named 'iMinHP'
char.cpp:5760: error: 'struct TPacketGCTarget' has no member named 'iMaxHP'
char.cpp:5771: error: 'struct TPacketGCTarget' has no member named 'iMinHP'
char.cpp:5772: error: 'struct TPacketGCTarget' has no member named 'iMaxHP'
char.cpp: In member function 'void CHARACTER::BroadcastTargetPacket()':
char.cpp:5791: error: 'struct TPacketGCTarget' has no member named 'iMinHP'
char.cpp:5792: error: 'struct TPacketGCTarget' has no member named 'iMaxHP'
char.cpp:5800: error: 'struct TPacketGCTarget' has no member named 'iMinHP'
char.cpp:5801: error: 'struct TPacketGCTarget' has no member named 'iMaxHP'
gmake: *** [OBJDIR/char.o] Error 1
gmake: *** Waiting for unfinished jobs....
 
char.cpp: In member function 'void CHARACTER::PointChange(BYTE, int, bool, bool)':
char.cpp:3225: warning: comparison between signed and unsigned integer expressions
char.cpp: In member function 'void CHARACTER::ClearTarget()':
char.cpp:5644: error: 'struct TPacketGCTarget' has no member named 'iMinHP'
char.cpp:5645: error: 'struct TPacketGCTarget' has no member named 'iMaxHP'
char.cpp: In member function 'void CHARACTER::SetTarget(CHARACTER*)':
char.cpp:5689: error: 'struct TPacketGCTarget' has no member named 'iMinHP'
char.cpp:5690: error: 'struct TPacketGCTarget' has no member named 'iMaxHP'
char.cpp:5697: error: 'struct TPacketGCTarget' has no member named 'iMinHP'
char.cpp:5698: error: 'struct TPacketGCTarget' has no member named 'iMaxHP'
char.cpp:5723: error: 'struct TPacketGCTarget' has no member named 'iMinHP'
char.cpp:5724: error: 'struct TPacketGCTarget' has no member named 'iMaxHP'
char.cpp:5731: error: 'struct TPacketGCTarget' has no member named 'iMinHP'
char.cpp:5732: error: 'struct TPacketGCTarget' has no member named 'iMaxHP'
char.cpp:5740: error: 'struct TPacketGCTarget' has no member named 'iMinHP'
char.cpp:5741: error: 'struct TPacketGCTarget' has no member named 'iMaxHP'
char.cpp:5751: error: 'struct TPacketGCTarget' has no member named 'iMinHP'
char.cpp:5752: error: 'struct TPacketGCTarget' has no member named 'iMaxHP'
char.cpp:5759: error: 'struct TPacketGCTarget' has no member named 'iMinHP'
char.cpp:5760: error: 'struct TPacketGCTarget' has no member named 'iMaxHP'
char.cpp:5771: error: 'struct TPacketGCTarget' has no member named 'iMinHP'
char.cpp:5772: error: 'struct TPacketGCTarget' has no member named 'iMaxHP'
char.cpp: In member function 'void CHARACTER::BroadcastTargetPacket()':
char.cpp:5791: error: 'struct TPacketGCTarget' has no member named 'iMinHP'
char.cpp:5792: error: 'struct TPacketGCTarget' has no member named 'iMaxHP'
char.cpp:5800: error: 'struct TPacketGCTarget' has no member named 'iMinHP'
char.cpp:5801: error: 'struct TPacketGCTarget' has no member named 'iMaxHP'
gmake: *** [OBJDIR/char.o] Error 1
gmake: *** Waiting for unfinished jobs....
game>src>packet.h eklenecek olanları eklememişsin onu ekle sorun düzelecektir.

Turkmmo Flood Engelleme

Rica ederim :smile::smile:.
 
Son düzenleme:

Şu an konuyu görüntüleyenler (Toplam : 0, Üye: 0, Misafir: 0)

Geri
Üst