
arm4729
Members-
Posts
231 -
Joined
-
Last visited
-
Days Won
1 -
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by arm4729
-
Help Any way to CLEAR client cache memory on aCis ?
arm4729 replied to arm4729's question in Request Server Development Help [L2J]
hey thank you for info hmm this is very interesing , thank you man i really learn new things about this game all time thats nice Log: Purging Time : 0.012 sec Log: Garbage: objects: 62320; refs: 723193, destroyed: 308, deleted: 308, delnames: 3750 Log: SIZE_RESTORED VERY THX ! Can you tell me why you need to be an admin to do this ? where is file that checks this ? i want to use command ///c_rmode on normal character and i can't why is this happening ? -
You should follow how Ceausescu fall in Romania.
-
Message to one of ~150 mil. Savages : Please , someone should kill Putin , i mean it man. Maybe is not RUSIA fault , maybe is not NATO fault , but you guys are only ones who can stop him.. maybe he is a puppet idk , but you can kill him... look what happen in Sirya years ago ? America destroyed it and blame on ISIS , now blame is on a single man you guys should do smth about this
-
i am more into fotball , dont you got some champions league predictions too ?
-
you tell me that you can "detect" wich coins are going up , and you are still here ? what a good person do you want to help poor ? i can leave you revolut here
-
Tool Interlude Oly DMG and 4 skill bars
arm4729 replied to PeinasPlays's topic in [Request] Client Dev Help
hey can you be more explicit ? you want health bars in olympiad match ? or just to see how much dmg was dealt ? i guess you can use the duel system health bars -
this guy is next level ? wait what ? configuring l2j server - check / taking down companies - check , i would love to see some proofs
-
Help Any way to CLEAR client cache memory on aCis ?
arm4729 replied to arm4729's question in Request Server Development Help [L2J]
hey guys , thank you for your answer .. i don't know about other pack because last years i only worked on acis , so the thing is because of some npc , i get critical errors sometimes , so i made a system when you are using gatekeeper to teleport your client connection to the world will be restarted and then you will log again so that will be only a blink of second , it is working if in party it will relog in party using character_memo and booleans , but i would preffer to make this thing somehow simpler .. what i understand untill now that this thing cn be done only with some client modifications to not involve disconnecting client and character from the world -
#LETS GO L2ETREME !!!
-
Help Any way to CLEAR client cache memory on aCis ?
arm4729 posted a question in Request Server Development Help [L2J]
Are there any way to clear an online player clients memory cache on aCis ? Without any client mod ? and without involving restart action ? no disconnect from the world -
Code Autobots | The best Fake Player & Autofarm Engine
arm4729 replied to Elfo's topic in Server Shares & Files [L2J]
you should try to run l2jtesla pack it has autobots included first -
LF Npc Clan Hall Rent
arm4729 replied to barao45's question in Request Server Development Help [L2J]
i can help you leave discord here -
that is because you are using different acis versions , that buffer was shared on another acis version your version is more updated" .. anyway i think you can adapt it if you need help leave your discord here
-
is there any shared decompiled interface ? or any way we can decompile this interface ?
-
All i can say is that i am pretty sure chinesse people didin't start to eat bats on 2019 .. made in lab (95%)
-
hello , i am pretty sure this mod require some dll client files edit and you will not get this mod for free / fiind it shared anywhere... you should make your event reward all players and if 1 player is dual box only reward one box
-
Help Community Board backround image interlude
arm4729 replied to arm4729's topic in [Request] Client Dev Help
hey mate thank you again for answer and sharing , do you think is not possible to add backround image to cb html without client mod ? did you try with other images ? try first on a npc then try on cb if still blank on npc maybe interface files is not good , if you decompile i think you copy some code from how is working on npcs .. my question was if it is possible to add a backround without any client interface mod -
Help Community Board backround image interlude
arm4729 replied to arm4729's topic in [Request] Client Dev Help
Hey thank you man !! but would it be possible without any client editing ? -
Help Community Board backround image interlude
arm4729 replied to arm4729's topic in [Request] Client Dev Help
can you show an example ? what ? -
Hello , i have been seen here on forum this , i am wondering is this possible only via client edit ?
-
Help Community Background
arm4729 replied to Afou To Patisa's question in Request Server Development Help [L2J]
only via client edit for interlude ? -
Request Is there any interface.u decompiling tool ?
arm4729 replied to arm4729's topic in [Request] Client Dev Help
hey thank you , second link i think is usefull i will check ! hello , it might be encrypted because when i try to decompile it i get only defaultproperties][ 1kb files , and when i try to open with WOTgreal exporter i can't open some parts look screen maybe any ideea ? can anyone help me decrypt this interface.u file ? or tell me if is even ecrypted or why i get stream read error ? i just need to add 2 lines in tradewnd / privatestorewnd ? https://www.mediafire.com/file/2eh3qpszbhoa8pw/interface.u/file -
Help Tradeable Augmented Items For Acis. Part 2
arm4729 replied to xBountyhunt3r's topic in [Request] Client Dev Help
public class TradeStart extends L2GameServerPacket { private final Player _activeChar; private final ItemInstance[] _itemList; public TradeStart(Player player) { _activeChar = player; _itemList = player.getInventory().getAvailableItems(true, false); } @Override protected final void writeImpl() { if (_activeChar.getActiveTradeList() == null || _activeChar.getActiveTradeList().getPartner() == null) return; writeC(0x1E); writeD(_activeChar.getActiveTradeList().getPartner().getObjectId()); writeH(_itemList.length); for (ItemInstance temp : _itemList) { if (temp == null || temp.getItem() == null) continue; Item item = temp.getItem(); writeH(item.getType1()); writeD(temp.getObjectId()); writeD(temp.getItemId()); writeD(temp.getCount()); writeH(item.getType2()); // int _augorg = 0; int _aug = 0; int _aug2 = 0; int _aug3 = 0; if (temp.isAugmented()) { _augorg = temp.getAugmentation().getAugmentationId(); _aug = _augorg>>16; _aug2 = _aug; _aug3 = _augorg-(_aug<<16); } if (temp.isAugmented()) writeH(_aug2); if (temp.isAugmented() == false) writeH(0x00); writeD(item.getBodyPart()); writeH(temp.getEnchantLevel()); writeH(0x00); if (temp.isAugmented()) writeH(_aug3); if (temp.isAugmented() == false) writeH(0x00); } } } -
Help Tradeable Augmented Items For Acis. Part 2
arm4729 replied to xBountyhunt3r's topic in [Request] Client Dev Help
PrivateStoreListSell / PrivateStoreManageListSell / TradeItem / Does anyone know how to edit an already custom interface.u ? , and with edit i mean adding 2 lines to TradeWnd / PrivateStoreWnd ? Can someone decompile please this https://www.mediafire.com/file/fv9pnnp0v76m9ac/interface.u/file interface.u into .uc files ? -
Request Is there any interface.u decompiling tool ?
arm4729 posted a topic in [Request] Client Dev Help
Hello , i am using some interface shared on maxcheaters , it has many addons from sublimity /nphrn / skillgauge etc... I would like to modify it to my needs , i just need to change 2 files TradeWnd , and PrivateStoreWnd .. i just need to add 2 lines to this interface but im having trouble decompiling it , right now im using WotgDecompiler but it seems some files won't open , and can't export to .uc files... Is there any tool to edit an already existing interface ?