Jump to content

Recommended Posts

Posted

rewrite new skillinfolist

sample

[sKID.SM_SWORD] = {

SkillName = "Sword Mastery",

MaxLv = 10,

SpAmount = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },

bSeperateLv = false,

AttackRange = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 },

"SM_SWORD"

},

and modify skillinfo_f.lua

Function #8

IsLevelUseSkill = function(SkillID)

local skillInfo = SKILL_INFO_LIST[skillID]

local rst = nil

if skillInfo ~= nil then

rst = skillInfo.bSeperateLv

if rst ~= nil then

return rst

end

local spAmount = skillInfo.SpAmount

return spAmount == nil

end

return false

end

and Function #12

GetSkillAttackRange = function(in_SKID, in_Level, in_curMaxLv)

local attackRange = 1

local attackRangeOfMaxLv = 0

local maxLv = 0

local obj = SKILL_INFO_LIST[in_SKID]

if obj ~= nil then

obj = SKILL_INFO_LIST[in_SKID].AttackRange

maxLv = SKILL_INFO_LIST[in_SKID].MaxLv

end

if obj ~= nil then

attackRange = SKILL_INFO_LIST[in_SKID].AttackRange[in_Level]

end

if maxLv ~= nil and maxLv < in_curMaxLv then

in_curMaxLv = maxLv

end

attackRangeOfMaxLv = SKILL_INFO_LIST[in_SKID].AttackRange[in_curMaxLv]

if attackRangeOfMaxLv == nil then

attackRangeOfMaxLv = 0

end

if attackRange ~= nil then

return attackRange, attackRangeOfMaxLv

end

return 1, attackRangeOfMaxLv

end

Posted (edited)

Hola Ziu,

Te recomiendo bastante este video para descompilar y organizar archivos lub.

Saludos,

Zwei

Gracias pero eso ya sabia hacerlo era si habia alguna otra forma...porque archivos como skillinfolist son muy grandes y hacerlo asi se tarda mucho y muchas veces el programa se bloquea.... de todas formas seguro que a más de uno le servira de ayuda.

Lo mejor ahora es usar directamente los lub, dejarse de customs y combinar los lub del kRO con los de iRO para tenerlo todo actualizado y traducido al ingles, es lo que yo hago y me va todo genial.

Edited by Ziu
Posted (edited)

Aaa como los descompilo ?? no tengo ese exe llamado chunkspy.exe y lo creo pero me tira un error help!!

ya lo encontre gracias por la guia

Edited by williamII

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.   Paste as plain text instead

  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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...