Jump to content

Recommended Posts

When i try to compile the client source or server, appears something like this
 

https://metin2.download/picture/d8Ho4P0mCBMxe3mNyLan5fxj8936Pz3R/.png

 

Edited by Metin2 Dev International
Core X - External 2 Internal
  • 2 weeks later...
On 10/24/2023 at 12:25 AM, Ulthar said:

Download Center

This is the hidden content, please
 or 
This is the hidden content, please

The files are uploaded to Google Drive.

  Hello!

Im here again. I made more changes and im going to share it with you.
This V2 have more changes, take a look:
 

Currently, I dont know any problem with the systems/modifications what I added, but if something is missing, please let me know and I'll try to add it/fix it.

Datas:

  Reveal hidden contents

MYSLQ:
 

username: root
password: 123456789

VDI:

username: root
password: dev

Ingame:

username: admin
password: admin

 


 

  Reveal hidden contents

P.S.: Every single system what I added, can be found on metin2.dev.
MYSQL version: 5.6
BSD what i always using and used while built this sf up, is: 13.2

Last but not least, have a nice day.

I discovered some bugs:

1. when you create a character and go up to level 5, when talking to the skills guard and distributing skill points, you need to restart the client to be able to activate the skills. Note: this only happened with the warrior character, it didn't happen with the ninja character. possibly has to do with enabling the 6th skill

2. When you return to the character selection screen, the quests target disappears from the left side of the screen, even if you press ctrl+q, requiring you to restart the client

Edited by cherabomba
  • muscle 1
  • Love 1
13 hours ago, cherabomba said:

I discovered some bugs:

1. when you create a character and go up to level 5, when talking to the skills guard and distributing skill points, you need to restart the client to be able to activate the skills. Note: this only happened with the warrior character, it didn't happen with the ninja character. possibly has to do with enabling the 6th skill

2. When you return to the character selection screen, the quests target disappears from the left side of the screen, even if you press ctrl+q, requiring you to restart the client

FIXED!

Can someone help with this ?
I was trying to install the files on my VPS.


https://metin2.download/picture/6ZTVMIu3WRV0wpN943lQVagn89bOw4n0/.png
 

 

EDITED = FIX

But now, i have this one.

ld-elf32.so.1: Shared object "libIL.so.1" not found, required by "game"

Edited by Metin2 Dev International
Core X - External 2 Internal
On 6/19/2024 at 7:10 PM, Diogo Neto said:

Has anyone managed to solve the whisper bug in uitarget?

Conseguiu resolver? Seria o bug do chat normal entre personagens de reinos diferentes? Somente o GM consegue conversar entre reinos diferentes pelo chat normal.

On 10/24/2023 at 12:25 AM, Ulthar said:

Download Center

This is the hidden content, please
 or 
This is the hidden content, please

The files are uploaded to Google Drive.

  Hello!

Im here again. I made more changes and im going to share it with you.
This V2 have more changes, take a look:
 

Currently, I dont know any problem with the systems/modifications what I added, but if something is missing, please let me know and I'll try to add it/fix it.

Datas:

  Reveal hidden contents

MYSLQ:
 

username: root
password: 123456789

VDI:

username: root
password: dev

Ingame:

username: admin
password: admin

 


 

  Reveal hidden contents

P.S.: Every single system what I added, can be found on metin2.dev.
MYSQL version: 5.6
BSD what i always using and used while built this sf up, is: 13.2

Last but not least, have a nice day.

There appears to be the following bug:
When characters from different kingdoms try to chat in normal chat, the text does not appear. This does not happen if one of the characters is a GM, or if both characters are from the same kingdom.

I'm trying to solve it, if I find the solution, I'll return here.

If anyone already has the solution, let me know.

  • Love 1
13 hours ago, cherabomba said:

There appears to be the following bug:
When characters from different kingdoms try to chat in normal chat, the text does not appear. This does not happen if one of the characters is a GM, or if both characters are from the same kingdom.

I'm trying to solve it, if I find the solution, I'll return here.

If anyone already has the solution, let me know.

Fixed! Maybe the problem were the global chat system installed by me. 

Aniway, for correction (by pass), comment lines in "convert_empire_text.cpp", disabling the function.

Edited by cherabomba
  • 2 weeks later...
  • 1 month later...
On 6/16/2024 at 3:45 AM, cherabomba said:

I discovered some bugs:

