how to fix this??

IndieRO

New member
Messages
287
Points
0
Age
34
Location
Indonesia
Discord
RagnaIDN#7960
Emulator
getskill.png

Edit: problem solve 

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

Code:
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
 
Last edited by a moderator:
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.

 
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

 
Back
Top