/L2EmuProject-DataPack/data/scripts/ai/npc/DeluLizardman.java

http://l2emu.googlecode.com/ · Java · 106 lines · 75 code · 14 blank · 17 comment · 9 complexity · d9f8382cc75c08a59599c5fb95e5acea MD5 · raw file

  1. /*
  2. * This program is free software: you can redistribute it and/or modify it under
  3. * the terms of the GNU General Public License as published by the Free Software
  4. * Foundation, either version 3 of the License, or (at your option) any later
  5. * version.
  6. *
  7. * This program is distributed in the hope that it will be useful, but WITHOUT
  8. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  9. * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  10. * details.
  11. *
  12. * You should have received a copy of the GNU General Public License along with
  13. * this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. package ai.npc;
  16. import ai.L2AttackableAIScript;
  17. import net.l2emuproject.gameserver.network.serverpackets.NpcSay;
  18. import net.l2emuproject.gameserver.world.object.L2Npc;
  19. import net.l2emuproject.gameserver.world.object.L2Player;
  20. import net.l2emuproject.tools.random.Rnd;
  21. /**
  22. * @author Unknown, translated by Intrepid
  23. */
  24. public final class DeluLizardman extends L2AttackableAIScript
  25. {
  26. private static final String QN = "DeluLizardman";
  27. private static final int SPECIAL_AGENT = 21105;
  28. private static final int SPECIAL_COMMANDER = 21107;
  29. private boolean _firstAttackedSecialAgent = false;
  30. private boolean _firstAttackedSecialCommander = false;
  31. public DeluLizardman(int questId, String name, String descr)
  32. {
  33. super(questId, name, descr);
  34. final int[] mobs =
  35. { SPECIAL_AGENT, SPECIAL_COMMANDER };
  36. for (int i : mobs)
  37. {
  38. addAttackId(i);
  39. addKillId(i);
  40. }
  41. _firstAttackedSecialAgent = true;
  42. _firstAttackedSecialCommander = true;
  43. }
  44. @Override
  45. public final String onAttack(L2Npc npc, L2Player attacker, int damage, boolean isPet)
  46. {
  47. final int npcId = npc.getNpcId();
  48. switch (npcId)
  49. {
  50. case SPECIAL_AGENT:
  51. if (_firstAttackedSecialAgent && Rnd.get(100) > 40)
  52. npc.broadcastPacket(new NpcSay(npc, "Hey! Were having a duel here!"));
  53. else
  54. {
  55. npc.broadcastPacket(new NpcSay(npc, "How dare you interrupt our fight! Hey guys, help!"));
  56. _firstAttackedSecialAgent = false;
  57. }
  58. break;
  59. case SPECIAL_COMMANDER:
  60. if (_firstAttackedSecialCommander && Rnd.get(100) > 40)
  61. npc.broadcastPacket(new NpcSay(npc, "Come on, I'll take you on!"));
  62. else
  63. {
  64. npc.broadcastPacket(new NpcSay(npc, "How dare you interrupt a sacred duel! You must be taught a lesson!"));
  65. _firstAttackedSecialCommander = false;
  66. }
  67. break;
  68. }
  69. return super.onAttack(npc, attacker, damage, isPet);
  70. }
  71. @Override
  72. public final String onKill(L2Npc npc, L2Player player, boolean isPet)
  73. {
  74. final int npcId = npc.getNpcId();
  75. switch (npcId)
  76. {
  77. case SPECIAL_AGENT:
  78. if (_firstAttackedSecialAgent)
  79. addSpawn(npcId, npc.getX(), npc.getY(), npc.getZ(), npc.getHeading(), true, 0);
  80. break;
  81. case SPECIAL_COMMANDER:
  82. if (_firstAttackedSecialCommander)
  83. addSpawn(npcId, npc.getX(), npc.getY(), npc.getZ(), npc.getHeading(), true, 0);
  84. break;
  85. }
  86. return "";
  87. }
  88. public static void main(String[] args)
  89. {
  90. new DeluLizardman(-1, QN, "ai");
  91. }
  92. }