Jump to content
Sign in to follow this  
jexu1234

how up combine rate?

Recommended Posts

Go to resources -> scripts -> forge.lua

 

Look for function Check_CG_HechengBS

then just edit the following percentages.

1 = 100%

0.9 = 90%

0.8 = 80%

..

..

0.2 = 20%

and so on...

if Item_Lv < 3 then
                        a = 1
                        b = Percentage_Random ( a )

                elseif Item_Lv == 3 then
                        a = 0.9
                        b = Percentage_Random ( a )

                elseif Item_Lv == 4 then
                        a = 0.8
                        b = Percentage_Random ( a )

                elseif Item_Lv == 5 then
                        a = 0.6
                        b = Percentage_Random ( a )

                elseif Item_Lv == 6 then
                        a = 0.5
                        b = Percentage_Random ( a )

                elseif Item_Lv == 7 then
                        a = 0.4
                        b = Percentage_Random ( a )

                elseif Item_Lv == 8 then
                        a = 0.3
                        b = Percentage_Random ( a )

                elseif Item_Lv == 9 then
                        a = 0.2
                        b = Percentage_Random ( a )
                end

 

  • Like 1

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Sign in to follow this  

×
×
  • Create New...