Jump to content

Pack Gracia Final


Kelvin

Recommended Posts


  • Replies 106
  • Created
  • Last Reply
Ta Bugado não é assim mesmo

INSERT INTO `teleport` VALUES ('Keucereus Alliance Base', '900000', '-184232', '242960', '1577', '0', '0');
INSERT INTO `teleport` VALUES ('Seed of Immortality', '900001', '-212818', '209814', '4287', '0', '0');
INSERT INTO `teleport` VALUES ('Kleft Entrada 1', '900002', '-204256', '242148', '1742', '0', '0');
INSERT INTO `teleport` VALUES ('Kleft Entrada 2', '900003', '-205409', '242153', '1742', '0', '0');
INSERT INTO `teleport` VALUES ('Gludio Airship Field', '900004', '-149350', '255313', '-92', '0', '0');
INSERT INTO `teleport` VALUES ('Seed of Destruction 1', '900005', '-248370', '250446', '4336', '0', '0');
INSERT INTO `teleport` VALUES ('Seed of Destruction 2', '900006', '-251425', '250271', '4315', '0', '0');

 

São só essas mesmo?

Então tem pouco lugar, eu achei que tinha um montão :totonto:

Link to comment
Share on other sites

quando cria um clan trava ai na rev de vcs tbm?arrumei a quest ai na hora que termina de cria clan trava tudo

Adeus a turma do forum Obrigados aqueles que me ajudarao a entender oque eu sei sobre l2j.....Abraçao a todos....

Link to comment
Share on other sites

nao axei os html da quast do airship pro clan nem os npcs tem.....a parte dos npcs facil as da quest nao axei nada na net

Adeus a turma do forum Obrigados aqueles que me ajudarao a entender oque eu sei sobre l2j.....Abraçao a todos....

Link to comment
Share on other sites

Essa Rev 191 tem 500x mais bugs que a 180 oO...

Eu tava testando com o Nos...

Mais bugado impossível...

"Não existem pessoas Noobs ou Burras,

Mas sim existem as que Não possuem o Conhecimento,

Ou têm preguiça de encontra-lo." By K4N4BS

 

Estou procurando por Programadores em java, favor me mandar MP.

 

Eu não respondo Dúvidas/Pedidos por MP nem por MSN, nem adianta tentar.

Link to comment
Share on other sites

Kelvin voce ja logo nesse server com char player normal ?

 

Olha so

Hoje peguei dexei logando sem ACC level e Char player vai ataka Gremlin e trava :o

 

Se der loga ae no meu server pra voce ver

 

E ae cara beleza?

 

Eu vi um arquivo seu no 4shared, a system do gracia final desecryptada, porém está com senha o .rar

 

pode me informar a senha ou postar uma sem ela ?

 

Valeu !

Cientista de Dados

Link to comment
Share on other sites

testado e aprovado.

 

Kelvin,

 

estou com um bugsinho... no inventario nao consigo ver o char... nao aparece o desenho do meu char...

 

sabe o que pode ser?

 

Valeuz!

 

Drako, tá dando link inválido.

 

Deu certo esse buffer no gracia?

 

Fico no aguardo do link correto.

 

Valeu!

Hermann (dev)

Lineage Krisiun

http://www.lineagekrisiun.com.br

Link to comment
Share on other sites

testado e aprovado.

Kelvin,

estou com um bugsinho... no inventario nao consigo ver o char... nao aparece o desenho do meu char... 

sabe o que pode ser?

Valeuz!

Drako, tá dando link inválido.

Deu certo esse buffer no gracia?

Fico no aguardo do link correto.

Valeu!

 

Esta com a system do gracia final no cliente gracia final ???

Servidor Lineage II Sem Custom:

Clique aqui

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

  • Join now

    Be part of the largest and oldest communities about Lineage2 in Latin America.






  • Patrocinadores

  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Interessante esse projeto, parabéns @BAN - L2JDev
    • Boa noite alguém pode me manda os arquivos da coroa hero preta??
    • @Kelvin, mesmo efetuando o download do plugin acima, ou trazendo ele junto com a importação do kit, não trouxe os cabeçalhos e rodapés. O que poderia ser?
    • ta dando esse erro ao tentar donatar, alguem sabe como resolver? Edit: o Pagseguro e Paypal estão da mesma forma  O sistema de doação não esta funcionando.  
    • Hola, lo tienen para acis 382, esa version me anda para probar
    • BAN NÃO TOU CONSGUINDO TER ACESSO... TOU SEM O PATCH PODERIA DISPONIBILIZAR ?
    • Hola, ¿tienes un comando de voz para este código?      package net.sf.l2j.gameserver.taskmanager;   import java.util.logging.Logger; import net.sf.l2j.Config; import net.sf.l2j.commons.util.ArraysUtil; import net.sf.l2j.gameserver.enums.ZoneId; import net.sf.l2j.gameserver.model.actor.Creature; import net.sf.l2j.gameserver.model.actor.Player; import net.sf.l2j.gameserver.model.holder.IntIntHolder; import net.sf.l2j.gameserver.skills.L2Skill; import net.sf.l2j.gameserver.skills.effects.EffectTemplate; public class AutoPotionTask implements Runnable  {     protected static final Logger _log = Logger.getLogger(AutoPotionTask.class.getName());     private int itemId;     private Player player;     private static final int[] HP_POTION_SKILL_IDS = new int[]{2031, 2032, 2037};     public AutoPotionTask(int itemId, Player player)      {         this.itemId = itemId;         this.player = player;     }     @Override     public void run()      {         if (player.isInOlympiadMode())          {             player.sendMessage("You cannot that in olympiad mode.");             player.stopAutoPotion(itemId);             return;         }                  if (player.isInJail() || player.isInsideZone(ZoneId.JAIL))          {             player.sendMessage("You cannot that in Jail mode.");             return;         }         if (Config.AUTO_POTIONS_LIMITS.containsKey(itemId))          {             String type = ((String[])Config.AUTO_POTIONS_LIMITS.get(itemId))[0];             int val = Integer.parseInt(((String[])Config.AUTO_POTIONS_LIMITS.get(itemId))[1]);             switch (type)              {                 case "CP":                 {                     if (!(player.getStatus().getCp() / (double)player.getStatus().getMaxCp() * 100.0 > (double)val)) break;                     return;                 }                 case "HP":                  {                     if (!(player.getStatus().getHp() / (double)player.getStatus().getMaxHp() * 100.0 > (double)val)) break;                     return;                 }                 case "MP":                  {                     if (!(player.getStatus().getMp() / (double)player.getStatus().getMaxMp() * 100.0 > (double)val)) break;                     return;                 }             }         }         if (!player.destroyItemByItemId("auto potion use", itemId, 1, null, true))          {             player.stopAutoPotion(itemId);             player.sendMessage("Incorrect item count.");             return;         }         if (player.getInventory().getItemByItemId(itemId) == null)          {             player.stopAutoPotion(itemId);             return;         }         IntIntHolder[] skills = player.getInventory().getItemByItemId(itemId).getEtcItem().getSkills();         if (skills == null)          {             _log.info("{} doesn't have any registered skill for handler." + player.getInventory().getItemByItemId(itemId).getName());             return;         }         for (IntIntHolder skillInfo : skills)          {             EffectTemplate template;             L2Skill itemSkill;             if (skillInfo == null || (itemSkill = skillInfo.getSkill()) == null) continue;             if (!itemSkill.checkCondition((Creature)player, (Creature)player, false))              {                 return;             }             if (player.isSkillDisabled(itemSkill))             {                 return;             }             if (itemSkill.isPotion() || itemSkill.isSimultaneousCast())              {                 player.getAI().tryToCast((Creature)player, itemSkill, false, false, itemId);             }              else              {                 player.getAI().tryToCast((Creature)player, itemSkill, false, false, itemId);             }             int skillId = skillInfo.getId();             if (!ArraysUtil.contains((int[])HP_POTION_SKILL_IDS, (int)skillId) || skillId < player.getShortBuffTaskSkillId() || (template = (EffectTemplate)itemSkill.getEffectTemplates().get(0)) == null) continue;             player.shortBuffStatusUpdate(skillId, skillInfo.getValue(), template.getCounter() * template.getPeriod());         }     }     public int getItemId()      {         return itemId;     } }  
    • @Ivan Pires como está as entregas automáticas desse painel?
×
×
  • Create New...

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.