1. when you create a character and go up to level 5, when talking to the skills guard and distributing skill points, you need to restart the client to be able to activate the skills. Note: this only happened with the warrior character, it didn't happen with the ninja character. possibly has to do with enabling the 6th skill

2. When you return to the character selection screen, the quests target disappears from the left side of the screen, even if you press ctrl+q, requiring you to restart the client

May I ask how you fixed the second problem?
I noticed that only the very first login of a character in a client session displays the quest scrolls on the left of the screen.
At first I thought this was a feature but since level up quests don't show up in the quest log (N) I don't believe this is intended...
Would be grateful for any help!

On 6/16/2024 at 3:45 AM, cherabomba said:

I discovered some bugs:

1. when you create a character and go up to level 5, when talking to the skills guard and distributing skill points, you need to restart the client to be able to activate the skills. Note: this only happened with the warrior character, it didn't happen with the ninja character. possibly has to do with enabling the 6th skill

2. When you return to the character selection screen, the quests target disappears from the left side of the screen, even if you press ctrl+q, requiring you to restart the client

@cherabomba It seems like I experience both bugs after all. If you don't mind, would you please share your solution?

20 minutes ago, Cifer said:

@cherabomba It seems like I experience both bugs after all. If you don't mind, would you please share your solution?

I used this bypass:

In root/interfacemodule.py search:

 

	def __del__(self):
		systemSetting.DestroyInterfaceHandler()
		event.SetInterfaceWindow(None)

And change it to:

 

	def __del__(self):
		systemSetting.DestroyInterfaceHandler()
		#event.SetInterfaceWindow(None)

It's not a solution, but it serves as a bypass for the quest scroll issues.

21 hours ago, Burdavskyy said:

I have bug with skill warrior female like this : 

 

someone know how to fix ? i try edit skill on pc2 but dont work .

this not is a serverfiles bug, in metin2 it's always been like this

  • Metin2 Dev 1
  • Love 1
3 minutes ago, cherabomba said:

I used this bypass:

In root/interfacemodule.py search:

 

	def __del__(self):
		systemSetting.DestroyInterfaceHandler()
		event.SetInterfaceWindow(None)

And change it to:

 

	def __del__(self):
		systemSetting.DestroyInterfaceHandler()
		#event.SetInterfaceWindow(None)

It's not a solution, but it serves as a bypass for the quest scroll issues.

this not is a serverfiles bug, in metin2 it's always been like this

I fixed my problem

3 minutes ago, Burdavskyy said:

I fixed my problem

If you have solved it, it would be interesting to share the solution, since the problem is old and few people have bothered to fix it.

Edited by cherabomba
On 8/19/2024 at 2:20 PM, cherabomba said:

I used this bypass:

In root/interfacemodule.py search:

 

	def __del__(self):
		systemSetting.DestroyInterfaceHandler()
		event.SetInterfaceWindow(None)

And change it to:

 

	def __del__(self):
		systemSetting.DestroyInterfaceHandler()
		#event.SetInterfaceWindow(None)

It's not a solution, but it serves as a bypass for the quest scroll issues.

this not is a serverfiles bug, in metin2 it's always been like this

Thank you so much! It was driving me crazy but thanks to you it's fixed for now.
Seven blessings to you 🙂
 

  • Love 1
On 6/5/2024 at 5:59 PM, Gibon said:

Targets appear at close range, where they should have been visible from the start. Is this a bug or an intended effect?
https://youtu.be/XkasjYRB-gY

I had the same problem and the others probably do too but I managed to fix it!


Server src: target.cpp
Search for:

pck.lX = x;

Insert underneath:

pck.lY = y;


Don't forget to compile!

3 minutes ago, Cifer said:

I had the same problem and the others probably do too but I managed to fix it!


Server src: target.cpp
Search for:

pck.lX = x;

Insert underneath:

pck.lY = y;


Don't forget to compile!

Could you explain to me what this problem is? I saw his video and didn't understand anything

On 8/24/2024 at 12:58 AM, cherabomba said:

Could you explain to me what this problem is? I saw his video and didn't understand anything

Targets for quests are normally indicated on the map with a white circle and the target blinks red and white on the compass.

In the beginning of the video, the circle does not show up on the map and neither does the target blink red and white on the compass.

At 0:02, he approaches the target and only then do the above indicators show up.

The bug makes it basically impossible to complete horse levelup quests, among others.

The bug originates from not applying the y-coordinate in target.cpp of the server source. This is likely due to having accidentally overwritten the line.

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.