- 0
-
Activity
-
0
Arrows with another weapons
Hi all, I have a problem in game with arrows.. If I have equiped dagger or sword + arrows, just I have more dmg than without equiped arrows.. How I can change calculation dmg from equiped arrows work only with equiped bow? -
221
WorldEditor ReMIX
V40 is out! New config option LOCALE You can now translate the program UI (and also more in the future) by generating the relative WorldEditorRemix_{}.dll file. To translate the program: https://github.com/martysama0134/WorldEditorRemixTL Editing can be done by either notepad or vs editor: Result:- 5
-
-
-
31
-
31
-
31
[FIX] Fixing Metin2 memory leaks
JA JA JA... WHAT A JOKE THIS SHIT IS... I BELIEVED IT , BASTARDS!! -
1
Starting a metin2 server on a VPS ?
Login putty (FreeBSD 11.3) Write this: portsnap fetch update and portsnap fetch extract - wait 2 minutes. If you need mysql write this code: pkg install mysql56-server or you need MariaDB write this: pkg install mariadb103-server Write this code: ee /etc/rc.conf and put this code somewhere: mysql_enable="YES" Run mysql: service mysql-server start download this lib and put /usr/lib32 OR upload lib32.tar.gz to /usr/lib32 and write this: cd /usr/lib32 and tar zxf lib32.tar.gz Now upload your SF and unpack. Rewrite the con -
1
Starting a metin2 server on a VPS ?
Hey guys, i bought a VPS and i also have the server files and sources (40k). But i have no idea how to start those things, how can i do that ? thank you!! -
31
-
0
Help starting a VPS server
Hello, i'm looking for someone that can help me starting my server with the VPS and the FILES that i already have. I can also pay if needed.
-
-
Recently Browsing
No registered users viewing this page.
Question
nazox 4
#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 nazoxSolved
Nicks: Nazox™ Krone™ Nagato™ Yahiko™ Yakiro™
Proyecto: Trabajando en el.
Compañeros & firma: DreamHQ - 2009-2015 [Nostalgia]
Link to post
0 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.