Jump to content

Recommended Posts

  • 1 month later...
Posted

Hello everyone, I will be afk up to 1st January ! I will celebrate the new year with my girlfriend, eating some "boeuf bourguignon" ! 🥩🍷

 

For all people who stay alone during the holidays (and others ), I wish you great health and success in what you undertake, being love or business !

 

Regarding aCis initial fee

 

Initial fee of the project will rise from 100€ to 200€ at 1st January. The monthly fee of 10€/month isn't affected. This rise is due to multiple factors :

  • aCis is the only L2J pack to get retail AI system ;
  • I want to restrict people to access aCis using money, and emphasize contribution over money ;
  • Found and banned leakers will be punished harder if they do so ;

Just to be perfectly transparent, another rise is already planned when skills refactor will be ended, rising the price to 300€ (which is still less than L2OFF, but will be as complete but more editable). Requested amount of cookies to become part of Inner Circle will be kept at 100 in all cases, to promote reporting, coding and sharing.

 

Main goals of 2024

 

Main development axes are already know for 2024 ; skills and zones will be the main targets for this year. Reported bugs will be fixed occasionally, as always.

 

If we got time, a side quest could be another Movement refactor - which would benefit from Vector approach - and LoS - which I find lacking. Some Bounty Hunt will be eventually deployed for those particular cases.

Posted (edited)

As previously said, I'm editing all associated texts through the different medias regarding initial fee, which is now set at 200€. Access through contribution is still reachable for 100 cookies 🍪. Monthly fee is untouched.

 

For reminder, 🍪 can be obtained from bounties - which are paid tasks - or as reward for any committed contribution. Valid reports are also rewarded with 🍪, they are rewarded in same time than the bugfix.

Edited by Tryskell
  • 4 weeks later...
Posted

Changeset 408 (3205)

TradeList refactor, Duel refactor, Handlers management, SpawnManager, Sieges, AdminCommands, Bugfixes, Organization

 

