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

plechi-frost-dungeon.gif

Link to comment
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
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

plechi-frost-dungeon.gif

Link to comment
Share on other sites

  • 2 weeks later...

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



  • Similar Content

  • Activity

    1. 144

      Shop Ex Renewal

    2. 0

      Sort By Last Play Time problem

    3. 0

      QuickSell in SpecialInventory Problem

    4. 12

      Legendary items effect

    5. 0

      M2Project Research | Teamler - Beta Tester

    6. 5

      How To Directx9 Device Creation with Multiple Thread Support

    7. 25

      Increase Safebox / Warehouse

  • Recently Browsing

    • No registered users viewing this page.
×
×
  • 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.