Tutorial Show percentage upp

Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

4peppe

New member
Joined
Feb 18, 2021
Messages
26
Credits
7
root/uiRefine.py search in class RefineDialogNew:

self.successPercentage.Hide()
and change with:
self.successPercentage.Show()




And small fix

Open "refinedialog.py" (client game pack/root/uiscript) and find it:

{
"name" : "SuccessPercentage",
"type" : "text",
"text" : uiScriptLocale.REFINE_INFO,
"horizontal_align" : "center",
"vertical_align" : "bottom",
"text_horizontal_align" : "center",
"x" : 0,
"y" : 70,
},
{
"name" : "Cost",
"type" : "text",
"text" : uiScriptLocale.REFINE_COST,
"horizontal_align" : "center",
"vertical_align" : "bottom",
"text_horizontal_align" : "center",
"x" : 0,
"y" : 54,
},
And replace for this:

{
"name" : "SuccessPercentage",
"type" : "text",
"text" : uiScriptLocale.REFINE_INFO,
"horizontal_align" : "center",
"vertical_align" : "bottom",
"text_horizontal_align" : "center",
"x" : 0,
"y" : 63,
},
{
"name" : "Cost",
"type" : "text",
"text" : uiScriptLocale.REFINE_COST,
"horizontal_align" : "center",
"vertical_align" : "bottom",
"text_horizontal_align" : "center",
"x" : 0,
"y" : 51,
},

Source: metin2.dev
 
Back
Top