Examples of chargeSpiritShot()


Examples of l2p.gameserver.model.L2Summon.chargeSpiritShot()

        if(item.getCount() < consumption)
        {
          player.sendPacket(Msg.YOU_DONT_HAVE_ENOUGH_SPIRITSHOTS_NEEDED_FOR_A_PET_SERVITOR);
          return;
        }
        pet.chargeSpiritShot(L2ItemInstance.CHARGED_SPIRITSHOT);
        skillid = 2008;
        break;
      case 6647:
      case 20334:
        if(pet.getChargedSpiritShot() > 1)
View Full Code Here

Examples of l2p.gameserver.model.L2Summon.chargeSpiritShot()

        if(item.getCount() < consumption)
        {
          player.sendPacket(Msg.YOU_DONT_HAVE_ENOUGH_SPIRITSHOTS_NEEDED_FOR_A_PET_SERVITOR);
          return;
        }
        pet.chargeSpiritShot(L2ItemInstance.CHARGED_BLESSED_SPIRITSHOT);
        skillid = 2009;
        break;
    }
    pet.broadcastPacket(new MagicSkillUse(pet, pet, skillid, 1, 0, 0));
    player.getInventory().destroyItem(item, consumption, false);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.