Jump to content

Official Character Details


Recommended Posts

  • Honorable Member
9 hours ago, nicohare711 said:

@ Mali

@ Owsap

How can this be adapted?
https://metin2.dev/topic/30068-official-mouse-wheel-top-windowscroll-reversed/#comment-153772

for this system since it is giving me a problem, I put the loot filter and the scroll bar is damaged

''' 1. '''
# Search
	def Show(self):
		ui.ScriptWindow.Show(self)
		self.SetTop()

# Replace with
	def Show(self):
		ui.ScriptWindow.Show(self)
		self.SetTop()
		if app.__BL_MOUSE_WHEEL_TOP_WINDOW__:
			wndMgr.SetWheelTopWindow(self.hWnd)

''' 2. '''
# Search
	def RefreshLabel(self):

# Add above
	if app.__BL_MOUSE_WHEEL_TOP_WINDOW__:
		def OnMouseWheelButtonUp(self):
			if self.ScrollBar:
				self.ScrollBar.OnUp()
				return True

			return False

		def OnMouseWheelButtonDown(self):
			if self.ScrollBar:
				self.ScrollBar.OnDown()
				return True

			return False

 

  • Love 3
Link to comment
Share on other sites

  • 2 months later...
  • 2 weeks later...
9 hours ago, Raviel said:


I'm getting the same error, can anyone provide an updated link?

I've solved the problem! I simply removed the ETC files from the old archive files during the 18.4.12 update and added them to my own pack files. Everything worked smoothly after that! Big thanks to @ Mali for their help - you're an amazing person!

archive link: 

This is the hidden content, please

  • Metin2 Dev 15
  • Eyes 1
  • Good 4
  • Love 3
Link to comment
Share on other sites

  • 3 weeks later...
On 1/15/2021 at 10:49 AM, Mali said:

M2 Download Center

This is the hidden content, please
( Internal )

This is the hidden content, please
( GitHub )

 

  Reveal hidden contents

174151giphy-2-.gif

 

 

Hidden Content
  • After 3 years...

 

Hi, I have a problem. When I did everything from the tutorial I get this error. 

I don't have this file in the downloaded folders from this tutorial or from my source. Should I change the name or I messed up somewhere?

I only have this .py but this is for just testing the character details window I suppose (See in the imgur link). I tried to add it to the uiscript folder but it still crashed with the same error.

Spoiler

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

3 hours ago, Henry6767 said:

Hi, I have a problem. When I did everything from the tutorial I get this error. 

I don't have this file in the downloaded folders from this tutorial or from my source. Should I change the name or I messed up somewhere?

I only have this .py but this is for just testing the character details window I suppose (See in the imgur link). I tried to add it to the uiscript folder but it still crashed with the same error.

  Reveal hidden contents

.png

.png

Solved. I was dumb... just add this file to the uiscript folder and you are good to go.

Link to comment
Share on other sites

  • 5 months later...
  • 1 month later...
On 11/30/2021 at 8:16 PM, Giecu said:

how to fix start position details?

SS: 

 

uicharacter.py

  Reveal hidden contents

Find:

    def OnUpdate(self):
        self.__UpdateQuestClock()

Add under:

        if app.ENABLE_DETAILS_UI:
            if self.chDetailsWnd:
                self.UpdateDetailsPosition()

Find:

        def OnMoveWindow(self, x, y):
            if self.chDetailsWnd:
                self.chDetailsWnd.AdjustPosition(x, y)

 

Add under:

 

        def UpdateDetailsPosition(self):
            x, y = self.GetGlobalPosition()
            self.chDetailsWnd.SetPosition(x + 250, y)

 

 

  Reveal hidden contents

.png

Thank you. This fix is working fine.

Link to comment
Share on other sites

  • 2 weeks later...
  • Honorable Member

UPDATE:

__BL_CLIP_MASK__

__BL_MOUSE_WHEEL_TOP_WINDOW__

__BL_SMOOTH_SCROLL__

 .gif

Requirements:

Spoiler

This is the hidden content, please

Note: 

Spoiler

Renewal Version:

You definitely need __BL_CLIP_MASK__(Experimental)

If you are using another mouse wheel system, you can delete the __BL_MOUSE_WHEEL_TOP_WINDOW__ definitions

To disable __BL_SMOOTH_SCROLL__, you can set "smooth" to 0 in UIScript/Characterdetailswindow.py


 

Edited by Mali
  • Metin2 Dev 19
  • Eyes 2
  • Dislove 1
  • Good 1
  • Love 16

 

Link to comment
Share on other sites

6 hours ago, Mali said:

UPDATE:

__BL_CLIP_MASK__

__BL_MOUSE_WHEEL_TOP_WINDOW__

__BL_SMOOTH_SCROLL__

 .gif

Requirements:

  Hide contents

This is the hidden content, please

Note: 

  Hide contents

Renewal Version:

You definitely need __BL_CLIP_MASK__(Experimental)

If you are using another mouse wheel system, you can delete the __BL_MOUSE_WHEEL_TOP_WINDOW__ definitions

To disable __BL_SMOOTH_SCROLL__, you can set "smooth" to 0 in UIScript/Characterdetailswindow.py


 

Tried it, it works. Thank you.
 

 

  • Metin2 Dev 1
Link to comment
Share on other sites

  • Premium
On 12/21/2023 at 11:36 AM, Mali said:

UPDATE:

__BL_CLIP_MASK__

__BL_MOUSE_WHEEL_TOP_WINDOW__

__BL_SMOOTH_SCROLL__

 .gif

Requirements:

  Hide contents

This is the hidden content, please

Note: 

  Reveal hidden contents

Renewal Version:

You definitely need __BL_CLIP_MASK__(Experimental)

If you are using another mouse wheel system, you can delete the __BL_MOUSE_WHEEL_TOP_WINDOW__ definitions

To disable __BL_SMOOTH_SCROLL__, you can set "smooth" to 0 in UIScript/Characterdetailswindow.py


 

no errors :
spacer.png

Edited by Amsterdam
i fix it, i make the clip mask experimental, i had the normal one
  • Metin2 Dev 1
  • Scream 1
  • Love 1
Link to comment
Share on other sites

  • 3 weeks later...

I added the entire Clip Mask System.

Original SVN(All File) and Experimental SVN (Eterlib, EterPythonLib)

I'm not a newbie when it comes to adding systems. I have enough information. But I am encountering such a problem. I checked all the files and there is no missing or added code. Where do you think the mistake is? Thank you.

Image:

 

https://freeimage.host/i/2222222.JaD2oYJ

On 1/2/2024 at 11:48 AM, Filachilla said:

Have same problem with all requirements installed already.. Strange

 

How did you fix the problem? I have that same problem.

Link to comment
Share on other sites

  • 2 months later...
  • 4 weeks later...

Announcements



×
×
  • 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.