Jump to content

ICPNetworks V4 ~~> Multiplataform: L2j & L2OFF


Ivan Pires

Recommended Posts


1 minuto atrás, Akyra_Play disse:

A eu de novo Ivan uma coisa que não acontecia na v3 que vi na v4 e achei menos interessante é das config ao invez de altrar agora cria uma nova

oxe.png

Opa

Na v3 tbm era assim, não mudou. É criada outra linha pra você ter um histórico das alternações feitas e o nome de quem alterou.

Vai me mandando os problemas que você achou que se for bug mesmo eu corrijo. 

 

 

 

Link to comment
Share on other sites

7 minutos atrás, Ivan Pires disse:

Opa

Na v3 tbm era assim, não mudou. É criada outra linha pra você ter um histórico das alternações feitas e o nome de quem alterou.

Vai me mandando os problemas que você achou que se for bug mesmo eu corrijo. 

Opa blz man então foi falta de atenção minha mesmo desculpe na v3 não havia reparado isso kkkk

Link to comment
Share on other sites

8 horas atrás, Akyra_Play disse:

Tava no aguardo da bandeira de clan kkkkkkkkkkkkk

Vou adicionar logo logo.

É que eu precisava liberar logo pro pessoal ir testando e ir reportando os bugs.

7 horas atrás, Akyra_Play disse:

Para instalação dreamv3 erro icp_skill em 67%

erro também em boses

erro.png

Copia esse erro e manda pra mim por favor.

 

 

 

Link to comment
Share on other sites

1 hora atrás, TurtleLess disse:

@Ivan Pires

Quando sai o repositório pra começar as colaborações? 

Provavelmente até amanha.

 

36 minutos atrás, Ghadda disse:

any one know ho kind of server files if i use l2jorion? 

Send me a backup of the database.

 

 

 

Link to comment
Share on other sites

Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'sitedimes.raidboss_status' doesn't exist in C:\xampp\htdocs\ICPV4\engine\classes\Miscellaneous.php:2403 Stack trace: #0 C:\xampp\htdocs\ICPV4\engine\classes\Miscellaneous.php(2403): PDOStatement->execute(Array) #1 C:\xampp\htdocs\ICPV4\engine\classes\Rankings.php(137): ICPNetworks\Miscs\Suport->execute('SELECT (respawn...', Array) #2 C:\xampp\htdocs\ICPV4\engine\module_rankings.php(257): ICPNetworks\Rankings->Bosses(false) #3 C:\xampp\htdocs\ICPV4\engine\module_template.php(62): require_once('C:\\xampp\\htdocs...') #4 C:\xampp\htdocs\ICPV4\index.php(27): require_once('C:\\xampp\\htdocs...') #5 {main} thrown in C:\xampp\htdocs\ICPV4\engine\classes\Miscellaneous.php on line 2403

 

 

 

 

Fatal error: Uncaught PDOException: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'i.item_type' in 'field list' in C:\xampp\htdocs\ICPV4\engine\classes\Miscellaneous.php:2403 Stack trace: #0 C:\xampp\htdocs\ICPV4\engine\classes\Miscellaneous.php(2403): PDOStatement->execute(Array) #1 C:\xampp\htdocs\ICPV4\engine\classes\ICP_Panel.php(442): ICPNetworks\Miscs\Suport->execute('SELECT *, (i.it...', Array) #2 C:\xampp\htdocs\ICPV4\engine\module_icp_panel.php(275): ICPNetworks\ICP_Panel->showCharacterItems('PAPERDOLL', '', 'admin', true, '1') #3 C:\xampp\htdocs\ICPV4\engine\module_template.php(64): require_once('C:\\xampp\\htdocs...') #4 C:\xampp\htdocs\ICPV4\index.php(27): require_once('C:\\xampp\\htdocs...') #5 {main} thrown in C:\xampp\htdocs\ICPV4\engine\classes\Miscellaneous.php on line 2403

 

 

 

Edited by Agencia Dimes Design

JF Jackson Felipe

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
  • Join now

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






  • Patrocinadores

  • Recently Browsing

    • No registered users viewing this page.
  • Similar Content

  • 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.