Jump to content

Official Character Select


SorinSmon

Recommended Posts

  • Bronze

M2 Download Center

This is the hidden content, please
( Internal )

I know many people like me come here or try to find in another forums this select new character official.. and is just a part or is incomplete.. but i find a full version and i come here to reupload. so GL on servers.

 

 

1937099iSP59J.png

 

For make large description on characters / kingdoms:
Check change BOX_VISIBLE_LINE_COUNT from 5 to 14 in PythonEventManager.h
Thanks @Lajk

 

Download:

This is the hidden content, please

 

  • Metin2 Dev 218
  • Eyes 4
  • Dislove 1
  • Angry 7
  • Not Good 1
  • Sad 2
  • Cry 1
  • Smile Tear 3
  • Think 2
  • Confused 7
  • Scream 3
  • Lmao 1
  • Good 69
  • Love 14
  • Love 120
Link to comment
Share on other sites

Hi thanks for release 

 

i try install all work good but wen a create a new character and chose the kingdom windows comes black and get stuk and on syserro a get a menssagem 

 

Spoiler

0208 23:04:26324 :: Traceback (most recent call last):

0208 23:04:26325 ::   File "uiPhaseCurtain.py", line 61, in OnUpdate

0208 23:04:26325 ::   File "networkModule.py", line 147, in __ChangePhaseWindow

0208 23:04:26325 ::   File "introEmpire.py", line 91, in Close

0208 23:04:26326 :: AttributeError
0208 23:04:26326 :: : 
0208 23:04:26326 :: 'NoneType' object has no attribute 'Hide'
0208 23:04:26326 :: 

mabe someting i do wrong ?

 

 

 

 

Edit solved

go to 

 

introEmpire.py on root

and finde 

Spoiler

	def Close(self):
		print "---------------------------------------------------------------------------- CLOSE EMPIRE WINDOW"		

		self.ClearDictionary()
		self.leftButton = None
		self.rightButton = None
		self.selectButton = None
		self.exitButton = None
		self.textBoard = None
		self.descriptionBox = None
		self.empireArea = None
		self.empireAreaButton = None

		self.KillFocus()
		self.Hide()
		self.descriptionBox.Hide()

inside delet 

        self.descriptionBox.Hide()

and done for my work 

 

Edited by baneme22
Link to comment
Share on other sites

  • Bronze
33 minutes ago, baneme22 said:

Hi thanks for release 

 

i try install all work good but wen a create a new character and chose the kingdom windows comes black and get stuk and on syserro a get a menssagem 

 

  Hide contents

0208 23:04:26324 :: Traceback (most recent call last):

0208 23:04:26325 ::   File "uiPhaseCurtain.py", line 61, in OnUpdate

0208 23:04:26325 ::   File "networkModule.py", line 147, in __ChangePhaseWindow

0208 23:04:26325 ::   File "introEmpire.py", line 91, in Close

0208 23:04:26326 :: AttributeError
0208 23:04:26326 :: : 
0208 23:04:26326 :: 'NoneType' object has no attribute 'Hide'
0208 23:04:26326 :: 

mabe someting i do wrong ?

just delete 

Quote

self.descriptionBox.Hide()

 

Edited by SorinSmon
  • Love 1
Link to comment
Share on other sites

  • 3 months later...
  • 1 year later...
  • Bronze

After install this i have this errors someone can help me?


 

0224 13:04:07179 :: Traceback (most recent call last):

0224 13:04:07180 ::   File "introSelect.py", line 554, in <lambda>

0224 13:04:07180 ::   File "introSelect.py", line 1099, in OverInButton

0224 13:04:07180 :: TypeError
0224 13:04:07180 :: : 
0224 13:04:07180 :: not all arguments converted during string formatting
0224 13:04:07180 :: 
Edited by SolWayne
Link to comment
Share on other sites

  • 5 months later...
  • 2 months later...
  • Management
Link to comment
Share on other sites

  • 4 months later...
0216 18:17:14512 :: Traceback (most recent call last):

0216 18:17:14512 ::   File "introSelect.py", line 556, in <lambda>

0216 18:17:14512 ::   File "introSelect.py", line 1094, in OverInButton

0216 18:17:14513 :: TypeError
0216 18:17:14513 :: : 
0216 18:17:14513 :: not all arguments converted during string formatting
0216 18:17:14513 :: 

Fixed. Was missing something in interface.

Edited by blaize
Link to comment
Share on other sites

  • 9 months later...
On 2/16/2023 at 6:02 PM, blaize said:
0216 18:17:14512 :: Traceback (most recent call last):

0216 18:17:14512 ::   File "introSelect.py", line 556, in <lambda>

0216 18:17:14512 ::   File "introSelect.py", line 1094, in OverInButton

0216 18:17:14513 :: TypeError
0216 18:17:14513 :: : 
0216 18:17:14513 :: not all arguments converted during string formatting
0216 18:17:14513 :: 

Fixed. Was missing something in interface.

What was missing?

Link to comment
Share on other sites

I know it's been a while since this post came out but does anyone else have name_warrior/assassin/... missing from create character page? Not the small ones the regular ones above the characters board

 

SOLVED:

Find def __SelectSlot(self, slot) in introCreate.py

Spoiler
		self.__MakeCharacter(slot)
		self.__SelectGender(0)
		self.__SelectShape(0)

 

add the missing code above like this:

Spoiler
		for i in xrange(SLOT_COUNT):
			self.destNameAlpha[i] = 0.0
			
		if slot >= 0 and slot < SLOT_COUNT:
			self.destNameAlpha[slot] = 1.0
		
		self.__MakeCharacter(slot)
		self.__SelectGender(0)
		self.__SelectShape(0)

 

 

Edited by Mind Rapist
Link to comment
Share on other sites

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.