-
Posts
94 -
Credits
0 -
Joined
-
Last visited
-
Days Won
2 -
Feedback
100%
Content Type
Articles
Profiles
Forums
Store
Everything posted by BAN_L2JDev
-
Request Remove license pack
BAN_L2JDev replied to Felipefran's topic in Request Hacks & Cheats [English]
can you break this?open sourcehttps://www.mediafire.com/file/5c7exmlrh1x8zbs/Dream-VIP-225M.7z/file -
Discussion L2JLucera Source code
BAN_L2JDev replied to xFranky's topic in Server Development Discussion [L2J]
can you break this? open source https://www.mediafire.com/file/5c7exmlrh1x8zbs/Dream-VIP-225M.7z/file -
Discussion I will crack any L2j Project for free
BAN_L2JDev replied to Elfo's topic in Server Development Discussion [L2J]
could break again? https://www.mediafire.com/file/5c7exmlrh1x8zbs/Dream-VIP-225M.7z/file#! -
hello I'm new here, more I come to bring this engine Siege renewal Siege Renewal Leader / Member LeaderRewardsID = 0-0; MembersRewardsID = 0-0; https://pastebin.com/QUQ2RH0u L2j-One@Juvenil Amaro™
-
Obrigado já avia conseguido antes da sua resposta quando vi o Codigo Killer pensei mesmo em colocar la mais aCis 384 Attackable.java
-
@melron Hi where can i put this? aCis 384 ! + if (ChristmasEvent.getInstance().isEnabled() && killer instanceof Player) + ChristmasEvent.getInstance().luckySpawn(this, ((Player) killer)); + or I can put it to connect with Load (); em ChristmasEvent.java sorry for the few words i use google translator.
-
Source L2 Acp (Account - Admin Control Panel)
BAN_L2JDev replied to Elfo's topic in Server Shares & Files [L2J]
Hello I have your project clicked in aCis java and registered in gameserver but my computer does not install the programs to bliud the Web could recover the file posted in the topic above Web Compiled -
Code Visual Enchant Effect on CharacterSelection
BAN_L2JDev replied to StinkyMadness's topic in Server Shares & Files [L2J]
hello my friend everything in peace, I liked this new method of showing or enchanting Allow more and move from another place to select or define account creation character equal to chronicles up -
Hello everyone, the members. good I have difficulty making the Craft on engine fakeplayer I would like to leave them as craft already managed to buy and sell, but the craft does not hit all the lines can anyone? aCis 383 Use this engine base is already being used plus this and sell tried to make the craft more is going wrong. @Override public void run() { if (Rnd.get(100) < Config.PHANTOM_PRIVATE_BUY_CHANCE && Config.PHANTOM_PRIVATE_STORE) { fakePlayer.addItem(":", 57, 1000000000, fakePlayer, false); fakePlayer.getBuyList().addItemByItemId(getPrivateBuy(), 1, Rnd.get(1000, 24678)); fakePlayer.getBuyList().setTitle(getPrivateBuy_Title()); fakePlayer.sitDown(); fakePlayer.setStoreType(StoreType.BUY); fakePlayer.broadcastUserInfo(); fakePlayer.broadcastPacket(new PrivateStoreMsgBuy(fakePlayer)); } else if (Rnd.get(100) < Config.PHANTOM_PRIVATE_SELL_CHANCE && Config.PHANTOM_PRIVATE_STORE) { fakePlayer.addItem(":", getPrivateSell(), 1, fakePlayer, true); for (ItemInstance itemDrop : fakePlayer.getInventory().getItems()) fakePlayer.getSellList().addItem(itemDrop.getObjectId(), 1, Rnd.get(100456789, 150456789)); fakePlayer.getSellList().setTitle(getPrivateSell_Title()); fakePlayer.getSellList().setPackaged(StoreType.SELL == StoreType.PACKAGE_SELL); fakePlayer.sitDown(); fakePlayer.setStoreType(StoreType.SELL); fakePlayer.broadcastUserInfo(); fakePlayer.broadcastPacket(new PrivateStoreMsgSell(fakePlayer)); } else { if (fakePlayer.isSpawnProtected()) fakePlayer.setSpawnProtection(false); fakePlayer.rndWalk(); PhantomStore.startWalk(fakePlayer); } } }
-
Hera with effect - iNTERLUDE
BAN_L2JDev replied to SGER@fjs's topic in Client Development Discussion
pt_br Muito lindo parabéns sempre acompanho seus trabalhos são excelentes. poderia postar com o efeito que pista em 100% opacidade EN Very beautiful congratulations always accompany your works are excellent. could post with that track effect at 100% opacity -
Help [Help] Remaining Time + Teleport
BAN_L2JDev replied to BAN_L2JDev's question in Request Server Development Help [L2J]
Thank you for your attention with this I managed to reach the goal I was looking for. I'm just a novice ... Thank you all Obrigado pela atenção de vocês com isso consegui a chegar no objetivo que eu buscava. sou apenas um novado... Grato a todos -
Help [Help] Remaining Time + Teleport
BAN_L2JDev posted a question in Request Server Development Help [L2J]
PT_BR = Ola membros do Fórum sou novato, e estou escrevendo esse código mais logo a quanto o tempo termina ele teleporta mais gera muitos erro ao GameServer Esta funcionando mais queria retirar os erros que da em Google translator EN= The members of the Forum are newbies, and are signing this code sooner in time the teleports finish some more errors to GameServer This works more wanted removed the errors that in Model.Foke Model.Player Model.Walker WARNING Exception in a Runnable execution:java.lang.ClassCastException: net.sf.l2j.gameserver.model.actor.instance.Walker cannot be cast to net.sf.l2j.gameserver.model.actor.instance.Player package net.sf.l2j.gameserver.model.zone.type; import java.util.Collection; import java.util.concurrent.ScheduledFuture; import java.util.stream.Collectors; import net.sf.l2j.commons.concurrent.ThreadPool; import net.sf.l2j.gameserver.network.serverpackets.ExShowScreenMessage; import net.sf.l2j.gameserver.network.serverpackets.ExShowScreenMessage.SMPOS; import net.sf.l2j.gameserver.model.actor.Creature; import net.sf.l2j.gameserver.model.actor.instance.Player; import net.sf.l2j.gameserver.model.zone.SpawnZoneType; import net.sf.l2j.gameserver.model.zone.ZoneId; public class EventZone extends SpawnZoneType { protected ScheduledFuture<?> _counterTask = null; protected int _timer = 5 * 60; public EventZone(int id) { super(id); } @Override protected void onEnter(Creature character) { if (character instanceof Player && _counterTask == null) _counterTask = startCounter(); character.setInsideZone(ZoneId.PEACE, true); ThreadPool.schedule(new Runnable() { @Override public void run() { ((Player) character).teleToLocation(83597, 147888, -3405, 0); ((Player) character).sendMessage("Evento Finalizado!"); } }, 1000 * 300); } private ScheduledFuture<?> startCounter() { return ThreadPool.scheduleAtFixedRate(new Counter(), 1000, 1000); } @Override protected void onExit(Creature character) { character.setInsideZone(ZoneId.PEACE, false); if (getPlayers().size() < 1) resetCounter(); } @Override public void onDieInside(Creature character) { } @Override public void onReviveInside(Creature character) { character.setCurrentHp(character.getMaxHp()); character.setCurrentCp(character.getMaxCp()); character.setCurrentMp(character.getMaxMp()); onEnter(character); } public Collection<Player> getPlayers() { return getCharacters().stream().filter(pl -> pl instanceof Player).map(cr -> (Player) cr).collect(Collectors.toList()); } protected void resetCounter() { if (_counterTask != null) { _counterTask.cancel(true); _counterTask = null; } _timer = 5 * 60; } class Counter implements Runnable { protected Counter() { } @Override public void run() { if (_timer < 1) { resetCounter(); return; } for (Player player : getPlayers()) { int minutes = _timer / 60; int second = _timer % 60; String timing = ((minutes < 10) ? ("0" + minutes) : minutes) + ":" + ((second < 10) ? ("0" + second) : second); player.sendPacket(new ExShowScreenMessage("Event Farm: " + timing, 1100, SMPOS.TOP_CENTER, false)); } _timer--; } } } BR= Soucer Acis Atual! EN= Source Acis -
Guide Creating Monsters Properly (With Attack Effect And Sound)
BAN_L2JDev replied to GLO's topic in Client Development Discussion
Aprendi muito com seus tutorial, muito obrigado. consigo criar meus mostro, mais tenho uma duvida como que altero LineageMonster.u dos Pet pra montar nos que eu criei ? -
Guide Creating Costumes For Interlude
BAN_L2JDev replied to GLO's topic in Client Development Discussion
Muito obrigado por mais um belo tutorial. -
otimo to conseguindo fazer sem problemas obrigado belo tutorial
-
Guide Creating Monsters Properly (With Attack Effect And Sound)
BAN_L2JDev replied to GLO's topic in Client Development Discussion
Estou experimentando coisas novas gostei do guia. -
Guide Adapting Skills And Effects To Interlude
BAN_L2JDev replied to GLO's topic in Client Development Discussion
Esses conteúdo são incríveis, estou estudando cada um deles! tenho bastante enternece de aprender... -
Guide Creating Effects And Attaching It To A Npc
BAN_L2JDev replied to GLO's topic in Client Development Discussion
Eu quero muito aprender Isso!!! Obrigado Irei estudar bastente -
adapt it for interlude ?