123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448 |
- /*
- * This program is free software: you can redistribute it and/or modify it under
- * the terms of the GNU General Public License as published by the Free Software
- * Foundation, either version 3 of the License, or (at your option) any later
- * version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
- * details.
- *
- * You should have received a copy of the GNU General Public License along with
- * this program. If not, see <http://www.gnu.org/licenses/>.
- */
- package ai.group_template;
- import java.util.Map;
- import javolution.util.FastMap;
- import com.l2jserver.gameserver.ai.CtrlIntention;
- import com.l2jserver.gameserver.datatables.NpcTable;
- import com.l2jserver.gameserver.datatables.SkillTable;
- import com.l2jserver.gameserver.idfactory.IdFactory;
- import com.l2jserver.gameserver.model.L2Object;
- import com.l2jserver.gameserver.model.L2Skill;
- import com.l2jserver.gameserver.model.actor.L2Attackable;
- import com.l2jserver.gameserver.model.actor.L2Npc;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.model.actor.instance.L2TamedBeastInstance;
- import com.l2jserver.gameserver.model.quest.QuestState;
- import com.l2jserver.gameserver.network.SystemMessageId;
- import com.l2jserver.gameserver.network.serverpackets.AbstractNpcInfo;
- import com.l2jserver.gameserver.network.serverpackets.MyTargetSelected;
- import com.l2jserver.gameserver.network.serverpackets.SocialAction;
- import com.l2jserver.gameserver.network.serverpackets.StatusUpdate;
- import com.l2jserver.gameserver.network.serverpackets.SystemMessage;
- import com.l2jserver.gameserver.skills.SkillHolder;
- import com.l2jserver.gameserver.templates.chars.L2NpcTemplate;
- import com.l2jserver.gameserver.util.Util;
- import com.l2jserver.util.Rnd;
- /**
- * Growth-capable mobs: Polymorphing upon successful feeding.
- * @author Fulminus
- * Updated to Freya by Gigiikun
- */
- public class BeastFarm extends L2AttackableAIScript
- {
- private static final int GOLDEN_SPICE = 15474;
- private static final int CRYSTAL_SPICE = 15475;
- private static final int SKILL_GOLDEN_SPICE = 9049;
- private static final int SKILL_CRYSTAL_SPICE = 9050;
- private static final int SKILL_BLESSED_GOLDEN_SPICE = 9051;
- private static final int SKILL_BLESSED_CRYSTAL_SPICE = 9052;
- private static final int SKILL_SGRADE_GOLDEN_SPICE = 9053;
- private static final int SKILL_SGRADE_CRYSTAL_SPICE = 9054;
- private static final int[] TAMED_BEASTS = { 18869, 18870, 18871, 18872 };
- private static final int TAME_CHANCE = 20;
- private static final int[] SPECIAL_SPICE_CHANCES = { 33, 75 };
-
- // all mobs that can eat...
- private static final int[] FEEDABLE_BEASTS = {
- 18873, 18874, 18875, 18876, 18877, 18878, 18879, 18880, 18881, 18882,
- 18883, 18884, 18885, 18886, 18887, 18888, 18889, 18890, 18891, 18892,
- 18893, 18894, 18895, 18896, 18897, 18898, 18899, 18900
- };
-
- private static Map<Integer,Integer> _FeedInfo = new FastMap<Integer,Integer>();
- private static Map<Integer,GrowthCapableMob> _GrowthCapableMobs = new FastMap<Integer,GrowthCapableMob>();
- private static Map<String, SkillHolder[]> _TamedBeastsData = new FastMap<String, SkillHolder[]>();
-
- // all mobs that grow by eating
- private static class GrowthCapableMob
- {
- private int _chance;
- private int _growthLevel;
- private int _tameNpcId;
- private Map<Integer,Integer> _skillSuccessNpcIdList = new FastMap<Integer,Integer>();
-
- public GrowthCapableMob(int chance, int growthLevel, int tameNpcId)
- {
- _chance = chance;
- _growthLevel = growthLevel;
- _tameNpcId = tameNpcId;
- }
-
- public void addNpcIdForSkillId(int skillId, int npcId)
- {
- _skillSuccessNpcIdList.put(skillId, npcId);
- }
-
- public int getGrowthLevel()
- {
- return _growthLevel;
- }
-
- public int getLeveledNpcId(int skillId)
- {
- if (!_skillSuccessNpcIdList.containsKey(skillId))
- return -1;
- else if (skillId == SKILL_BLESSED_GOLDEN_SPICE || skillId == SKILL_BLESSED_CRYSTAL_SPICE
- || skillId == SKILL_SGRADE_GOLDEN_SPICE || skillId == SKILL_SGRADE_CRYSTAL_SPICE)
- {
- if (Rnd.get(100) < SPECIAL_SPICE_CHANCES[0])
- {
- if (Rnd.get(100) < SPECIAL_SPICE_CHANCES[1])
- return _skillSuccessNpcIdList.get(skillId);
- else if (skillId == SKILL_BLESSED_GOLDEN_SPICE || skillId == SKILL_SGRADE_GOLDEN_SPICE)
- return _skillSuccessNpcIdList.get(SKILL_GOLDEN_SPICE);
- else
- return _skillSuccessNpcIdList.get(SKILL_CRYSTAL_SPICE);
- }
- else
- return -1;
- }
- else if (_growthLevel == 2 && Rnd.get(100) < TAME_CHANCE)
- return _tameNpcId;
- else if (Rnd.get(100) < _chance)
- return _skillSuccessNpcIdList.get(skillId);
- else
- return -1;
- }
- }
-
- public BeastFarm (int questId, String name, String descr)
- {
- super(questId, name, descr);
- this.registerMobs(FEEDABLE_BEASTS, QuestEventType.ON_KILL, QuestEventType.ON_SKILL_SEE);
-
- GrowthCapableMob temp;
-
- // Kookabura
- temp = new GrowthCapableMob(100, 0, 18869);
- temp.addNpcIdForSkillId(SKILL_GOLDEN_SPICE, 18874);
- temp.addNpcIdForSkillId(SKILL_CRYSTAL_SPICE, 18875);
- temp.addNpcIdForSkillId(SKILL_BLESSED_GOLDEN_SPICE, 18869);
- temp.addNpcIdForSkillId(SKILL_BLESSED_CRYSTAL_SPICE, 18869);
- temp.addNpcIdForSkillId(SKILL_SGRADE_GOLDEN_SPICE, 18878);
- temp.addNpcIdForSkillId(SKILL_SGRADE_CRYSTAL_SPICE, 18879);
- _GrowthCapableMobs.put(18873, temp);
-
- temp = new GrowthCapableMob(40, 1, 18869);
- temp.addNpcIdForSkillId(SKILL_GOLDEN_SPICE, 18876);
- _GrowthCapableMobs.put(18874, temp);
-
- temp = new GrowthCapableMob(40, 1, 18869);
- temp.addNpcIdForSkillId(SKILL_CRYSTAL_SPICE, 18877);
- _GrowthCapableMobs.put(18875, temp);
-
- temp = new GrowthCapableMob(25, 2, 18869);
- temp.addNpcIdForSkillId(SKILL_GOLDEN_SPICE, 18878);
- _GrowthCapableMobs.put(18876, temp);
-
- temp = new GrowthCapableMob(25, 2, 18869);
- temp.addNpcIdForSkillId(SKILL_CRYSTAL_SPICE, 18879);
- _GrowthCapableMobs.put(18877, temp);
-
- // Cougar
- temp = new GrowthCapableMob(100, 0, 18870);
- temp.addNpcIdForSkillId(SKILL_GOLDEN_SPICE, 18881);
- temp.addNpcIdForSkillId(SKILL_CRYSTAL_SPICE, 18882);
- temp.addNpcIdForSkillId(SKILL_BLESSED_GOLDEN_SPICE, 18870);
- temp.addNpcIdForSkillId(SKILL_BLESSED_CRYSTAL_SPICE, 18870);
- temp.addNpcIdForSkillId(SKILL_SGRADE_GOLDEN_SPICE, 18885);
- temp.addNpcIdForSkillId(SKILL_SGRADE_CRYSTAL_SPICE, 18886);
- _GrowthCapableMobs.put(18880, temp);
-
- temp = new GrowthCapableMob(40, 1, 18870);
- temp.addNpcIdForSkillId(SKILL_GOLDEN_SPICE, 18883);
- _GrowthCapableMobs.put(18881, temp);
-
- temp = new GrowthCapableMob(40, 1, 18870);
- temp.addNpcIdForSkillId(SKILL_CRYSTAL_SPICE, 18884);
- _GrowthCapableMobs.put(18882, temp);
-
- temp = new GrowthCapableMob(25, 2, 18870);
- temp.addNpcIdForSkillId(SKILL_GOLDEN_SPICE, 18885);
- _GrowthCapableMobs.put(18883, temp);
-
- temp = new GrowthCapableMob(25, 2, 18870);
- temp.addNpcIdForSkillId(SKILL_CRYSTAL_SPICE, 18886);
- _GrowthCapableMobs.put(18884, temp);
-
- // Buffalo
- temp = new GrowthCapableMob(100, 0, 18871);
- temp.addNpcIdForSkillId(SKILL_GOLDEN_SPICE, 18888);
- temp.addNpcIdForSkillId(SKILL_CRYSTAL_SPICE, 18889);
- temp.addNpcIdForSkillId(SKILL_BLESSED_GOLDEN_SPICE, 18871);
- temp.addNpcIdForSkillId(SKILL_BLESSED_CRYSTAL_SPICE, 18871);
- temp.addNpcIdForSkillId(SKILL_SGRADE_GOLDEN_SPICE, 18892);
- temp.addNpcIdForSkillId(SKILL_SGRADE_CRYSTAL_SPICE, 18893);
- _GrowthCapableMobs.put(18887, temp);
-
- temp = new GrowthCapableMob(40, 1, 18871);
- temp.addNpcIdForSkillId(SKILL_GOLDEN_SPICE, 18890);
- _GrowthCapableMobs.put(18888, temp);
-
- temp = new GrowthCapableMob(40, 1, 18871);
- temp.addNpcIdForSkillId(SKILL_CRYSTAL_SPICE, 18891);
- _GrowthCapableMobs.put(18889, temp);
-
- temp = new GrowthCapableMob(25, 2, 18871);
- temp.addNpcIdForSkillId(SKILL_GOLDEN_SPICE, 18892);
- _GrowthCapableMobs.put(18890, temp);
-
- temp = new GrowthCapableMob(25, 2, 18871);
- temp.addNpcIdForSkillId(SKILL_CRYSTAL_SPICE, 18893);
- _GrowthCapableMobs.put(18891, temp);
-
- // Grendel
- temp = new GrowthCapableMob(100, 0, 18872);
- temp.addNpcIdForSkillId(SKILL_GOLDEN_SPICE, 18895);
- temp.addNpcIdForSkillId(SKILL_CRYSTAL_SPICE, 18896);
- temp.addNpcIdForSkillId(SKILL_BLESSED_GOLDEN_SPICE, 18872);
- temp.addNpcIdForSkillId(SKILL_BLESSED_CRYSTAL_SPICE, 18872);
- temp.addNpcIdForSkillId(SKILL_SGRADE_GOLDEN_SPICE, 18899);
- temp.addNpcIdForSkillId(SKILL_SGRADE_CRYSTAL_SPICE, 18900);
- _GrowthCapableMobs.put(18894, temp);
-
- temp = new GrowthCapableMob(40, 1, 18872);
- temp.addNpcIdForSkillId(SKILL_GOLDEN_SPICE, 18897);
- _GrowthCapableMobs.put(18895, temp);
-
- temp = new GrowthCapableMob(40, 1, 18872);
- temp.addNpcIdForSkillId(SKILL_CRYSTAL_SPICE, 18898);
- _GrowthCapableMobs.put(18896, temp);
-
- temp = new GrowthCapableMob(25, 2, 18872);
- temp.addNpcIdForSkillId(SKILL_GOLDEN_SPICE, 18899);
- _GrowthCapableMobs.put(18897, temp);
-
- temp = new GrowthCapableMob(25, 2, 18872);
- temp.addNpcIdForSkillId(SKILL_CRYSTAL_SPICE, 18900);
- _GrowthCapableMobs.put(18898, temp);
-
- // Tamed beasts data
- SkillHolder[] stemp = new SkillHolder[2];
- stemp[0] = new SkillHolder(6432,1);
- stemp[1] = new SkillHolder(6668,1);
- _TamedBeastsData.put("%name% of Focus", stemp);
-
- stemp = new SkillHolder[2];
- stemp[0] = new SkillHolder(6433,1);
- stemp[1] = new SkillHolder(6670,1);
- _TamedBeastsData.put("%name% of Guiding", stemp);
-
- stemp = new SkillHolder[2];
- stemp[0] = new SkillHolder(6434,1);
- stemp[1] = new SkillHolder(6667,1);
- _TamedBeastsData.put("%name% of Swifth", stemp);
-
- stemp = new SkillHolder[1];
- stemp[0] = new SkillHolder(6671,1);
- _TamedBeastsData.put("Berserker %name%", stemp);
-
- stemp = new SkillHolder[2];
- stemp[0] = new SkillHolder(6669,1);
- stemp[1] = new SkillHolder(6672,1);
- _TamedBeastsData.put("%name% of Protect", stemp);
-
- stemp = new SkillHolder[2];
- stemp[0] = new SkillHolder(6431,1);
- stemp[1] = new SkillHolder(6666,1);
- _TamedBeastsData.put("%name% of Vigor", stemp);
- }
-
- public void spawnNext(L2Npc npc, L2PcInstance player, int nextNpcId, int food)
- {
- // remove the feedinfo of the mob that got despawned, if any
- if (_FeedInfo.containsKey(npc.getObjectId()))
- {
- if (_FeedInfo.get(npc.getObjectId()) == player.getObjectId())
- _FeedInfo.remove(npc.getObjectId());
- }
- // despawn the old mob
- //TODO: same code? FIXED?
- /*if (_GrowthCapableMobs.get(npc.getNpcId()).getGrowthLevel() == 0)
- {
- npc.deleteMe();
- }
- else
- {*/
- npc.deleteMe();
- //}
-
- // if this is finally a trained mob, then despawn any other trained mobs that the
- // player might have and initialize the Tamed Beast.
- if (Util.contains(TAMED_BEASTS,nextNpcId))
- {
- L2NpcTemplate template = NpcTable.getInstance().getTemplate(nextNpcId);
- L2TamedBeastInstance nextNpc = new L2TamedBeastInstance(IdFactory.getInstance().getNextId(), template, player, food, npc.getX(), npc.getY(), npc.getZ(), true);
-
- String name = _TamedBeastsData.keySet().toArray(new String[_TamedBeastsData.keySet().size()])[Rnd.get(_TamedBeastsData.size())];
- SkillHolder[] skillList = _TamedBeastsData.get(name);
- switch(nextNpcId)
- {
- case 18869:
- name = name.replace("%name%", "Alpine Kookaburra");
- break;
- case 18870:
- name = name.replace("%name%", "Alpine Cougar");
- break;
- case 18871:
- name = name.replace("%name%", "Alpine Buffalo");
- break;
- case 18872:
- name = name.replace("%name%", "Alpine Grendel");
- break;
- }
- nextNpc.setName(name);
- nextNpc.broadcastPacket(new AbstractNpcInfo.NpcInfo(nextNpc, player));
- for(SkillHolder sh : skillList)
- nextNpc.addBeastSkill(SkillTable.getInstance().getInfo(sh.getSkillId(), sh.getSkillLvl()));
- nextNpc.setRunning();
-
- QuestState st = player.getQuestState("20_BringUpWithLove");
- if (st != null && st.getInt("cond") == 1 && st.getQuestItemsCount(7185) == 0 && Rnd.get(10) == 1)
- {
- //if player has quest 20 going, give quest item
- //it's easier to hardcode it in here than to try and repeat this stuff in the quest
- st.giveItems(7185,1);
- st.set("cond","2");
- }
- }
- else
- {
- // if not trained, the newly spawned mob will automatically be agro against its feeder
- // (what happened to "never bite the hand that feeds you" anyway?!)
- L2Attackable nextNpc = (L2Attackable) this.addSpawn(nextNpcId,npc);
-
- // register the player in the feedinfo for the mob that just spawned
- _FeedInfo.put(nextNpc.getObjectId(),player.getObjectId());
- nextNpc.setRunning();
- nextNpc.addDamageHate(player,0,99999);
- nextNpc.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, player);
-
- player.sendPacket(new MyTargetSelected(nextNpc.getObjectId(), player.getLevel() - nextNpc.getLevel()));
- StatusUpdate su = new StatusUpdate(nextNpc);
- su.addAttribute(StatusUpdate.CUR_HP, (int) nextNpc.getCurrentHp());
- su.addAttribute(StatusUpdate.MAX_HP, nextNpc.getMaxHp());
- player.sendPacket(su);
- player.setTarget(nextNpc);
- }
- }
-
- @Override
- public String onSkillSee (L2Npc npc, L2PcInstance caster, L2Skill skill, L2Object[] targets, boolean isPet)
- {
- // this behavior is only run when the target of skill is the passed npc (chest)
- // i.e. when the player is attempting to open the chest using a skill
- if (!Util.contains(targets,npc))
- {
- return super.onSkillSee(npc,caster,skill,targets,isPet);
- }
- // gather some values on local variables
- int npcId = npc.getNpcId();
- int skillId = skill.getId();
- // check if the npc and skills used are valid for this script. Exit if invalid.
- if (!Util.contains(FEEDABLE_BEASTS,npcId)
- || (skillId !=SKILL_GOLDEN_SPICE && skillId != SKILL_CRYSTAL_SPICE
- && skillId !=SKILL_BLESSED_GOLDEN_SPICE && skillId != SKILL_BLESSED_CRYSTAL_SPICE
- && skillId !=SKILL_SGRADE_GOLDEN_SPICE && skillId != SKILL_SGRADE_CRYSTAL_SPICE))
- {
- return super.onSkillSee(npc,caster,skill,targets,isPet);
- }
-
- // first gather some values on local variables
- int objectId = npc.getObjectId();
- int growthLevel = 3; // if a mob is in FEEDABLE_BEASTS but not in _GrowthCapableMobs, then it's at max growth (3)
- if (_GrowthCapableMobs.containsKey(npcId))
- {
- growthLevel = _GrowthCapableMobs.get(npcId).getGrowthLevel();
- }
-
- // prevent exploit which allows 2 players to simultaneously raise the same 0-growth beast
- // If the mob is at 0th level (when it still listens to all feeders) lock it to the first feeder!
- if (growthLevel == 0 && _FeedInfo.containsKey(objectId))
- {
- return super.onSkillSee(npc,caster,skill,targets,isPet);
- }
- else
- {
- _FeedInfo.put(objectId,caster.getObjectId());
- }
-
- // display the social action of the beast eating the food.
- npc.broadcastPacket(new SocialAction(npc,2));
-
- int food = 0;
- if (skillId == SKILL_GOLDEN_SPICE || skillId == SKILL_BLESSED_GOLDEN_SPICE)
- {
- food = GOLDEN_SPICE;
- }
- else if (skillId == SKILL_CRYSTAL_SPICE || skillId == SKILL_BLESSED_CRYSTAL_SPICE)
- {
- food = CRYSTAL_SPICE;
- }
-
- // if this pet can't grow, it's all done.
- if (_GrowthCapableMobs.containsKey(npcId))
- {
- // do nothing if this mob doesn't eat the specified food (food gets consumed but has no effect).
- int newNpcId = _GrowthCapableMobs.get(npcId).getLeveledNpcId(skillId);
- if (newNpcId == -1)
- {
- if (growthLevel == 0)
- {
- _FeedInfo.remove(objectId);
- npc.setRunning();
- ((L2Attackable)npc).addDamageHate(caster,0,1);
- npc.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, caster);
- }
- return super.onSkillSee(npc,caster,skill,targets,isPet);
- }
- else if (growthLevel > 0 && _FeedInfo.get(objectId) != caster.getObjectId())
- {
- // check if this is the same player as the one who raised it from growth 0.
- // if no, then do not allow a chance to raise the pet (food gets consumed but has no effect).
- return super.onSkillSee(npc,caster,skill,targets,isPet);
- }
- spawnNext(npc,caster,newNpcId,food);
- }
- else
- {
- caster.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.S1).addString("The beast spit out the feed instead of eating it."));
- ((L2Attackable)npc).dropItem(caster, food, 1);
- }
- return super.onSkillSee(npc,caster,skill,targets,isPet);
- }
-
- @Override
- public String onKill (L2Npc npc, L2PcInstance killer, boolean isPet)
- {
- // remove the feedinfo of the mob that got killed, if any
- if (_FeedInfo.containsKey(npc.getObjectId()))
- {
- _FeedInfo.remove(npc.getObjectId());
- }
- return super.onKill(npc,killer,isPet);
- }
-
- public static void main(String[] args)
- {
- // now call the constructor (starts up the ai)
- new BeastFarm(-1,"beast_farm","ai");
- }
- }
|