Jump to content

Recommended Posts

  • Honorable Member

Hi guys, 
I have to problems and i want to ask you about that..
 
First problem... our compile BIN.. We have this problem everytime.. really don't know where is the problem :(
 
sysser:

uiCharacter.py(line:399) __LoadWindow

uiCharacter.py(line:152) __LoadScript
ui.py(line:2818) LoadScriptFile
ui.py(line:3008) LoadChildren
ui.py(line:3008) LoadChildren
ui.py(line:3008) LoadChildren
ui.py(line:2825) LoadChildren
 
CharacterWindow.__LoadWindow - <type 'exceptions.RuntimeError'>:Failed to load image (filename: d:/ymir work/ui/public/Parameter_Slot_03.sub)
 
1107 23:11:43800 :: ============================================================================================================
1107 23:11:43800 :: Abort!!!!
 
 

 

Screen:

RqUjkiE.jpg

 

And after select character and load loading window game shut down...

 

Any solutions? 

 

And second problem, anyone know where i can set horse levels for horse grade? I need to set horse grade 3 for horse level 5, but I still can't find file where i can change it.. or I'm too noob for it... second possibility is likely... :D

 

Really thanks to all people who'll help me.. :)

Edited by Metin2 Dev
Core X - External 2 Internal

spacer.png

Link to comment
https://metin2.dev/topic/3737-2-problems/
Share on other sites

Failed to load image (filename: d:/ymir work/ui/public/Parameter_Slot_03.sub)

First problem is in your pack. System trying to load that sub file but. It's not exist in your pack or sub is exist but image is not exist. Are you check it?

 

Best Regards

Ellie

Do not be sorry, be better.

Link to comment
https://metin2.dev/topic/3737-2-problems/#findComment-24256
Share on other sites

Your second question:

 

Open horse_rider.cpp and find this:

BYTE CHorseRider::GetHorseGrade()
{
	BYTE grade = 0;

	if (GetHorseLevel())
		grade = (GetHorseLevel() - 1) / 10 + 1;

	return grade;
}

and replace it with this one:

BYTE CHorseRider::GetHorseGrade()
{
	BYTE grade = 0;
	//Don't delete the zero at the start of the array
	int grades[31] = [0,1,1,1,1,3,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3];

	if (GetHorseLevel())
		grade = grades[GetHorseLevel()];

	return grade;
}

So just edit the array and set the grade you want for every level.

  • Love 1
Link to comment
https://metin2.dev/topic/3737-2-problems/#findComment-24265
Share on other sites

  • Honorable Member

Thanks Denis, the first problem.. i solved it... But i have the last problem.. i can't see fog in background... i really no idea where is the problem..

 

It should be looks like this:

4SbdKN8.jpg

 

And i see this :( No fog in background....

VDdixhX.jpg

Edited by Metin2 Dev
Core X - External 2 Internal

spacer.png

Link to comment
https://metin2.dev/topic/3737-2-problems/#findComment-24320
Share on other sites

  • 2 weeks later...

Do you have a NVIDIA graphic chip? There are some features with the software, that disables every directx function like the fog. It's the same with some shooter games, there are no smoke-grenades anymore.

 

Pretty sure what you're referring to was use of custom drivers in old OpenGL games..

Link to comment
https://metin2.dev/topic/3737-2-problems/#findComment-25353
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.