Jump to content
  • 0
Sign in to follow this  
IndieRO

how to fix this??

Question

getskill.png.97fc093c621bdcc88dc00403e9024a8e.png

Edit: problem solve 

How to solve this problem, just add new function on luafile514\lua files\SkillInfoz\skillinfo_f.lub

GetSkillScale = function(in_SKID, in_Level)
	local obj = SKILL_INFO_LIST[in_SKID]
	local x = 0
	local y = 0
	if nil ~= obj then
		obj = SKILL_INFO_LIST[in_SKID].SkillScale
	end
	if nil ~= obj then
		obj = SKILL_INFO_LIST[in_SKID].SkillScale[in_Level]
	end
	if nil ~= obj then
		x = SKILL_INFO_LIST[in_SKID].SkillScale[in_Level].x
		if nil == x then
			return 0, 0
		else
			y = SKILL_INFO_LIST[in_SKID].SkillScale[in_Level].y
			if nil == y then
				return 0, 0
			end
		end
	end
	return x, y
end

 

Edited by melv0

Share this post


Link to post
Share on other sites

4 answers to this question

Recommended Posts

  • 0

The lua files you're using seems to not have support for SkillScale you should update skillinfolist.lub by adding the SkillScale field to your version of the file from kRO lua files.

 

Share this post


Link to post
Share on other sites
  • 0
8 hours ago, Asheraf said:

The lua files you're using seems to not have support for SkillScale you should update skillinfolist.lub by adding the SkillScale field to your version of the file from kRO lua files.

 

ouw thx for info :D

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.