Meydex Posted May 18, 2020 Posted May 18, 2020 So as the title says. I am looking for an Interface.u compiler working for Gracia Final. Send me a message here or in PM so we can discuss the price. Thanks.
Meydex Posted May 18, 2020 Author Posted May 18, 2020 (edited) I did search and tried a few compilers but they all seem to work for other chronicles such as Interlude, High Five etc. Do you have anything specific in mind and willing to share? Edited May 18, 2020 by Meydex
Contessina* Posted May 18, 2020 Posted May 18, 2020 36 minutes ago, Meydex said: I did search and tried a few compilers but they all seem to work for other chronicles such as Interlude, High Five etc. Do you have anything specific in mind and willing to share? well exist one free but at russian forum if i m not wrong* working for your client also exist this https://mmo-dev.info/threads/lineage-ii-interface-editor-gui-by-mixer57.16931/ thank me later xd
JaharakaL Posted May 18, 2020 Posted May 18, 2020 (edited) 8 minutes ago, Contessina* said: well exist one free but at russian forum if i m not wrong* working for your client also exist this https://mmo-dev.info/threads/lineage-ii-interface-editor-gui-by-mixer57.16931/ thank me later xd Is this free? Either way you are refering to the LUSE compiler and it doesnt work for gracia final. Grand Crusade Ertheia High Five Interlude Edited May 18, 2020 by JaharakaL
Contessina* Posted May 18, 2020 Posted May 18, 2020 1 hour ago, JaharakaL said: Is this free? Either way you are refering to the LUSE compiler and it doesnt work for gracia final. Grand Crusade Ertheia High Five Interlude He say what he can buy .. yea I was talk for luse
LightFusionMain Posted May 18, 2020 Posted May 18, 2020 46 minutes ago, Akar0 said: Check this out. Your are welcome. did u even tested it ? As far as i know only i have fully working solution for gf epilogue
Akar0 Posted May 18, 2020 Posted May 18, 2020 (edited) 13 minutes ago, LightFusionMain said: did u even tested it ? Of course!! it works 100%, no crush, and it's FREE Edited May 18, 2020 by Akar0
Meydex Posted May 19, 2020 Author Posted May 19, 2020 19 hours ago, Akar0 said: Check this out. Your are welcome. Tested and works! Thanks a lot!
LightFusionMain Posted May 19, 2020 Posted May 19, 2020 (edited) On 5/18/2020 at 9:23 PM, Akar0 said: Of course!! it works 100%, no crush, and it's FREE ... yeah working like a charm, only thing its bugged as hell original code from AttributeREmoveWnd.uc , price is int32 value function OnClickItem( string strID, int index ) { local ItemInfo infItem; local int Price; if (strID == "ItemWnd") { ItemWnd.GetItem( index, infItem ); Price = int(infItem.DefaultPrice); txtRemoveAdena.SetText(MakeCostString(string(Price))); btnOK.EnableWindow(); } } And in your sources , price is int64 , plus unneeded conversion to MakeCostStringInt64 , this leads to unexpected behavior . function OnClickItem( string strID, int index ) { local ItemInfo infItem; local INT64 Price; if (strID == "ItemWnd") { ItemWnd.GetItem( index, infItem ); Price = infItem.DefaultPrice; txtRemoveAdena.SetText(MakeCostStringInt64(Price)); btnOK.EnableWindow(); } } So in every new function u make , u have to use this unneeded conversion and some bugs may appear. More of that u cant export GF interface.u( with that compiler) , neither u can use stripsource-Commandlet, to remove sourcecode from interface.u ! But yeah its free, bugs included Edited May 19, 2020 by LightFusionMain
Akar0 Posted May 19, 2020 Posted May 19, 2020 (edited) Fixed, thanks for the heads up!! And I'm sorry you couldn't sell your crap.. Have a nice day kid! Edited May 19, 2020 by Akar0
Recommended Posts