Jump to content

Recommended Posts

Hello a quick question,

how do I let the characters in selectinterface show one by one and not all at once?

Screen:https://metin2.download/picture/r3F9504x09DVmF8K988YXgTtGTP6KMUj/.gif

I appreciate your help!

Edited by Metin2 Dev
Core X - External 2 Internal
Link to comment
https://metin2.dev/topic/8136-python-selectinterface/
Share on other sites

Found it out

for those ppl who ask the same question, here the solution.!

Open introselect.py and search for

SLOT_ROTATION = [135.0, 225.0, 315.0, 45.0]

now edit it to

SLOT_ROTATION = [51.0, 102.0, 153.0, 204.0]

In the same File look for the def Onupdate Funktion and add at the end of it:

			distance = 50.0
			rotRadian = self.curRotation[i] * (math.pi*2) / 360.0
			if self.slot == i:
				x = 0
			elif i == self.slot - 1:
				x = 200
			elif i == self.slot - 2:
				x = 400
			elif i == self.slot - 3:
				x = 600
			elif i == self.slot + 1:
				x = -200
			elif i == self.slot + 2:
				x = -400
			elif i == self.slot + 3:
				x = -600
			y = 0			
			
			chr.SetPixelPosition(int(x), int(y), 30)

If you still can see the other Characters, just edit the line "chr.SetPixelPosition(int(x), int(y), 30)" to "chr.SetPixelPosition(int(x) *2, int(y), 30

You are fucking Welcome. Thanks to mrapc from epvp@

Edited by .Arno
  • Love 1
Link to comment
https://metin2.dev/topic/8136-python-selectinterface/#findComment-50511
Share on other sites

Don't use any images from : imgur, turkmmop, freakgamers, inforge, hizliresim... Or your content will be deleted without notice...
Use : https://metin2.download/media/add/

Please use https://metin2.download/ when uploading files smaller than 100MB, otherwise the approval will take longer due to manual upload.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • 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.