Ir para conteúdo
  • Cadastre-se

FUSI0N

Membro
  • Total de itens

    485
  • Registro em

  • Última visita

  • Prêmios recebidos

    3

FUSI0N last won the day on Fevereiro 7 2023

FUSI0N had the most liked content!

6 Seguidores

Sobre FUSI0N

  • Data de Nascimento 02/15/1992

Profile Information

  • Gênero
    Masculino

Últimos Visitantes

4190 visualizações

FUSI0N's Achievements

Explorador

Explorador (5/14)

  • Reagindo Bem Rare
  • Puxador de assunto Rare
  • Dedicado Rare
  • Primeiro Post Rare
  • Colaborador Rare

Recent Badges

58

Reputação

  1. vamos colocar a source para download em breve se pa ainda hoje segue o video de como resolvi o erro!
  2. verifique se voce tem a tabela Custom_Npc na sua database com o Id 60016 ele nao esta localizando O ID referente!
  3. FUSI0N

    L2jOrion

    alguem testou o autofarm o comando nao pega .farm
  4. FUSI0N

    L2jOrion

    detalhe ja tentei tudo que tipo de System se ta e loko na conecta
  5. FUSI0N

    L2jOrion

    alguem sabe o porque disso aqui
  6. evento funciona mais os mobs ataca os players mais os player nao ataca os mobs nao entendi
  7. FUSI0N

    L2jOrion

    minha Opniao seria mudar a revisao para java mais atualizado seria uma boa mais vamos ajuda no projeto!
  8. FUSI0N

    L2jOrion

    estou usando java 17 Buildfile: C:\Users\zeina\git\L2jOrion_Interlude_C6\L2jOrion_SourceCode\buildCore.xml VERSION: [substring] Warning: Nashorn engine is planned to be removed from a future JDK release [echo] Revision: vis Build time: 2023-07-24 13:00:31 BUILD: [mkdir] Created dir: C:\Users\zeina\git\L2jOrion_Interlude_C6\L2jOrion_SourceCode\build [mkdir] Created dir: C:\Users\zeina\git\L2jOrion_Interlude_C6\L2jOrion_SourceCode\build\classes [javac] Compiling 1683 source files to C:\Users\zeina\git\L2jOrion_Interlude_C6\L2jOrion_SourceCode\build\classes [javac] warning: [options] bootstrap class path not set in conjunction with -source 8 [javac] Note: C:\Users\zeina\git\L2jOrion_Interlude_C6\L2jOrion_SourceCode\src\l2jorion\logger\impl\JDK14LoggerAdapter.java uses or overrides a deprecated API. [javac] Note: Recompile with -Xlint:deprecation for details. [javac] 1 warning [copy] Copying 1 file to C:\Users\zeina\git\L2jOrion_Interlude_C6\L2jOrion_SourceCode\build\classes\META-INF\services [jar] Building jar: C:\Users\zeina\git\L2jOrion_Interlude_C6\L2jOrion_SourceCode\build\l2jorion-core.jar [delete] Deleting directory C:\Users\zeina\git\L2jOrion_Interlude_C6\L2jOrion_SourceCode\build\classes BUILD SUCCESSFUL Total time: 24 seconds tive que por JAVA 11
  9. FUSI0N

    L2jOrion

    seguinte erro na hora de compilar Buildfile: C:\Users\zeina\git\L2jOrion_Interlude_C6\L2jOrion_SourceCode\buildCore.xml VERSION: [exec] Execute failed: java.io.IOException: Cannot run program ".\svn\svnversion" (in directory "C:\Users\zeina\git\L2jOrion_Interlude_C6\L2jOrion_SourceCode"): CreateProcess error=2, O sistema não pode encontrar o arquivo especificado Java 15 has removed Nashorn, you must provide an engine for running JavaScript yourself. GraalVM JavaScript currently is the preferred option. BUILD FAILED C:\Users\zeina\git\L2jOrion_Interlude_C6\L2jOrion_SourceCode\buildCore.xml:41: Unable to create javax script engine for javascript
  10. FUSI0N

    L2jOrion

    Alguém conseguiu compilar o meu está com erro na hora de compilar Estou ultilizando Java 8 O erro tá aqui nessa linha <exec dir="." executable="./svn/svnversion" outputproperty="revision" failifexecutionfails="false" /> <substring text="${revision}" start="4" end="7" property="rev" />
  11. galera to tentando fazer pegar este script mais nao vai esta tudo OK mais so que ele nao evolui para Mob seguinte como esta no script package net.sf.l2j.gameserver.scripting.script.ai.custom; import java.util.HashMap; import java.util.Map; import net.sf.l2j.commons.random.Rnd; import net.sf.l2j.gameserver.enums.EventHandler; import net.sf.l2j.gameserver.model.actor.Creature; import net.sf.l2j.gameserver.model.actor.Npc; import net.sf.l2j.gameserver.scripting.script.ai.AttackableAIScript; import net.sf.l2j.gameserver.skills.L2Skill; public class EvoMonster extends AttackableAIScript { private static final Map<Integer, Integer[]> MOBSPAWNS = new HashMap<>(); static { MOBSPAWNS.put(1, new Integer[] { 2, 100, 100, -1 }); // Fallen Orc Shaman -> Sharp Talon Tiger (always polymorphs) MOBSPAWNS.put(2, new Integer[] { 3, 100, 20, -1 }); // Ol Mahum Transcender 1st stage MOBSPAWNS.put(3, new Integer[] { 4, 100, 10, -1 }); // Ol Mahum Transcender 2nd stage MOBSPAWNS.put(4, new Integer[] { 5, 100, 5, -1 }); // Ol Mahum Transcender 3rd stage MOBSPAWNS.put(5, new Integer[] { 6, 100, 33, -1 }); // Cave Ant Larva -> Cave Ant MOBSPAWNS.put(6, new Integer[] { 7, 100, 100, -1 }); // Cave Ant Larva -> Cave Ant (always polymorphs) } private static final String[][] MOBTEXTS = { new String[] { "Enough fooling around. Get ready to die!", "You idiot! I've just been toying with you!", "Now the fun starts!" }, new String[] { "I must admit, no one makes my blood boil quite like you do!", "Now the battle begins!", "Witness my true power!" }, new String[] { "Prepare to die!", "I'll double my strength!", "You have more skill than I thought" } }; public EvoMonster() { super("ai/custom"); } @Override protected void registerNpcs() { addEventIds(MOBSPAWNS.keySet(), EventHandler.ATTACKED); } @Override public void onAttacked(Npc npc, Creature attacker, int damage, L2Skill skill) { if (npc.isVisible() && !npc.isDead()) { final Integer[] tmp = MOBSPAWNS.get(npc.getNpcId()); if (tmp != null) { if (npc.getStatus().getHpRatio() * 100 <= tmp[1] && Rnd.get(100) < tmp[2]) { if (tmp[3] >= 0) npc.broadcastNpcSay(Rnd.get(MOBTEXTS[tmp[3]])); final Npc newNpc = addSpawn(tmp[0], npc, false, 0, true); newNpc.forceAttack(attacker, 200); npc.deleteMe(); } } } super.onAttacked(npc, attacker, damage, skill); } } Ids que estou ultilizando Mobs ids : 1, 2, 3, 4, 5, 6, 7
  12. FUSI0N

    RusAcis 3.5

    Nao e nao, os Custom e na database na tabela Spawn_Data mais nao foi implementado a parte delete....
  13. FUSI0N

    RusAcis 3.5

    alguem notou que nao tem //delete?ou esta bugado! detalhe tambem na acis 405 nao tem //delete kkkk nao tem alguem notou?
×
×
  • Criar Novo...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.