TradeList refactor

  • Use AtomicBoolean instead of synchronized.
  • Rework entirely buy/sell methods, which are now far more safer (notably TradeList#privateStoreSell, which was checking and processing transferItem in same time). A fail upon item transfer notably corrects total transaction price.
  • Few checks (being pointless or doubled) or even entire loops (calling removeItem instead of remove...) are dropped/avoided in few places.
  • Fix few issues :
    • BuyList is now properly refreshed upon inventory edition. Ty bios for report.
    • The strange adena issue is fixed (was due to removeItem not processing -1 as a special value but regular value, which was actually --1 -> +1). Ty bios for report.
    • Items aren't shown anymore as possible sellable item, if that item is already part of the SellList or is equipped.

        
Duel refactor

  • Big cleanup, deleting 1/3 of the class.
  • Abnormal effects are now properly cleansed. Ty MoodFreak for report, Diablo for the initial fix.
  • Play the lose animation only if WIN or SURRENDER, no TIE.
  • Don't play anymore the winner animation.
  • Don't countdown 5/4 upon 1vs1 Duels (5sec timer, starts at 3).
  • Restore Players conditions after SystemMessages.
  • Upon teleport, cancel active enchant and trades for Players, no matter the situation. Indirectly fixes "cancel trade upon party duel teleport".

 

Handlers management - by LaRoja

  • Handlers are now dynamically loaded based on their appearance in package. You don't have to manually set them anymore.

 

SpawnManager

  • Fix 3 invalid bosses dbSave. Ty Denzel for report, Bandnentans for fix.
  • Manually fix few territories (invalid nodes, bad Z, zone over Fortresses...).
  • Delete the whole magic behind setting a returning point from an offset of spawn location ; it's anyway mostly blocked by first returnHome check.
  • Banned territories are considered way before in the random location calculation of territories, which avoid to trigger Z/geo fail for nothing.
  • SiegeGuard#returnHome now also have a geopathfail logic.
  • Max iterations of random location search is reduced from 20 to 10 to trigger issues faster (will probably set back to 20 or even 50 when most territories are fixed).
  • Delete the whole for loop from MultiSpawn#getSpawnLocation for "anywhere" type, since Territory#getRandomLocation generate at least one point (last wrong iterated point).

    
Sieges

  • Control Towers, guards and mercenaries are anew Residence bound (was buggy since Residence rework) ;
  • Control Towers are now implemented as retail ;
  • Siege Guards won't attack you anymore if you're DEFENDER (produced by few scripts, mostly spells related).
  • Fix SiegeFlag NPE. Each NPC must have a Spawn.

    
AdminCommands

  • Revamp //tele panels.
  • Introduce //find item [name]. Ty melron for initial idea, StinkyMadness/CUCU23 for improvements.
  • Introduce //find npc [name], delete 6 related admincommands :
    • admin_show_spawns
    • admin_spawn_index
    • admin_spawn_reload
    • admin_npc_index
    • admin_spawn_once
    • admin_show_npcs

    
Bugfixes

  • Lotto and race tickets are generated differently, and now are bound to an objectId. Ty bios for report.
  • Fix petdata speeds, prior to converted classes to records commit. Ty Denzel for report and fix.
  • Fix ghost Pet over unsummon. Ty Denzel for report, LaRoja for fix.
  • Fix Q220 Radar misplacement. Ty FDX for fix.
  • Fix Q025 Triol's Pawn behavior.
  • AI related - Ty Bandnentans for fixes.
    • Fix ClassCastException from a regular AI script. Ty Denzel for report.
    • Fix SaintNinja script.
    • Fix QueenAnt, Orfen minions and Core scripts.
    • Fix LV3Orc script.
    • Fix GludioHold/GludioStand NPEs.
  • Don't send Npc SocialAction if in a blocking statut (dead, stunned, etc). Ty artemis for report.
  • Fix potential NPE over Siege#isOnOppositeSide.
  • Little GeoEngine#findPath fix (if originZ is too different from calculated Z) - Ty Bandnentans for the fix.
  • Update skills shortcuts upon AutoLearn config on. Ty hqsly for report, Rufo for fix.
  • Don't send inventory update over items which aren't in inventory. Ty FDX for report.
  • Fix NPE over teleportTo (regarding scripts Guards), introducing _isTeleporting as an AtomicBoolean. Ty Bandnentans for fix.
  • Potential IOOBE fix for boat movement. Ty Bandnentans for fix.
  • Fix 2 potential NPEs (if Config.SPAWN_EVENTS is null).

    
Organization

  • Triangle3D class is dropped.
  • Add Player#isOverweight method.
  • Add few records.
  • Rework ITEM_LOGS config
    • Indirectly fix an issue with pet inventory invalid item count. Ty Denzel for report, LaRoja for fix.
    • Avoid to spread useless parameters and generate Strings for nothing.
    • Shortcut most Item related methods by 1 up to 4 parameters.
    • Herbs ItemInstance objects are properly deleted when using addItem(int, int, boolean).
  • Addition of Residence#getTownName
  • MinionSpawn passively delete minion from master list if no respawn is associated to it.
  • Cleanup TerritoryStatus bypass, avoid a NPE if castle owner Clan doesn't exist.
  • Add Quest#createOnePrivateEx method with SpawnLocation parameter.
  • Delete NpcAI#setBackToPeace parameter (unused).
  • Delete GrandBossManager class (unused). Ty LaRoja for report.
  • Delete _isReturningToSpawnPoint variable (unused).
  • Thanks 1
  • Upvote 1
  • 2 weeks later...
Posted (edited)

I created an account on the ip test acis server (161.97.185.208) to test, I don't know if it's up to date but there are still movement bugs in the water, was this fixed in the 408? Because this is fundamental and basic, for the price you suggest at acis with a bug like that it doesn't make sense because at acis 401 public it's the same bug.

 

Link Serve test: aCis PTS "Blackbird" is on ! (i-live.eu)

 

Bug Zone Water: 

https://i.imgur.com/Z2mk23e.mp4 
 

Bug Moviment:
https://i.imgur.com/vKFGNVl.mp4

 

Bug collision Height:

GhqcdXV.png 

 

Bug Target Party : 
https://i.imgur.com/SaiWHVw.mp4 

 

Fix Bug Target Party  aCis public ( 401) :
https://i.imgur.com/yFNOiAk.mp4

Edited by Williams
  • Upvote 1
  • 6 months later...
Posted (edited)

Hellllllo everyone ! Good news for some, bad news for others : aCis was, once again, leaked.

 

It wouldn't be that problematic if it was old content, or even last revision 408 ; but this time, the whole content of under development/master branches was leaked out. One pack project is actually reselling NEXT revision content - before even being announced on aCis forums.

 

The mole/leaker is still part of customers, and is still capable to leak data, at the date I speak about.

 

Since I'm on a joyful mood, following events will occur :

 

PIRATE PLANK MINIGAME

 

Since we got restricted amount of donators (we're actually 13 on sources counting developers, over all), it's not extremely hard to actually delete the mole ; few ppl are actually matching the description, and a list can be easily generated based on time leak, potential country, contributions,...

 

Which basically end with that representation :

 

spacer.png

 

How will it work ? Everytime a new leak will occur, the following donator on the board will jump out of ship (and Talking Island waters are kinda cold). Since I'm not a monster and got principles, I will send back spent money for the non-granted months to the kicked dude. You won't be added back to the sources, anytime. The game ends when the mole is dropped out, or when I'm alone with my most loyal peeps around.

 

CONTRIBUTION

 

Leftover donators will have to contribute to the pack, being reports or code edits. Silent people won't be renewed anymore solely based on money.

 

In the same order of idea, I will now request a minimum of 100 cookies contribution before accepting any new ppl on the gitlab - which anyway won't be hard to do if you're a minimum invested into the pack.

 

If you understood the concept, free ppl can access gitlab sharing for 200 cookies contribution (100+100), and donators can access with 100 cookies + 200€. Regarding monthly contribution, there are no special numbers to achieve, stay active and you will stay.

 

PUBLIC REVISION WILL STEP UP

 

Next rev 409 will be exceptionally released as public revision. This revision got unique reworks, notably AI (L2OFF GF 1:1) and pathfind systems (up to 100 times faster, see #for-your-eyes-only over aCis discord for screens proofs).

 

This revision got a lot of new content, and is far ahead of any other L2J pack in terms of AI fidelity with L2OFF - even the costier.

 

ENDING WORD

 

Thanks to all loyal people who have, will or currently support this pack - one of the very few to offer unique reworks.

 

L2J community, as a whole, unfortunately never stepped up or shined by its cleverness or integrity - and is more preocuppied to add poorly written customs over quality leaked sources.

 

The olympic medal goes to the poop-eater project owner applying straight leak, not even knowing what exactly is the changeset content (because yes, he doesn't know)... It's actually sad real people follow and pay for your work, but well, good job surfing on my own merits, I guess. Maybe one day you will go out of my shadows, and make your own path. That's the best I can wish you.

 

So, my thanks to the few beacons of light in this mere pool of shadows. That's essentially for you (and for my own pleasure, ofc) I continue to work on this hobbyist project - started almost 14 years ago.

 

-----------------------------------------------------

 

Changeset 409 (3301)

 

SCH, Castles, IU, Npc movement, Drop rate rework, Bugfixes, Organization

 

SCH - Ty Bandnentans for the good work

  • All SCHs are normally fixed and working.
  • CH decorations are reworked (they got their own XML, related Configs are dropped).
  • Aden CHs got the Wyvern option, as stated in Patch Notes. Ty Denzel for report.
  • CH features levels are corrected. Ty Denzel for report.
  • Fix NPC clan crest issue.

Castles

  • Keep Castle next tax percent instead of resetting it to 0.
  • Implementation of missing variables over Castle vault management. Ty KejbL for report.
  • Remove doublons over Residence npcIds. Add npcId 35552 HTMs. Ty //Dev for report.
  • Fix the tax income calculation.

IU

  • Add PAPERDOLL as potential location for IU (fix gm enchant, arrows consumption). Ty Roko91 for report.
  • Fix weight calculation over login. Ty KejbL for report.
  • Fix inventory update upon teleport (BSOE consumption). Ty //Dev for report, La Roja for fix.
  • Fix inventory weight upon NPC buy.

Npc movement

  • MOVE_TO desire is cleansed over onEvtBlocked, avoiding to build infinite desire.
  • Don't add MOVE_TO desire if given Location isn't reachable.
  • FLEE doesn't call event upon onEvtBlocked (that event means something wrong happened, it's then impossible to trigger "regular" FLEE checks).
  • Use Location#equals in few scripts.
  • NpcAI#thinkFollow cleanup (-8 arrays, -24 List#get, -8 distance2D).

Drop rate rework

  • Main idea is to iterate each category X times, as if X monsters were killed. No % re-calculation or whatever, it's plain and simple. x50 means you got the calculated drops of 50 monsters.
  • Avoid to generate IntIntHolder, manage the drop/spoil using a Map<Integer, Integer> instead, which also allow to merge similar itemIds.
  • Categories % are tested no matter if drop or spoil, which allow levelMultiplier to be properly applied.
  • Monster#dropItem is moved to Npc#dropItem, which allow any Npc to drop an item and avoid cast.
  • "killer" is now part of all Npc#dropItem, meaning the item is properly item protected.

Bugfixes

  • Fix a ClassCastException over Quest#onClanAttacked.
  • Fix a NegativeSizeArrayException upon client logging. Drop few logging errors related to invalid client attempts.
  • Fix NPE over Q635.
  • Fix PDAM calculation prior to rev 399 physical attack/skill split. Ty Yoska for report.
  • Fix TradeList automatic title cleanup. Ty Denzel for report/fix.
  • Add back missing Config.PARTY_XP_CUTOFF_METHOD "none" option. Ty CUCU23 for report/fix.
  • Fix "upper roof" NPCs. Ty Bandnentans for fix.
  • Fix Seven Signs individual stone contribution method. Ty //Dev for report.
  • Fix Q372 reward table and drop rate. Ty //Dev for report.
  • Q348 now distributes drops as party-random, despite the client info. Ty Denzel for report.
  • Fix Benom teleports out. Hardcode other in/out Locations. Ty //Dev for report.
  • Don't show Crystallize icon on inventory for Bounty Hunters (was an addition of CT1 GP1). Ty Bandnentans for report.
  • Replace "weightPenalty" for "weightLimit" over skills XMLs. Ty //Dev for report/fix.
  • When Heroes participate in a raid against Antharas, Valakas, and Baium, the boss monster has a chance to shout out the Hero characters’ names. Ty deekay for fix.
  • Fix isRaidBoss implementation (a raidboss minion without master was considered raidboss).
  • Fix Nurse Ants not healing the Queen Ant larva.
  • Fix a SQLException over Olympiad server startup.
  • Fix a SQLException over Clan member removal (since clan privs rework).
  • Fix default 30169 npcId HTM. Ty Bandnentans for report.
  • Fix Festival Guide missing rift option. Ty Denzel for report/semi-fix.
  • Few dwarven/general manufacture fixes
    • Add the missing max recipe integrity check.
    • Upon shop fail, call back the manage window.
    • Upon shop fail, don't cleanup the manufacture list.
    • Upon shop success, cleanup the reverse manufacture list (successful general shop resets dwarven, successful dwarven shop resets general).

Organization

  • Rework HtmCache and CrestCache to use NIO. Move CrestType to enums.
  • Implementation of WorldObject#forEachKnownType / WorldRegion#forEachType & forEachRegion - Avoid List overhead in numerous popular locations (notably broadcastPacket or region checks - which are done on every knownlist check).
  • Rework SkillList packet, it is now handled as other packets. Delete Player#sendSkillList method.
  • Delete DeadlockDetector class and related configs.
  • Add GameServer#isServerCrash, based on LaRoja implementation - without uses, for now.
  • Move IPv4Filter class to commons.network, delete net.sf.l2j.util package.
  • Add DefaultSeeRange config, use the retail value 450 instead of 400.
  • Add more records, ty LaRoja for the merge request.
  • Delete unused dimensionalRift.xml.
  • Few ItemContainer optimizations.
  • Rename all ocurrences of adenas to Adena.
  • SonarLint / UCDetector fixes :
    • Drop MathUtil#limit, use Math#clamp instead (introduced in JDK21).
    • Drop following unused Configs : FS_TIME_ENTRY, FS_TIME_END, RAID_MINION_RESPAWN_TIMER.
    • Few public / protected / private edits. A lot more to come.
    • switch cases are merged (introduced in JDK12).
    • Boolean object is compared to Boolean.FALSE/TRUE, not directly tested as a boolean.
    • String#replaceAll is replaced with String#replace when a regex pattern isn't involved.
    • Generate few records : Sequence, TutorialEvent.
    • Few class-based variables are now local.
    • Use HashMap.newHashMap instead of new HashMap when the capacity is known (static final maps). HashMap.newHashMap avoids to set 0.75 capacity when it's not needed.
    • LogRecord record is renamed LogRecord logRecord, due to record being now a keyword.
    • Use proper Singleton pattern for instance type (notably listeners).
    • Generate private constructors calling IllegalStateException for utility classes.
Edited by Tryskell
  • Like 3
  • Sad 1
  • Upvote 1
Posted
On 9/7/2024 at 8:23 AM, Tryskell said:

Olá a todos! Boas notícias para alguns, más notícias para outros: o aCis foi, mais uma vez, vazado.

 

Não seria tão problemático se fosse um conteúdo antigo, ou mesmo a última revisão 408; Mas desta vez, todo o conteúdo das ramificações em desenvolvimento/master vazou. O projeto de um pacote está realmente revendendo o conteúdo da revisão NEXT - antes mesmo de ser anunciado nos fóruns do aCis.

 

A toupeira/vazador ainda faz parte dos clientes e ainda é capaz de vazar dados, na data de que falo.

 

Como estou de bom humor, ocorrerão os seguintes eventos:

 

MINIJOGO DE PRANCHA PIRATA

 

Como temos uma quantidade restrita de doadores (na verdade, somos 13 em fontes contando desenvolvedores, no geral), não é extremamente difícil realmente excluir a toupeira; poucas pessoas estão realmente correspondendo à descrição, e uma lista pode ser facilmente gerada com base no vazamento de tempo, país em potencial, contribuições,...

 

Que basicamente terminam com essa representação:

 

spacer.png

 

Como vai funcionar? Toda vez que ocorrer um novo vazamento, o seguinte doador no tabuleiro pulará do navio (e as águas da Ilha Falante estão meio frias). Como não sou um monstro e tenho princípios, enviarei de volta o dinheiro gasto pelos meses não concedidos para o cara chutado. Você não será adicionado de volta às fontes, a qualquer momento. O jogo termina quando a toupeira é descartada, ou quando estou sozinho com meus amigos mais leais por perto.

 

CONTRIBUIÇÃO

 

Os doadores restantes terão que contribuir para o pacote, sejam relatórios ou edições de código. Pessoas silenciosas não serão mais renovadas apenas com base no dinheiro.

 

Na mesma ordem de ideia, agora solicitarei uma contribuição mínima de 100 cookies antes de aceitar qualquer nova pessoa no gitlab - o que de qualquer maneira não será difícil de fazer se você tiver um mínimo de investimento no pacote.

 

Se compreendeu o conceito, as pessoas gratuitas podem aceder à partilha do gitlab por 200 cookies de contribuição (100+100), e os doadores podem aceder com 100 cookies + 200€. Em relação à contribuição mensal, não há números especiais para alcançar, mantenha-se ativo e você ficará.

 

A REVISÃO PÚBLICA SERÁ INTENSIFICADA

 

A próxima revisão 409 será excepcionalmente lançada como revisão pública. Esta revisão recebeu retrabalhos exclusivos, notadamente sistemas AI (L2OFF GF 1:1) e pathfind (até 100 vezes mais rápido, consulte #for-your-eyes-only no discord aCis para provas de telas).

 

Esta revisão recebeu muito conteúdo novo e está muito à frente de qualquer outro pacote L2J em termos de fidelidade de IA com L2OFF - ainda mais caro.

 

PALAVRA FINAL

 

Obrigado a todas as pessoas leais que apoiaram, apoiarão ou atualmente apóiam este pacote - um dos poucos a oferecer retrabalhos exclusivos.

 

A comunidade L2J, como um todo, infelizmente nunca se destacou ou brilhou por sua inteligência ou integridade - e está mais preocupada em adicionar costumes mal escritos do que fontes vazadas de qualidade.

 

A medalha olímpica vai para o dono do projeto comedor de cocô aplicando vazamento direto, nem mesmo sabendo exatamente qual é o conteúdo do conjunto de alterações (porque sim, ele não sabe) ... Na verdade, é triste que pessoas reais sigam e paguem pelo seu trabalho, mas bem, bom trabalho surfando por meus próprios méritos, eu acho. Talvez um dia você saia das minhas sombras e faça seu próprio caminho. Isso é o melhor que posso desejar a você.

 

Então, meus agradecimentos aos poucos faróis de luz nesta mera piscina de sombras. Isso é essencialmente para você (e para meu próprio prazer, claro) eu continuo a trabalhar neste projeto amador - iniciado há quase 14 anos.

 

-----------------------------------------------------

 

Conjunto de alterações 409 (3301)

 

SCH, Castelos, IU, Movimento Npc, Retrabalho de taxa de queda, Correções de bugs, Organização

 

SCH - Ty Bandnentans pelo bom trabalho

  • Todos os SCH são normalmente fixos e estão a funcionar.
  • As decorações CH são retrabalhadas (elas têm seu próprio XML, as configurações relacionadas são descartadas).
  • Os CHs de Aden têm a opção Wyvern, conforme declarado nas Notas do Patch. Ty Denzel pelo relatório.
  • Os níveis de recursos CH são corrigidos. Ty Denzel pelo relatório.
  • Corrija o problema do brasão do clã NPC.

Castelos

  • Mantenha o próximo percentual de imposto do Castelo em vez de redefini-lo para 0.
  • Implementação de variáveis ausentes no gerenciamento de cofres do Castle. Ty KejbL pelo relatório.
  • Remova os dobrões sobre os npcIds de residência. Adicione npcId 35552 HTMs. Ty //Dev para relatório.
  • Corrija o cálculo da receita fiscal.

UI

  • Adicione PAPERDOLL como local potencial para IU (corrigir encantamento de gm, consumo de setas). Ty Roko91 pelo relatório.
  • Corrija o cálculo de peso no login. Ty KejbL pelo relatório.
  • Correção da atualização do inventário ao se teletransportar (consumo de BSOE). Ty // Dev para relatório, La Roja para correção.
  • Corrija o peso do inventário na compra do NPC.

Movimento Npc

  • MOVE_TO desejo é purificado sobre onEvtBlocked, evitando construir um desejo infinito.
  • Não adicione MOVE_TO desejo se determinado local não estiver acessível.
  • FLEE não chama event upon onEvtBlocked (esse evento significa que algo errado aconteceu, então é impossível acionar verificações FLEE "regulares").
  • Use Location#equals em alguns scripts.
  • NpcAI#thinkFollow limpeza (-8 arrays, -24 List#get, -8 distance2D).

Retrabalho na taxa de queda

  • A ideia principal é iterar cada categoria X vezes, como se X monstros fossem mortos. Sem recálculo de % ou qualquer outra coisa, é puro e simples. x50 significa que você obteve os drops calculados de 50 monstros.
  • Evite gerar IntIntHolder, gerencie o drop/spoil usando um Map<Integer, Integer> em vez disso, que também permite mesclar itemIds semelhantes.
  • As categorias % são testadas, independentemente de cair ou estragar, o que permite que levelMultiplier seja aplicado corretamente.
  • Monster#dropItem é movido para Npc#dropItem, o que permite que qualquer Npc solte um item e evite o lançamento.
  • "killer" agora faz parte de todos os Npc#dropItem, o que significa que o item está devidamente protegido contra o item.

Correções de bugs

  • Corrija um ClassCastException em Quest#onClanAttacked.
  • Corrija um NegativeSizeArrayException no log do cliente. Descarte alguns erros de log relacionados a tentativas de cliente inválidas.
  • Corrija o NPE em Q635.
  • Correção do cálculo do PDAM antes da divisão de ataque/habilidade física da rev 399. Ty Yoska pelo relatório.
  • Corrija a limpeza automática do título do TradeList. Ty Denzel para relatório / correção.
  • Adicione de volta Config.PARTY_XP_CUTOFF_METHOD opção "nenhuma" ausente. Ty CUCU23 para relatório / correção.
  • Corrija os NPCs do "teto superior". Ty Bandnentans para consertar.
  • Corrigir o método de contribuição de pedra individual dos Sete Sinais. Ty //Dev para relatório.
  • Corrija a tabela de recompensas Q372 e a taxa de queda. Ty //Dev para relatório.
  • O Q348 agora distribui drops como aleatórios de parte, apesar das informações do cliente. Ty Denzel pelo relatório.
  • Conserte Benom se teletransportando para fora. Codifique outros locais de entrada/saída. Ty //Dev para relatório.
  • Não mostre o ícone de Cristalizar no inventário de Caçadores de Recompensas (era uma adição de CT1 GP1). Ty Bandnentans pelo relatório.
  • Substitua "weightPenalty" por "weightLimit" em vez de XMLs de habilidades. Ty //Dev para relatório/correção.
  • Quando os heróis participam de um ataque contra Antharas, Valakas e Baium, o monstro chefe tem a chance de gritar os nomes dos personagens heróis. Ty deekay para consertar.
  • Corrija a implementação do isRaidBoss (um lacaio raidboss sem mestre era considerado raidboss).
  • Corrigir Formigas Enfermeiras não curando a larva da Formiga Rainha.
  • Corrija uma SQLException na inicialização do servidor Olympiad.
  • Correção de uma SQLException sobre a remoção de membros do clã (já que o retrabalho das privs do clã).
  • Corrija o padrão 30169 npcId HTM. Ty Bandnentans pelo relatório.
  • Corrigir a opção de fenda ausente do Guia do Festival. Ty Denzel pelo relatório/semi-correção.
  • Algumas correções de fabricação de anões / gerais
    • Adicione a verificação de integridade da receita máxima ausente.
    • Em caso de falha na loja, chame de volta a janela de gerenciamento.
    • Em caso de falha na loja, não limpe a lista de fabricantes.
    • Após o sucesso da loja, limpe a lista de fabricação reversa (a loja geral bem-sucedida redefine o anão, a loja anã bem-sucedida redefine o geral).

Organização

  • Retrabalhe HtmCache e CrestCache para usar NIO. Mova CrestType para enumerações.
  • Implementação de WorldObject#forEachKnownType / WorldRegion#forEachType & forEachRegion - Evite a sobrecarga de lista em vários locais populares (principalmente verificações de broadcastPacket ou região - que são feitas em todas as verificações de lista conhecida).
  • Rework SkillList, agora ele é tratado como outros pacotes. Excluir o método Player#sendSkillList.
  • Exclua a classe DeadlockDetector e as configurações relacionadas.
  • Adicione GameServer#isServerCrash, com base na implementação LaRoja - sem usos, por enquanto.
  • Mova a classe IPv4Filter para commons.network, exclua o pacote net.sf.l2j.util.
  • Adicione a configuração DefaultSeeRange, use o valor de varejo 450 em vez de 400.
  • Adicione mais registros, obrigado LaRoja pelo pedido de mesclagem.
  • Exclua dimensionalRift.xml não utilizados.
  • Algumas otimizações de ItemContainer.
  • Renomeie todas as ocorrências de adenas para Adena.
  • Correções do SonarLint / UCDetector:
    • Descarte MathUtil#limit, use Math#clamp (introduzido no JDK21).
    • Descarte as seguintes configurações não utilizadas: FS_TIME_ENTRY, FS_TIME_END RAID_MINION_RESPAWN_TIMER.
    • Poucas edições públicas / protegidas / privadas. Muito mais por vir.
    • os casos de switch são mesclados (introduzidos no JDK12).
    • O objeto booleano é comparado a Boolean.FALSE/TRUE, não testado diretamente como um booleano.
    • String#replaceAll é substituído por String#replace quando um padrão regex não está envolvido.
    • Gerar alguns registros: Sequence, TutorialEvent.
    • Poucas variáveis baseadas em classe agora são locais.
    • Use HashMap.newHashMap em vez de new HashMap quando a capacidade for conhecida (mapas finais estáticos). HashMap.newHashMap evita definir a capacidade de 0,75 quando não é necessário.
    • O registro LogRecord foi renomeado para LogRecord logRecord, devido ao fato de record agora ser uma palavra-chave.
    • Use o padrão Singleton adequado para o tipo de instância (principalmente ouvintes).
    • Gere construtores privados chamando IllegalStateException para classes de utilitário.

I'm sorry about the leak, you're a good guy. I talked to you a little and I saw that you really want to do something good for the community. I stopped using your leaked sources years ago because it's unethical but I'm still using older sources with my own corrections. I hope your effort isn't wasted.

Posted
On 9/7/2024 at 2:23 PM, Tryskell said:

spacer.png

 

How will it work ? Everytime a new leak will occur

We will get updates of the pirate? and if so we will get new representation each time as well?

 

Tryskel to Pirates:

davy-jones.gif

 

Posted

@Nightw0lfI kept the PSD, so yes. If more leaks occur, another sacrifice will occur, until being purged.

 

@Trance Updates are pretty much constant, without counting under development content aswell. Revision is both a legacy and public event to get a review of what happened.

 

@Williams Consider to share fixes - they benefit to everyone.

  • 2 weeks later...
Posted

Since last massive leak as explained as 07/09 (notably all development branches), I don't accept anymore financial newcomers that easily. People will have to contribute 100 cookies worth of contributions (bug reports/fixes) as a first step to be accepted as Donator. Free user can join after sharing over 200 cookies out of contributions, compared to 100 cookies before.

You can say thanks to RusAcis, and notably his worthless leader, UnleashedForce.

The size of users will continue to shrink if more leaks occur, until true helpers only will be left.

New prices are as following :

Joining price: 200€ + 100 cookies, or 200 cookies
This fee has to be paid if you are joining aCis project. Next month, and all other months, you will have to donate only basic monthly donation.

Monthly price: 10€ / 10 cookies
This fee has to be paid every month.

I won't accept any new join fee before the 100 cookies contribution. Your money will be instantly sent back.

Also, in the same shape of idea, actual supporters/donators have to be active to stay in sources. It doesn't have to be a particular amount, you just have to share from time to time *anything*. I don't accept anymore silent ppl. Only useful people will be kept.

  • Thanks 1
  • Haha 2
  • 2 weeks later...
Posted

I'd like to join aCis community but i can't handle the contributions that often due to my job. I'm returning to L2 development after a few years away and it would be awesome getting this source to work. I can (and would like to) contribute with reviews and code now and then (i'm software engineer for global companies), but sadly i can't commit the time.

 

I have a hard sense of ethical to not not leak anything (my current web project is paid from nkdev even when there's a leaked version floating around.)

 

Please let me know when/if acceptance through donations is available again. @Tryskell

 

In the mean time, gl on your project. Sounds amazing.

Posted (edited)
On 10/7/2024 at 8:33 PM, mend3 said:

I'd like to join aCis community but i can't handle the contributions that often due to my job. I'm returning to L2 development after a few years away and it would be awesome getting this source to work. I can (and would like to) contribute with reviews and code now and then (i'm software engineer for global companies), but sadly i can't commit the time.

 

I have a hard sense of ethical to not not leak anything (my current web project is paid from nkdev even when there's a leaked version floating around.)

 

Please let me know when/if acceptance through donations is available again. @Tryskell

 

In the mean time, gl on your project. Sounds amazing.

 

Hello, you can share from time to time and build cookies out of it. Once you got 100 cookies, you can either add 200€ or 100 cookies more to get access.

 

Cookies are actually easy to get if you know how to code. Bounties are generally 100+ cookies reward, most fixes begin at 5 cookies (so 20 basic fixes is enough to make 100 cookies), any type of useful rework would be 30-50 cookies.

 

You got "the luck" to come in a time where public version is almost identical to private version - since both versions are pretty similar for now, whatever you find as issue is actually existing and need to be fixed.

 

After you are set on private, I don't request a full commitment ; I just need you to be here from time to time, report shits or sharing fixes. I just don't accept anymore 6/8/10/12 months ppl ghosts, saying and doing nothing.

 

It's enough to get 4-5 average active ppl to get the shit done.

 

Even if you suck at development, if you're a server admin, just sharing your players issues from your own forums is enough, for exemple - you just have to confirm it under PTS. It benefits you (you got free fixes), and it benefits me (I got reports).

 

If you're good at development, well, it's normally easier for you to build cookies. Find some bottlenecks, rework it, profit. I don't even need you to know Lineage 2 - just how to make things performant would be already fine.

 

If you don't have time, generally speaking, avoid to get involved with L2J - at all :D. I don't teach you anything saying programming is time-consuming.

Edited by Tryskell
  • Thanks 1

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



  • Posts

    • Facebook-Ins-X-Pin-Proxy - 150M+ Fresh Residential Proxies    MoMoProxy Official Site: MoMoProxy.com   1. Features ------------------------------------------ 1. 190+ Countries And Millions of City Targeting”; 2. 80M+ Rotating Residential Proxies”; 3. 5M+ 240 Minutes Lasting Sticky Residential Proxies”; 4. 99.64% Request Success Rate.” 5. High Anonymous Clean Residential Proxies. 6. 50M-1GB/S Download and Upload Speed. 7. IP Whitelist Or User Pass Authentication. 8. Convenient IP Abstracting On User Panel, No APP Download. 9. IP Pool Covers 190+ Countries. 10. API For Automation Workflow. 11. Compatible With All Browsers & Devices. 12. SOCKS5 HTTP(S) Proxies. 13. 99.64% Request Success Rate and 99.9% Update. 2. Use Cases: Web Scraping and Data Extraction Use MoMoProxy to access websites anonymously and avoid IP blocking while scraping large volumes of data for research, business intelligence, or competitive analysis. Social Media Management (Multiple Accounts) Manage multiple social media accounts (e.g., Instagram, Twitter, Facebook) simultaneously with different proxy IPs to avoid account bans and increase operational efficiency. SEO and SERP Tracking Use MoMoProxy to perform SEO audits and track search engine result page (SERP) rankings without being blocked by search engines, simulating searches from different geographical locations. E-commerce Price Monitoring Monitor competitors' prices on e-commerce platforms (like Amazon, eBay) by using MoMoProxy's rotating residential IPs to simulate user requests from different regions without getting flagged. Web Testing and Automation Conduct automated web testing by using MoMoProxy to simulate user behavior across different locations, devices, and networks, ensuring that web applications behave consistently under various conditions. Ad Verification Verify online advertisements (display ads, pay-per-click ads) from different IP addresses to ensure proper targeting and compliance with advertising policies. Fraud Prevention and Security Safeguard your online activities (such as financial transactions or account logins) by using MoMoProxy to rotate IP addresses and protect against IP-based attacks or fraud. Market Research Collect data from various sources without being detected or restricted, allowing for comprehensive market research, competitor analysis, and trend forecasting. Mobile App Testing Use MoMoProxy to test mobile applications across different regions and simulate real-world user scenarios, ensuring that apps perform correctly in various network environments. Ticketing and Event Booking Secure tickets for high-demand events by using MoMoProxy to mask your real IP and bypass ticket purchasing limits based on IP addresses. Ad Fraud Prevention Prevent ad fraud by rotating IPs to detect and block suspicious activities related to advertising, ensuring accurate attribution and campaign performance analysis. Academic Research and Surveys Use MoMoProxy to distribute surveys or gather data from different regions without bias due to regional IP filtering or restrictions.   3. Pricing List: ----------------------------------------------- Note: Price List will be changable based on our promotion every month or in some Dig Days. If any question or help please contact our support online timely: Telegram: https://t.me/momoproxy_com Email: support@momoproxy.com 4. Payments: Now MoMoProxy Supports: A. Crypto Currency Payment, including USDT, BTC, and more; B. Alipay HK, UnionPay; C. Doku For local Southeast Asia payment; D. Offline Aliay and WeChat, please contact support Online; (Note: Visa, MasterCard and Paypal is coming within 30 days). 5.Return Policy MoMoProxy Offer 3 days free trial for all new users that will be helpful for you get further experience on MoMoProxy quality before payment. We also provide 24 hours money-back guarantee, which only applies to technical issues related to MoMoProxy servers that we can not fix within 24 hours. 6. FAQ A. How to buy a plan and how about MoMoProxy payments? After logging in, and enter into the user dashboard, please choose the right plan that be suitable for you, and click [Buy Proxy]. Now MoMoProxy Supports: A. Crypto Currency Payment, including USDT, BTC, and more; B. Alipay HK, UnionPay; C. Doku For local Southeast Asia payment; D. Offline Aliay and WeChat, please contact support Online; (Note: Visa, MasterCard and Paypal is coming within 30 days). B. Where can I use residential IP addresses? a. For Handle Proxy Generate, Just Choose [Proxy Setup], Click [Residential Proxies], and go to [Endpoint Generator] Part, and choose [location] and [proxy type], click [Generate] to generate Proxy List, all steps will be easily; b. Residential Proxies (API) is also available for automation. Can I integrate proxies with 3rd party software, bots and automation tools? You can integrate MoMoProxy proxies with all major automation bots under the help of our API. C. Can I select proxies from specific locations? You can access residential proxies through country-specific, state-targeting or city-targeting after using your login credentials (username and password) or in Allowlisted IPs, such as Los Angeles, California, USA. 7. Contact Us Telegram: https://t.me/momoproxy_com Email: support@momoproxy.com 8. How To Get A FREE Trial? Please register your account firstly, and contact support online to get A 1GB Free Trial! Get 1GB Free Trial NOW! Get 1GB Free Trial NOW! Get 1GB Free Trial NOW! Get 1GB Free Trial NOW! Get 1GB Free Trial NOW! Get 1GB Free Trial NOW!
    • Hello! That's funny things: Rates x3 And  "No Donate things affect the game balance"                           GM Donate Shop - B-A-S grade for Donation Coins VIP Status: Rates x8
    • I’ve been using SMS.To for a while now and it’s been solid. No issues with delays so far, and the text messaging works right away for verification. Way easier than dealing with local SIM cards for every site.
    • Good evening, I have a problem with the items+ when I enchant, for example, the armors, the weapons, all the stats are normal. When I put them on my inventory, the +4+5 etc. that I have done do not appear. The project is h5 with the salvation protocol. Can any expert help me fix it? Thanks in advance. some screens... this items is +12   https://prnt.sc/fh2i0pjCHDY_ https://prnt.sc/qc1kLl-S4hn6 https://prnt.sc/CTFw3HOdZDPz  
    • GRAND OPENING TODAY !!!  FROM - 10 OCTOBER 2025, FRIDAY, 20:00 +2GMT.
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock