-
Activity
-
1
-
22
Paid Service - Metin2 Systems
The stripped version of the Premium Offline Shop is now available. More information on website. -
40
-
1
TXT File To Lower Case [Phaselis Map Works]
for py users import os # function to rename files def rename_files(path): for dirpath, dirnames, filenames in os.walk(path): for filename in filenames: # check if filename contains uppercase characters if any(c.isupper() for c in filename): # rename file to lowercase os.rename(os.path.join(dirpath, filename), os.path.join(dirpath, filename.lower())) # enter the path of the directory to rename files path = input("Enter directory path: ") rename_files(path) print("All files have been renamed to lowercase.") -
1
-
0
Looking for a Tehnician
Hello! i have my server files but i need a technician to continue the work i started with another man. I have all the necessary systems, I just need to add the drop, check the systems and possible bugs, changes in Game play and so on. I would like to know if it is possible to have a long-term collaboration and if you can help me. The last technician was not serious and left me with the unfinished server. Thank you! discord: Alexannder#9089 -
40
-
40
-
40
Upgraded Reference (TMP4 Base) By Ulthar
exactly! proves: just check the difference in the size of the files when I compare the game that came inside the FTP.rar that is working and when I compile a new one using the files inside the ulthar_sf_13.1.vdi
-
-
Recently Browsing
- No registered users viewing this page.
Question
nazox 125
#Solved
Next I will explain how to fix the problem in case someone else happens to you.
The first, the problem happens, when you have implemented the bonus table system like the official one and you try to install the quest category system. This creates a conflict with a few lines in the uiCharacter.py file and does not allow us to open the character tab, and when you correct it, it only lets us see the missions section and not the bonuses.
1.Before implementing the system. (working great)
2.After implementing the system, what is selected in red doesn't appear. (have some problems with BTN, extend, etc, but category system work)
3.Fix ALL
Okey, once the whole system is implemented, we go to uiCharacter.py and search:
https://metin2.dev/bin/?376af1d0f05c9a1a#7TGdJcgxWUZRLXrH2xy3BUHUe26adtrm44Ms6Mromhq1
The problem is that it creates a conflict with the mainboard, expandbtn, minimizeBTN lines and the defs initcharacterdetails, etc.
The solution is to move the bonus table system higher like the official, so delate this:
self.MainBoard = self.GetChild("board")
self.ExpandBtn = ui.MakeButton(self.MainBoard, 240, 120, "", "d:/ymir work/ui/game/belt_inventory/", "btn_minimize_normal.tga", "btn_minimize_over.tga", "btn_minimize_down.tga")
self.ExpandBtn.SetEvent(ui.__mem_func__(self.__ClickExpandButton))
self.MinimizeBtn = ui.MakeButton(self.MainBoard, 240, 120, "", "d:/ymir work/ui/game/belt_inventory/", "btn_expand_normal.tga", "btn_expand_over.tga", "btn_expand_down.tga")
self.MinimizeBtn.SetEvent(ui.__mem_func__(self.__ClickMinimizeButton))
and now, search:
self.activeSkillGroupName = self.GetChild("Active_Skill_Group_Name")
and paste this:
self.MainBoard = self.GetChild("board")
self.ExpandBtn = ui.MakeButton(self.MainBoard, 240, 120, "", "d:/ymir work/ui/game/belt_inventory/", "btn_minimize_normal.tga", "btn_minimize_over.tga", "btn_minimize_down.tga")
self.ExpandBtn.SetEvent(ui.__mem_func__(self.__ClickExpandButton))
self.MinimizeBtn = ui.MakeButton(self.MainBoard, 240, 120, "", "d:/ymir work/ui/game/belt_inventory/", "btn_expand_normal.tga", "btn_expand_over.tga", "btn_expand_down.tga")
self.MinimizeBtn.SetEvent(ui.__mem_func__(self.__ClickMinimizeButton))
it has to look like this:
and working all now.
Thanks.
Edited by Metin2 DevCore X - External 2 Internal
Nicks: Nazox™ Krone™ Nagato™ Yahiko™ Yakiro™
Proyecto: Trabajando en el.
Compañeros & firma: DreamHQ - 2009-2015 [Nostalgia]
Link to comment
Share on other sites
Top Posters For This Question
1
Popular Days
Nov 25
1
Top Posters For This Question
nazox 1 post
Popular Days
Nov 25 2020
1 post
Popular Posts
nazox
Simple Notice! #Solved Next I will explain how to fix the problem in case someone else happens to you. The first, the problem happens, when you have implemented the bonu
0 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now