Examples of doDie()

  • l2p.gameserver.model.entity.olympiad.OlympiadGame.doDie()
  • l2p.gameserver.model.instances.L2ChestInstance.doDie()
  • l2p.gameserver.model.instances.L2DoorInstance.doDie()
  • l2p.gameserver.model.instances.L2NpcInstance.doDie()
  • lineage2.gameserver.model.Creature.doDie()
    Method doDie. @param killer Creature
  • lineage2.gameserver.model.entity.olympiad.OlympiadGame.doDie()
    Method doDie. @param player Player @return boolean
  • lineage2.gameserver.model.instances.MonsterInstance.doDie()
    Method doDie. @param player Player @return boolean
  • lineage2.gameserver.model.instances.NpcInstance.doDie()
    Method doDie. @param player Player @return boolean
  • net.sf.l2j.gameserver.model.actor.instance.L2PcInstance.doDie()
    Kill the L2Character, Apply Death Penalty, Manage gain/loss Karma and Item Drop.
    Actions :
  • Reduce the Experience of the L2PcInstance in function of the calculated Death Penalty
  • If necessary, unsummon the Pet of the killed L2PcInstance
  • Manage Karma gain for attacker and Karam loss for the killed L2PcInstance
  • If the killed L2PcInstance has Karma, manage Drop Item
  • Kill the L2PcInstance

  • @param killer the killer @return true, if successful

    Examples of lineage2.gameserver.model.instances.NpcInstance.doDie()

          {
            if (seeSoldier(npc, st.getPlayer()) != null)
            {
              htmltext = "ermian_q454_01.htm";
              NpcInstance soldier = seeSoldier(npc, st.getPlayer());
              soldier.doDie(null);
              soldier.endDecayTask();
              giveReward(st);
              st.setState(COMPLETED);
              st.playSound(SOUND_FINISH);
              st.exitCurrentQuest(this);
    View Full Code Here

    Examples of net.sf.l2j.gameserver.model.actor.instance.L2PcInstance.doDie()

                                   player.abortAttack();
                                   player.abortCast();
                                   player.getStatus().stopHpMpRegeneration();
                                 }
                                 else
                                   player.doDie(activeChar);
                               }
                               }
                               else
                                player.setCurrentHp(player.getCurrentHp() - damage);
                      }
    View Full Code Here

    Examples of net.sf.l2j.gameserver.model.actor.instance.L2PcInstance.doDie()

                             player.abortAttack();
                             player.abortCast();
                             player.getStatus().stopHpMpRegeneration();
                           }
                           else
                             player.doDie(activeChar);
                         }
                       }
                       else
                        player.setCurrentHp(player.getCurrentHp() - damage);
              }
    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.