Ziu Posted January 8, 2012 Posted January 8, 2012 ¿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 Quote
Napster Posted January 8, 2012 Posted January 8, 2012 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 Quote
Zwei Posted January 8, 2012 Posted January 8, 2012 Hola Ziu, Te recomiendo bastante este video para descompilar y organizar archivos lub. Saludos, Zwei 1 Quote
Ziu Posted January 8, 2012 Author Posted January 8, 2012 (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 January 8, 2012 by Ziu Quote
williamII Posted January 16, 2012 Posted January 16, 2012 (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 January 16, 2012 by williamII Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.