stormv Posted February 5, 2016 Posted February 5, 2016 hey guys can someone tell me how can i add the stat (magic critical chance) when i check the stats of my char? for instance (p def, m attc, etc), i mean i have to modify java files? Thanks
0 Reborn12 Posted February 5, 2016 Posted February 5, 2016 hey guys can someone tell me how can i add the stat (magic critical chance) when i check the stats of my char? for instance (p def, m attc, etc), i mean i have to modify java files? Thanks mCrit?
0 stormv Posted February 5, 2016 Author Posted February 5, 2016 yes like mCrit i want to be visible like other stats
0 Reborn12 Posted February 5, 2016 Posted February 5, 2016 yes like mCrit i want to be visible like other statsAdd mul or somethink like this?? With add=+ addsAnd with mul=1.10 or what you want..here is a guide just use search about stats
0 xxdem Posted February 5, 2016 Posted February 5, 2016 I've made it so, in my server L2AEPvP mages see mCrit instead of Crit on M.Crit stat
0 stormv Posted February 5, 2016 Author Posted February 5, 2016 i cant see the guide, xxdem can you explain me how?
0 Reborn12 Posted February 5, 2016 Posted February 5, 2016 i cant see the guide, xxdem can you explain me how? I think he speak about core side on stats he have made mCrit like Critical for other stats..also works like Crit on archers or somethink like that if im not wrong..
0 stormv Posted February 5, 2016 Author Posted February 5, 2016 when you open your character to see the stats you can see, evasion, m def, accuracy, etc i just want to add mCritical, in that window, i know how can i modify the stats in xml files
0 Reborn12 Posted February 5, 2016 Posted February 5, 2016 when you open your character to see the stats you can see, evasion, m def, accuracy, etc i just want to add mCritical, in that window, i know how can i modify the stats in xml files Then you must search about this if this is a html or hardcoded i cant know..
0 stormv Posted February 5, 2016 Author Posted February 5, 2016 i dont think that is only a html file, but thanks for your help!
0 Reborn12 Posted February 5, 2016 Posted February 5, 2016 i dont think that is only a html fiqle, but thanks for your help! If you find the another stats then you must read where is this located..thats i mean.
0 ElTyto Posted February 6, 2016 Posted February 6, 2016 you will need triskell for this probably, i give u 90% that its 1 java file that will need like 3 lines to do what u want to :)
0 Sdw Posted February 6, 2016 Posted February 6, 2016 (edited) Search where the stats is used maybe ? UseInfo replace crit with a simple isMageClass ? mcrit : crit Edited February 6, 2016 by Sdw
0 stormv Posted February 6, 2016 Author Posted February 6, 2016 thanks for your help guys propably i will spend some time in java files :)
0 Tryskell Posted February 6, 2016 Posted February 6, 2016 (edited) Probably UserInfo packet, from writeD(_activeChar.getCriticalHit(null, null)); to writeD((_activeChar.isMageClass()) ? _activeChar.getMCriticalHit(null, null) : _activeChar.getCriticalHit(null, null)); You can't add a new column, simply re-use an existing one (or edit client but that's heavy). Edited February 6, 2016 by Tryskell
0 stormv Posted February 6, 2016 Author Posted February 6, 2016 thanks a lot tryskell! you can close it
Question
stormv
hey guys can someone tell me how can i add the stat (magic critical chance) when i check the stats of my char? for instance (p def, m attc, etc), i mean i have to modify java files? Thanks
16 answers to this question
Recommended Posts