Not : İndirdiğiniz linkteki .tgaları ister etc.epk atın ister root.epk de bir ymir work/ui klasörü kurup onun içine atın .xmlyi kodlarını eklemeyi unutmayın.
link : chromdne indiremeyen explorerden denesin.
Ziyaretçiler için gizlenmiş link,görmek için üye olmalısınız!
Giriş yap veya üye ol.
virus total :
Ziyaretçiler için gizlenmiş link,görmek için üye olmalısınız!
Giriş yap veya üye ol.
Game.py açın bu kısmı bulun
Kod:
class GameWindow ( ui . ScriptWindow ): def __init__ ( self , stream ): ui . ScriptWindow . __init__ ( self , "GAME" ) self . SetWindowName ( "game" ) net . SetPhaseWindow ( net . PHASE_WINDOW_GAME , self ) player . SetGameWindow ( self ) self . quickSlotPageIndex = 0 self . lastPKModeSendedTime = 0 self . pressNumber = None self . guildWarQuestionDialog = None self . interface = None self . targetBoard = None self . console = None self . mapNameShower = None self . affectShower = None self . playerGauge = None self . petInventoryWnd = None self . petButtonWnd = None self . stream = stream self . interface = interfaceModule . Interface () self . interface . MakeInterface () self . interface . ShowDefaultWindows () self . curtain = uiPhaseCurtain . PhaseCurtain () self . curtain . speed = 0.03 self . curtain . Hide () self . targetBoard = uiTarget . TargetBoard () self . targetBoard . SetWhisperEvent ( ui . __mem_func__ ( self . interface . OpenWhisperDialog )) self . targetBoard . Hide () self . console = consoleModule . ConsoleWindow () self . console . BindGameClass ( self ) self . console . SetConsoleSize ( wndMgr . GetScreenWidth (), 200 ) self . console . Hide ()[/FONT]
ve altına bu kodu ekleyin
Kod:
##START_KILLGUI KillGuiBg = ui.ImageBox() KillGuiBg.LoadImage("d:/ymir work/ui/v1.dds") self.KillGuiBg = KillGuiBg self.KillGuiBg.SetPosition(-166,465) self.KillGuiBg.Show() self.KillGuiBg_open = ui.Button() self.KillGuiBg_open.SetPosition(+11,570) self.KillGuiBg_open.SetUpVisual('d:/ymir work/ui/abrir_kg.tga') self.KillGuiBg_open.SetOverVisual('d:/ymir work/ui/abrir_raton_kg.tga') self.KillGuiBg_open.SetDownVisual('d:/ymir work/ui/abrir_pulsado_kg.tga') self.KillGuiBg_open.SetEvent(self.__OpenKillGui) self.KillGuiBg_open.Show() self.KillGuiBg_close = ui.Button() self.KillGuiBg_close.SetPosition(+178,570) self.KillGuiBg_close.SetUpVisual('d:/ymir work/ui/cerrar_kg.tga') self.KillGuiBg_close.SetOverVisual('d:/ymir work/ui/cerrar_raton_kg.tga') self.KillGuiBg_close.SetDownVisual('d:/ymir work/ui/cerrar_pulsado_kg.tga') self.KillGuiBg_close.SetEvent(self.__CloseKillGui) self.KillGuiBg_close.Hide() self.KillBlauReich = ui.TextLine() self.KillBlauReich.SetDefaultFontName() self.KillBlauReich.SetPosition(40,535) self.KillBlauReich.SetText("Jinno: ") self.KillBlauReich.SetFontColor(253,250,5) self.KillBlauReich.SetOutline() #self.KillBlauReich.SetEvent(self.__KillBlauReich) self.KillBlauReich.Hide() self.KillGelbReich = ui.TextLine() self.KillGelbReich.SetDefaultFontName() self.KillGelbReich.SetPosition(40, 565) self.KillGelbReich.SetText("Chunjo: ") self.KillGelbReich.SetFontColor(17,5,253) self.KillGelbReich.SetOutline() #self.KillGelbReich.SetEvent(self.__KillGelbReich) self.KillGelbReich.Hide() self.KillRotReich = ui.TextLine() self.KillRotReich.SetDefaultFontName() self.KillRotReich.SetPosition(40, 595) self.KillRotReich.SetText("Shinsoo: ") self.KillRotReich.SetFontColor(50,0,0) self.KillRotReich.SetOutline() #self.KillRotReich.SetEvent(self.__KillRotReich) self.KillRotReich.Hide() self.KillMob = ui.TextLine() self.KillMob.SetDefaultFontName() self.KillMob.SetPosition(40, 625) self.KillMob.SetText("Mounstruos: ") self.KillMob.SetOutline() #self.KillMob.SetEvent(self.__KillMob) self.KillMob.Hide()
sonra bu kodu bulun
Kod:
app.HideCursor()
ve altına bunu ekleyin
Kod:
self.KillGuiBg.Hide() self.KillBlauReich.Hide() self.KillGelbReich.Hide() self.KillRotReich.Hide() self.KillMob.Hide() self.KillGuiBg_close.Hide()
bu kodu bulun
Kod:
self.interface.BUILD_OnUpdate()
Altına bunu ekleyin
Kod:
def __hidekillgui(self): self.KillGuiBg.Hide() self.KillBlauReich.Hide() self.KillGelbReich.Hide() self.KillRotReich.Hide() self.KillMob.Hide() def __showkillgui(self): self.KillGuiBg.Show() self.KillBlauReich.Show() self.KillGelbReich.Show() self.KillRotReich.Show() self.KillMob.Show() def __KillBlauReich(self, KillBlauReich): self.KillBlauReich.SetText("Jinno: " + KillBlauReich) def __KillGelbReich(self, KillGelbReich): self.KillGelbReich.SetText("Chunjo: " + KillGelbReich) def __KillRotReich(self, KillRotReich): self.KillRotReich.SetText("Shinsoo: " + KillRotReich) def __KillMob(self, KillMob): self.KillMob.SetText("Monster: " + KillMob) def __OpenKillGui(self): self.KillGuiBg_open.Hide() self.KillBlauReich.Show() self.KillGelbReich.Show() self.KillRotReich.Show() self.KillMob.Show() self.KillGuiBg.SetPosition(+1,465) self.KillGuiBg_close.Show() def __CloseKillGui(self): self.KillGuiBg_close.Hide() self.KillBlauReich.Hide() self.KillGelbReich.Hide() self.KillRotReich.Hide() self.KillMob.Hide() self.KillGuiBg.SetPosition(-166,465) self.KillGuiBg_open.Show()
bu kodu bulun
Kod:
# ITEM_MALL "CloseMall": self.CommandCloseMall, "ShowMeMallPassword": self.AskMallPassword, "item_mall": self.__ItemMall_Open, # END_OF_ITEM_MALL
altına bunu ekleyin
Kod:
##KILLGUI "ShowKillGui": self.__showkillgui, "HideKillGui": self.__hidekillgui, "KillBlauReich": self.__KillBlauReich, "KillGelbReich": self.__KillGelbReich, "KillRotReich": self.__KillRotReich, "KillMob": self.__KillMob, ##END_KILLGUI
Ve Quest masaüstüne metin belgesi oluşturun içine kaydedin ve adını killgui.quest yapın ve
Fİlezillayı Açıp Login Olun
/usr/game/share/locale/turkey/quest
killgui.quest'tı buraya atın sonra
putty'den login olup
cd /usr/game/share/locale/turkey/quest yazıp
./qc kill_gui.lua yazıp enterleyin sonra oyunda reload q çekin gm iseniz eğer değilseniz reboot çekin
Kod:
quest killgui begin state start begin when kill begin if npc.is_pc() then local new_point = pc.getqf("empire"..npc.get_empire())+1 pc.setqf("empire"..npc.get_empire(), new_point) cmdchat("KillRotReich "..pc.getqf("empire1")) cmdchat("KillGelbReich "..pc.getqf("empire2")) cmdchat("KillBlauReich "..pc.getqf("empire3")) else local new_point = pc.getqf("mob")+1 pc.setqf("mob", new_point) cmdchat("KillMob "..pc.getqf("mob")) end end when login begin cmdchat("KillRotReich "..pc.getqf("empire1")) cmdchat("KillGelbReich "..pc.getqf("empire2")) cmdchat("KillBlauReich "..pc.getqf("empire3")) cmdchat("KillMob "..pc.getqf("mob")) end end end
Kill_Gui [Yeni Tasarım]: Metin2 Client Tasarımlarında Devrim!
Metin2 dünyasında client tasarımları, oyuncuların deneyimini doğrudan etkileyen önemli bir özelliktir. Özellikle PvP odaklı sunucularda, kullanıcı arayüzü (GUI) ne kadar şık ve işlevsel olursa, oyun içi performans ve deneyim de o kadar artar. Bu noktada karşımıza çıkan Kill_Gui adlı yeni tasarım, hem estetik hem de kullanıcı dostu yapısıyla dikkat çekiyor. Bu yazıda, Kill_Gui'nin yeni tasarımı üzerinden Metin2 client paketlerindeki gelişmeleri ele alacağız.
Kill_Gui Nedir?
Kill_Gui, Metin2 oyununda kullanıcı arayüzünü yeniden şekillendirmeyi amaçlayan bir GUI sistemidir. Klasik Metin2 arayüzünün sınırlamalarını aşmak için geliştirilmiş, özellikle PvP sunucularında tercih edilen bir çözümdür. Yeni tasarımla birlikte, kullanıcılar artık daha modern, sade ve aynı zamanda özelleştirilebilir bir arayüzle karşılaşmaktadır.
Kill_Gui'nin Özellikleri
Kill_Gui, sadece estetik değil aynı zamanda işlevsellik açısından da güçlü bir yapı sunar:
- Modern ve sade arayüz tasarımı
- Hızlı erişim menüleri
- Görsel efektlerle desteklenmiş sistem
- Kolay kurulum ve entegrasyon
- PvP odaklı yapılandırılmış sistem
Neden Kill_Gui Kullanmalısınız?
Oyuncular için arayüz, sadece estetik bir unsur değil aynı zamanda oyun performansını da doğrudan etkileyen kritik bir bileşendir. Kill_Gui sayesinde:
- Oyun içi işlemler daha hızlı ve kolay hale gelir.
- PvP mücadelelerinde daha net ve hızlı karar verme imkanı sunar.
- Görsel yorgunluğu azaltarak uzun süreli oyun deneyimini geliştirir.
Metin2 Client ve Pack Sistemleriyle Uyumlu Olması
Kill_Gui, birçok farklı Metin2 client ve pack[/CRCOLOR] sistemiyle uyumlu çalışmaktadır. Bu sayede kullanıcılar, mevcut sistemlerine kolayca entegre edebilirler. Özellikle Metin2 PvP client kullanıcıları tarafından tercih edilmektedir. Kill_Gui, hem Metin2 client dosyaları üzerinde değişiklik yapmayı kolaylaştırır hem de pack açma süreçlerini daha sade hale getirir.
Kurulum ve Entegrasyon
Kill_Gui kurulumu oldukça basittir. Genellikle bir client patch veya client yama süreciyle entegre edilebilir. Bu işlem sırasında dikkat edilmesi gereken bazı teknik detaylar vardır. Öncelikle Metin2 client dosyaları doğru şekilde yedeklenmelidir. Daha sonra, Kill_Gui dosyaları uygun klasörlere yerleştirilerek kurulum tamamlanabilir. Bu tür işlemleri yaparken Metin2 client fix araçlarından da faydalanılabilir.
Güncellemeler ve Geliştirmeler
Kill_Gui sürekli olarak geliştirilmeye devam ediyor. Her yeni sürümde daha fazla özellik, daha iyi performans ve daha sade bir kullanım sunuluyor. Bu nedenle kullanıcıların güncel sürümleri takip etmesi önemlidir. Metin2 client güncelleme süreçleri sırasında Kill_Gui de kolayca entegre edilebilir.
Sonuç
Kill_Gui, Metin2 kullanıcıları için yenilikçi ve işlevsel bir arayüz çözümüdür. Özellikle PvP sunucularında yüksek performans ve estetik bir arayüz isteyen oyuncular için idealdir. Metin2lobby.com olarak, Kill_Gui gibi yenilikçi sistemleri kullanıcılarımızla paylaşmaya devam edeceğiz.
Kill_Gui [New Design]: Revolution in Metin2 Client Designs!
In the world of Metin2, client designs are a crucial feature that directly affects the gaming experience of players. Especially on PvP-focused servers, the more stylish and functional the user interface (GUI) is, the higher the in-game performance and experience become. At this point, the newly designed Kill_Gui stands out with its aesthetic and user-friendly structure. In this article, we will discuss developments in Metin2 client packs through the lens of Kill_Gui's new design.
What is Kill_Gui?
Kill_Gui is a GUI system designed to reshape the user interface in Metin2 game. Developed to overcome the limitations of the classic Metin2 interface, it is a preferred solution especially for PvP servers. With the new design, users now encounter a more modern, clean, and customizable interface.
Features of Kill_Gui
Kill_Gui offers a strong structure both aesthetically and functionally:
- Modern and clean UI design
- Quick access menus
- System supported by visual effects
- Easy installation and integration
- PvP-oriented structured system
Why Should You Use Kill_Gui?
For players, the interface is not only an aesthetic element but also a critical component that directly impacts gaming performance. With Kill_Gui:
- In-game operations become faster and easier.
- It provides clearer and quicker decision-making during PvP battles.
- Reduces visual fatigue and enhances long-term gaming experience.
Compatibility with Metin2 Client and Pack Systems
Kill_Gui works compatibly with many different Metin2 client and pack[/CRCOLOR] systems. This allows users to easily integrate it into their existing systems. It is particularly favored by Metin2 PvP client users. Kill_Gui makes modifications on Metin2 client files easier and simplifies the process of extracting packs.
Installation and Integration
Installing Kill_Gui is quite simple. It can generally be integrated via a client patch or client patching process. During this process, some technical details must be considered. First, Metin2 client files should be properly backed up. Then, Kill_Gui files can be placed in appropriate folders to complete the installation. Tools like Metin2 client fix can be used during such processes.
Updates and Improvements
Kill_Gui continues to be developed constantly. Each new version introduces more features, better performance, and a simpler usage experience. Therefore, it is important for users to keep track of the latest versions. During Metin2 client updates, Kill_Gui can be easily integrated as well.
Conclusion
Kill_Gui is an innovative and functional UI solution for Metin2 users. It is ideal for players seeking high performance and aesthetic interfaces, especially on PvP servers. As Metin2lobby.com, we will continue sharing innovative systems like Kill_Gui with our users.
