Ziu Posted January 8, 2012 Group: Members Topic Count: 178 Topics Per Day: 0.04 Content Count: 909 Reputation: 247 Joined: 11/08/11 Last Seen: March 28 Share 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 Link to comment Share on other sites More sharing options...
Napster Posted January 8, 2012 Group: Members Topic Count: 11 Topics Per Day: 0.00 Content Count: 196 Reputation: 72 Joined: 12/12/11 Last Seen: November 6, 2016 Share 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 Link to comment Share on other sites More sharing options...
Zwei Posted January 8, 2012 Group: Members Topic Count: 3 Topics Per Day: 0.00 Content Count: 107 Reputation: 18 Joined: 12/23/11 Last Seen: March 25, 2012 Share Posted January 8, 2012 Hola Ziu, Te recomiendo bastante este video para descompilar y organizar archivos lub. Saludos, Zwei 1 Quote Link to comment Share on other sites More sharing options...
Ziu Posted January 8, 2012 Group: Members Topic Count: 178 Topics Per Day: 0.04 Content Count: 909 Reputation: 247 Joined: 11/08/11 Last Seen: March 28 Author Share 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 Link to comment Share on other sites More sharing options...
OnNplay Posted January 10, 2012 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 141 Reputation: 15 Joined: 01/08/12 Last Seen: July 26, 2014 Share Posted January 10, 2012 Esto es lo que yo esperaba. Gracias. Quote Link to comment Share on other sites More sharing options...
Zagreuz Posted January 10, 2012 Group: Members Topic Count: 12 Topics Per Day: 0.00 Content Count: 81 Reputation: 5 Joined: 11/19/11 Last Seen: November 29, 2023 Share Posted January 10, 2012 Esto es lo que yo esperaba. Gracias. Quote Link to comment Share on other sites More sharing options...
williamII Posted January 16, 2012 Group: Members Topic Count: 18 Topics Per Day: 0.00 Content Count: 341 Reputation: 15 Joined: 11/21/11 Last Seen: 8 hours ago Share 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 Link to comment Share on other sites More sharing options...
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.