Jump to content

Lub -> Lua


Ziu

Recommended Posts


  • Group:  Members
  • Topic Count:  177
  • Topics Per Day:  0.04
  • Content Count:  909
  • Reputation:   247
  • Joined:  11/08/11
  • Last Seen:  

¿Sabeis como puedo limpiar del archivo descompilado los datos hex de las lineas?...dejo un ejemplo:

No consigo descompilarlo sin sacar los hex....

skillinfolist.rar

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  196
  • Reputation:   72
  • Joined:  12/12/11
  • Last Seen:  

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

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  107
  • Reputation:   17
  • Joined:  12/23/11
  • Last Seen:  

Hola Ziu,

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

Saludos,

Zwei

  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  177
  • Topics Per Day:  0.04
  • Content Count:  909
  • Reputation:   247
  • Joined:  11/08/11
  • Last Seen:  

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
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  141
  • Reputation:   15
  • Joined:  01/08/12
  • Last Seen:  

Esto es lo que yo esperaba. Gracias.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  12
  • Topics Per Day:  0.00
  • Content Count:  81
  • Reputation:   5
  • Joined:  11/19/11
  • Last Seen:  

Esto es lo que yo esperaba. Gracias. :(

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  15
  • Topics Per Day:  0.00
  • Content Count:  318
  • Reputation:   13
  • Joined:  11/21/11
  • Last Seen:  

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
Link to comment
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.   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.

×
×
  • Create New...