Jump to content

B0nd

Members
  • Posts

    351
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by B0nd

  1. This is all the script.. Where i can change the time? package instances.Kamaloka; import net.sf.l2j.gameserver.instancemanager.InstanceManager; import net.sf.l2j.gameserver.instancemanager.InstanceManager.InstanceWorld; import net.sf.l2j.gameserver.model.L2Party; import net.sf.l2j.gameserver.model.actor.L2Npc; import net.sf.l2j.gameserver.model.actor.L2Summon; import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance; import net.sf.l2j.gameserver.model.olympiad.Olympiad; import net.sf.l2j.gameserver.model.quest.Quest; import net.sf.l2j.gameserver.model.quest.QuestState; import net.sf.l2j.gameserver.network.SystemMessageId; import net.sf.l2j.gameserver.network.serverpackets.ExShowScreenMessage; import net.sf.l2j.gameserver.network.serverpackets.SystemMessage; import net.sf.l2j.util.Rnd; public class Kamaloka extends Quest { //NPCs private static int SABRIEL = 90006; private static int TELEPORTER = 90007; private static int TELEPORTER2 = 90012; private static int SQUASH = 90008; //BOSSES private static final int[] BOSSES = {22503,18554,22493,18564,25597}; private static final int FARIS = 95616; //final bosses private static final int[] GRAND_BOSSES = {95657,95658}; //MOBS private static final int[] MOBS = {22485,22490,22491,22497,22488,18558,18559,22494,22499,22500,22502}; //stronger MOBS private static final int[] MOBS_STRONGER = {18562,18555,22487,25617,25621,22505,25616}; private static String qn = "Kamaloka"; private static final int INSTANCEID = 2000; private static boolean debug = false; private static int levelReq = 86; private static int pvpReq = 25; /* //coords private static int[] INITIAL_SPAWN_POINT = {-76435, -185543, -11003}; private static int[] BOSS_ROOM_SPAWN_POINT = {-55580, -219857, -8117};*/ private class teleCoord {int instanceId; int x; int y; int z;} public class KamalokaWorld extends InstanceWorld { private int stage = 0; private int liveMobs = 0; public void incStage() { stage++; } public int getStage() { return stage; } public void incLiveMobs() { liveMobs++; } public void decLiveMobs() { liveMobs--; if (liveMobs < 0) { _log.warning("WTF KAMALOKA declivemobs went into negatives "); } } public int getLiveMobs() { return liveMobs; } public KamalokaWorld() { InstanceManager.getInstance().super(); } } public Kamaloka(int questId, String name, String descr) { super(questId, name, descr); addStartNpc(SABRIEL); addTalkId(SABRIEL); addTalkId(TELEPORTER); addTalkId(TELEPORTER2); for (int boss : BOSSES) addKillId(boss); for (int mob : MOBS) addKillId(mob); for (int mob : MOBS_STRONGER) addKillId(mob); addKillId(FARIS); for (int mob : GRAND_BOSSES) addKillId(mob); } public static void main(String[] args) { new Kamaloka(-1, qn, "instances"); } private boolean checkConditions(L2PcInstance player, boolean single) { if (debug) return true; else { final L2Party party = player.getParty(); if (!single && party != null) { if (party.getMemberCount() > 3) { player.sendMessage("This is a 3 player instance; you cannot enter with a party size > 3 people"); return false; } if (party.getMemberCount() < 3) { player.sendMessage("This is a 3 player instance; you cannot enter with a party size < 3 people"); return false; } if (player.getObjectId() != party.getPartyLeaderOID()) { player.sendPacket(new SystemMessage(2185)); return false; } if (!checkIPs(party)) return false; boolean canEnter = true; for (L2PcInstance ptm : party.getPartyMembers()) { if (ptm == null) return false; if (System.currentTimeMillis() < InstanceManager.getInstance().getInstanceTime(ptm.getAccountName(), INSTANCEID)) { ptm.sendMessage("You can only enter this instance once every day, wait until the next 12AM"); canEnter = false; } else if (ptm.getLevel() < levelReq) { ptm.sendMessage("You must be level "+levelReq+" to enter this instance"); canEnter = false; } else if (ptm.getPvpKills() < pvpReq) { ptm.sendMessage("You must have "+pvpReq+" PvPs to enter this instance"); canEnter = false; } else if (ptm.getPvpFlag() != 0 || ptm.getKarma() > 0) { ptm.sendMessage("You can't enter the instance while in PVP mode or have karma"); canEnter = false; } else if (ptm.isInFunEvent()) { ptm.sendMessage("You can't enter the instance while in an event"); canEnter = false; } else if (ptm.isInDuel() || ptm.isInOlympiadMode() || Olympiad.getInstance().isRegistered(ptm)) { ptm.sendMessage("You can't enter the instance while in duel/oly"); canEnter = false; } else if (!ptm.isInsideRadius(player, 500, true, false)) { ptm.sendMessage("One of your party members is too far away"); canEnter = false; } else { final InstanceWorld world = InstanceManager.getInstance().getPlayerWorld(player); if (world != null) { ptm.sendMessage("You can't enter because you have entered into another instance that hasn't expired yet, try waiting 5 min"); canEnter = false; } } if (!canEnter) { ptm.sendMessage("You're preventing your party from entering an instance"); if (ptm != player) player.sendMessage(ptm.getName()+" is preventing you from entering the instance"); return false; } } } else { if (!single) { player.sendMessage("This is a 3 player instance; you cannot enter with a party size < 3 people"); return false; } /*if (!single && party == null && System.currentTimeMillis() < InstanceManager.getInstance().getInstanceTime(player.getAccountName(), INSTANCEID)) { player.sendMessage("You can only enter this instance once every day, wait until the next 12AM"); return false; } else if (player.getLevel() < levelReq) { player.sendMessage("You must be level "+levelReq+" to enter this instance"); return false; } else if (player.getPvpKills() < pvpReq) { player.sendMessage("You must have "+pvpReq+" PvPs to enter this instance"); return false; } else if (player.getPvpFlag() != 0 || player.getKarma() > 0) { player.sendMessage("You can't enter the instance while in PVP mode or have karma"); return false; } else if (player.isInFunEvent()) { player.sendMessage("You can't enter the instance while in an event"); return false; } else if (player.isInDuel() || player.isInOlympiadMode() || Olympiad.getInstance().isRegistered(player)) { player.sendMessage("You can't enter the instance while in duel/oly"); return false; }*/ } return true; } } private void teleportplayer(L2PcInstance player, teleCoord teleto) { player.setInstanceId(teleto.instanceId); player.teleToLocation(teleto.x, teleto.y, teleto.z); L2Summon pet = player.getPet(); if (pet != null) { pet.setInstanceId(teleto.instanceId); pet.teleToLocation(teleto.x, teleto.y, teleto.z); } return; } protected int enterInstance(L2PcInstance player, String template, teleCoord teleto) { int instanceId = 0; //check for existing instances for this player InstanceWorld world = InstanceManager.getInstance().getPlayerWorld(player); //existing instance if (world != null) { if (world.templateId != INSTANCEID) { player.sendPacket(new SystemMessage(SystemMessageId.ALREADY_ENTERED_ANOTHER_INSTANCE_CANT_ENTER)); return 0; } if (!checkConditions(player, true)) return 0; teleto.instanceId = world.instanceId; teleportplayer(player,teleto); return instanceId; } else //New instance { if (!checkConditions(player, false)) return 0; instanceId = InstanceManager.getInstance().createDynamicInstance(template); world = new KamalokaWorld(); world.instanceId = instanceId; world.templateId = INSTANCEID; InstanceManager.getInstance().addWorld(world); _log.info("Kamaloka: new " + template + " Instance: " + instanceId + " created by player: " + player.getName()); final L2Party party = player.getParty(); if (party != null) { for (L2PcInstance ptm : party.getPartyMembers()) { if (ptm == null) continue; InstanceManager.getInstance().setInstanceTime(ptm.getAccountName(), INSTANCEID, getNextInstanceTime(ONEDAY)); // teleport players teleto.instanceId = instanceId; world.allowed.add(ptm.getObjectId()); auditInstances(ptm, template, instanceId); teleportplayer(ptm,teleto); } } else { InstanceManager.getInstance().setInstanceTime(player.getAccountName(), INSTANCEID, getNextInstanceTime(ONEDAY)); // teleport players teleto.instanceId = instanceId; world.allowed.add(player.getObjectId()); auditInstances(player, template, instanceId); teleportplayer(player,teleto); } spawn1stMobs((KamalokaWorld) world, player); return instanceId; } } protected void exitInstance(L2PcInstance player, teleCoord tele) { player.setInstanceId(0); player.teleToLocation(tele.x, tele.y, tele.z); L2Summon pet = player.getPet(); if (pet != null) { pet.setInstanceId(0); pet.teleToLocation(tele.x, tele.y, tele.z); } } @Override public String onTalk(L2Npc npc, L2PcInstance player) { final int npcId = npc.getNpcId(); QuestState st = player.getQuestState(qn); if (st == null) st = newQuestState(player); if (npcId == SABRIEL) { teleCoord teleto = new teleCoord(); teleto.x = -76435; teleto.y = -185543; teleto.z = -11008; enterInstance(player, "Kamaloka.xml", teleto); } else if (npcId == TELEPORTER) { final InstanceWorld world = InstanceManager.getInstance().getPlayerWorld(player); if (world == null || !(world instanceof KamalokaWorld)) return null; final L2Party party = player.getParty(); final KamalokaWorld kamWorld = (KamalokaWorld)world; if (kamWorld.getStage() == 4) { if (party != null) { for (L2PcInstance ptm : party.getPartyMembers()) { if (ptm == null) continue; ptm.teleToLocation(-76435, -185543, -11003, false); } } else { player.teleToLocation(-76435, -185543, -11003, false); } npc.deleteMe(); spawn1stMobs(kamWorld, player); } else if (kamWorld.getStage() == 9) { if (party != null) { for (L2PcInstance ptm : party.getPartyMembers()) { if (ptm == null) continue; ptm.teleToLocation(-55580, -219857, -8117, false); ptm.sendPacket(new ExShowScreenMessage("The Boss of Kamaloka has Appeared!", 6000)); } } else { player.teleToLocation(-55580, -219857, -8117, false); player.sendPacket(new ExShowScreenMessage("The Boss of Kamaloka has Appeared!", 6000)); } /*npc.deleteMe();*/ } else if (kamWorld.getStage() == 10) { teleCoord teleto = new teleCoord(); teleto.x = -82993; teleto.y = 150860; teleto.z = -3129; if (player.getParty() == null) { exitInstance(player, teleto); player.sendPacket(new ExShowScreenMessage("You have completed the Kamaloka instance", 6000)); } else { for (L2PcInstance ptm : player.getParty().getPartyMembers()) { exitInstance(ptm, teleto); ptm.sendPacket(new ExShowScreenMessage("You have completed the Kamaloka instance", 6000)); } } st.exitQuest(true); } else { _log.warning("LOL wtf kamworld stage is fucked up!"); } } else if (npcId == TELEPORTER2) { final InstanceWorld world = InstanceManager.getInstance().getPlayerWorld(player); if (world == null || !(world instanceof KamalokaWorld)) return null; final KamalokaWorld kamWorld = (KamalokaWorld)world; if (kamWorld.getStage() == 10) { teleCoord teleto = new teleCoord(); teleto.x = -82993; teleto.y = 150860; teleto.z = -3129; if (player.getParty() == null) { exitInstance(player, teleto); player.sendPacket(new ExShowScreenMessage("You have completed the Kamaloka instance", 6000)); } else { for (L2PcInstance ptm : player.getParty().getPartyMembers()) { exitInstance(ptm, teleto); ptm.sendPacket(new ExShowScreenMessage("You have completed the Kamaloka instance", 6000)); } } } else { _log.warning("LOL wtf kamworld stage is fucked up!"); } st.exitQuest(true); } return null; } @Override public String onKill(L2Npc npc, L2PcInstance killer, boolean isPet) { final InstanceWorld world = InstanceManager.getInstance().getPlayerWorld(killer); if (world == null || !(world instanceof KamalokaWorld)) return null; final KamalokaWorld kamWorld = (KamalokaWorld)world; kamWorld.decLiveMobs(); if (kamWorld.getLiveMobs() <= 0) { kamWorld.liveMobs = 0; for (int id : GRAND_BOSSES) { if (id == npc.getNpcId()) { kamWorld.incStage(); addSpawn(TELEPORTER2, -55580, -219857, -8117, 0, false, 0, false, world.instanceId); return null; } } final int stage = kamWorld.getStage(); switch (stage) { case 0: //shouldn't happen spawn1stMobs(kamWorld, killer); break; case 4: spawnGK(kamWorld, killer); break; case 1: case 5: spawn2ndMobs(kamWorld, killer); break; case 2: case 6: spawn3rdMobs(kamWorld, killer); break; case 3: case 7: spawnSubBoss(kamWorld, killer); break; case 8: spawnGrandBoss(kamWorld, killer); spawnGK(kamWorld, killer); spawnSquash(kamWorld, killer); break; } } return null; } public void spawnGK(KamalokaWorld world, L2PcInstance player) { addSpawn(TELEPORTER, -86602, -185545, -10059, 0, false, 0, false, world.instanceId); } public void spawnSquash(KamalokaWorld world, L2PcInstance player) { addSpawn(SQUASH, -76435, -185543, -11003, 0, false, 0, false, world.instanceId); } public void spawn1stMobs(KamalokaWorld world, L2PcInstance player) { if (world.getStage() == 0) { addSpawn(MOBS[Rnd.get(MOBS.length)], -77776, -185543, -11014, 0, false, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS[Rnd.get(MOBS.length)], -77776, -185543, -11014, 0, false, 0, false, world.instanceId); world.incLiveMobs(); world.incStage(); } else { addSpawn(MOBS[Rnd.get(MOBS.length)], -77776, -185543, -11014, 0, false, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS_STRONGER[Rnd.get(MOBS_STRONGER.length)], -77776, -185543, -11014, 0, false, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS[Rnd.get(MOBS.length)], -77776, -185543, -11014, 0, false, 0, false, world.instanceId); world.incLiveMobs(); world.incStage(); } } public void spawn2ndMobs(KamalokaWorld world, L2PcInstance player) { if (world.getStage() == 1) { addSpawn(MOBS[Rnd.get(MOBS.length)], -80108, -185543, -10749, 0, true, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS[Rnd.get(MOBS.length)], -80108, -185543, -10749, 0, true, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS[Rnd.get(MOBS.length)], -80108, -185543, -10749, 0, true, 0, false, world.instanceId); world.incLiveMobs(); world.incStage(); } else { addSpawn(MOBS[Rnd.get(MOBS.length)], -80108, -185543, -10749, 0, true, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS_STRONGER[Rnd.get(MOBS_STRONGER.length)], -80108, -185543, -10749, 0, true, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS[Rnd.get(MOBS.length)], -80108, -185543, -10749, 0, true, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS[Rnd.get(MOBS.length)], -80108, -185543, -10749, 0, true, 0, false, world.instanceId); world.incLiveMobs(); world.incStage(); } } public void spawn3rdMobs(KamalokaWorld world, L2PcInstance player) { if (world.getStage() == 2) { addSpawn(MOBS[Rnd.get(MOBS.length)], -82438, -185543, -10486, 0, true, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS[Rnd.get(MOBS.length)], -82438, -185543, -10486, 0, true, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS[Rnd.get(MOBS.length)], -82438, -185543, -10486, 0, true, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS_STRONGER[Rnd.get(MOBS_STRONGER.length)], -82438, -185543, -10486, 0, true, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS[Rnd.get(MOBS.length)], -82438, -185543, -10486, 0, true, 0, false, world.instanceId); world.incLiveMobs(); world.incStage(); } else { addSpawn(MOBS[Rnd.get(MOBS.length)], -82438, -185543, -10486, 0, true, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS_STRONGER[Rnd.get(MOBS_STRONGER.length)], -82438, -185543, -10486, 0, true, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS[Rnd.get(MOBS.length)], -82438, -185543, -10486, 0, true, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS[Rnd.get(MOBS.length)], -82438, -185543, -10486, 0, true, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS_STRONGER[Rnd.get(MOBS_STRONGER.length)], -82438, -185543, -10486, 0, true, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS_STRONGER[Rnd.get(MOBS_STRONGER.length)], -82438, -185543, -10486, 0, true, 0, false, world.instanceId); world.incLiveMobs(); world.incStage(); } } public void spawnSubBoss(KamalokaWorld world, L2PcInstance player) { if (world.getStage() == 3) { addSpawn(BOSSES[Rnd.get(BOSSES.length)], -86217, -185543, -10042, 0, true, 0, false, world.instanceId); world.incLiveMobs(); world.incStage(); } else { if (Rnd.get(100) < 98) { addSpawn(BOSSES[Rnd.get(BOSSES.length)], -86217, -185543, -10042, 0, true, 0, false, world.instanceId); world.incLiveMobs(); if (Rnd.get(100)> 85) addSpawn(BOSSES[Rnd.get(BOSSES.length)], -86217, -185543, -10042, 0, true, 0, false, world.instanceId); else addSpawn(MOBS_STRONGER[Rnd.get(MOBS_STRONGER.length)], -86217, -185543, -10042, 0, true, 0, false, world.instanceId); world.incLiveMobs(); } else { addSpawn(FARIS, -86217, -185543, -10042, 0, true, 0, false, world.instanceId); world.incLiveMobs(); } world.incStage(); } } public void spawnGrandBoss(KamalokaWorld world, L2PcInstance player) { if (world.getStage() >= 8) { addSpawn(GRAND_BOSSES[Rnd.get(GRAND_BOSSES.length)], -56284, -219858, -8120, 0, false, 0, false, world.instanceId); world.incLiveMobs(); world.incStage(); } else { _log.warning("lol wtf kamaloka spawning grand boss w/o stage being >= 8"); } } }
  2. Welcome to Goddard Pray Room (Full PvP-10 max players). :)
  3. Like this?
  4. If you want i share the Armor. Check me
  5. Hello. I need to share the Blaze Armor for Interlude. Is like Vesper Armor but is Red. Credits: Unknow Download
  6. Blaze Vesper Armor
  7. Hello mxc.. Can anyone help me about IPB Forum. I upload all file's in upload folder and when I go to website/forums I have this:
  8. where is your problem sir?
  9. I dont make this again and i dont know how....help me more :D
  10. Hello guys, can anyone help me to addapt the cloak from H5 to Gracia Final? 1 99076 0 3 2 5 0 dropitems.drop_MFighter_m014_Hrm_ad11 MFighter.MFighter_m014_Hrm_ad11_t00 MFighter.MFighter_m014_Hsm_ad11_t00 0 0 0 0 0 2 0 0 Dods_GV_i_etc.dods_i_cloak_2 -1 220 17 0 0 0 1 24 1 1 6 Fighter.MFighter_m014_Hrm_ad11 109 114 MFighterSimulation.MFighter_m014_Hsm_ad11 109 115 Fighter.MFighter_m015_Lrm_ad11 109 114 MFighterSimulation.MFighter_m015_Lsm_ad11 109 115 Fighter.MFighter_m015_Lrm_ad11 109 114 MFighterSimulation.MFighter_m015_Lsm_ad11 109 115 6 Dods_GV_MFighter.Dods_cloak_fighter_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 Dods_GV_MFighter.Dods_cloak_fighter_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 Dods_GV_MFighter.Dods_cloak_fighter_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 1 1 6 Fighter.FFighter_m014_Hrm_ad11 109 114 FFighterSimulation.FFighter_m014_Hsm_ad11 109 115 Fighter.FFighter_m015_Lrm_ad11 109 114 FFighterSimulation.FFighter_m015_Lsm_ad11 109 115 Fighter.FFighter_m015_Lrm_ad11 109 114 FFighterSimulation.FFighter_m015_Lsm_ad11 109 115 6 Dods_GV_MFighter.Dods_cloak_fighter_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 Dods_GV_MFighter.Dods_cloak_fighter_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 Dods_GV_MFighter.Dods_cloak_fighter_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 1 1 6 DarkElf.MDarkElf_m012_Hrm_ad11 109 114 MDarkElfSimulation.MDarkElf_m012_Hsm_ad11 109 115 DarkElf.MDarkElf_m003_Lrm_ad11 109 114 MDarkElfSimulation.MDarkElf_m003_Lsm_ad11 109 115 DarkElf.MDarkElf_m013_Rrm_ad11 109 114 MDarkElfSimulation.MDarkElf_m013_Rsm_ad11 109 115 6 Dods_GV_MFighter.Dods_cloak_fighter_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 Dods_GV_MFighter.Dods_cloak_fighter_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 Dods_GV_MFighter.Dods_cloak_fighter_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 1 1 6 DarkElf.FDarkElf_m012_Hrm_ad11 109 114 FDarkElfSimulation.FDarkElf_m012_Hsm_ad11 109 115 DarkElf.FDarkElf_m013_Lrm_ad11 109 114 FDarkElfSimulation.FDarkElf_m013_Lsm_ad11 109 115 DarkElf.FDarkElf_m001_Rrm_ad11 109 114 FDarkElfSimulation.FDarkElf_m008_Rsm_ad11 109 115 6 Dods_GV_MFighter.Dods_cloak_fighter_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 Dods_GV_MFighter.Dods_cloak_fighter_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 Dods_GV_MFighter.Dods_cloak_fighter_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 1 1 6 Dwarf.MDwarf_m010_Hrm_ad11 109 114 MDwarfSimulation.MDwarf_m010_Hsm_ad11 109 115 Dwarf.MDwarf_m010_Hrm_ad11 109 114 MDwarfSimulation.MDwarf_m010_Hsm_ad11 109 115 Dwarf.MDwarf_m010_Hrm_ad11 109 114 MDwarfSimulation.MDwarf_m010_Hsm_ad11 109 115 6 Dods_GV_MFighter.Dods_cloak_fighter_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 Dods_GV_MFighter.Dods_cloak_fighter_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 Dods_GV_MFighter.Dods_cloak_fighter_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 1 1 6 Dwarf.FDwarf_m010_Hrm_ad11 109 114 FDwarfSimulation.FDwarf_m010_Hsm_ad11 109 115 Dwarf.FDwarf_m010_Hrm_ad11 109 114 FDwarfSimulation.FDwarf_m010_Hsm_ad11 109 115 Dwarf.FDwarf_m010_Hrm_ad11 109 114 FDwarfSimulation.FDwarf_m010_Hsm_ad11 109 115 6 Dods_GV_MFighter.Dods_cloak_fighter_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 Dods_GV_MFighter.Dods_cloak_fighter_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 Dods_GV_MFighter.Dods_cloak_fighter_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 1 1 6 Elf.MElf_m013_Hrm_ad11 109 114 MElfSimulation.MElf_m013_Hsm_ad11 109 115 Elf.MElf_m014_Lrm_ad11 109 114 MElfSimulation.MElf_m014_Lsm_ad11 109 115 Elf.MElf_m009_Rrm_ad11 109 114 MElfSimulation.MElf_m009_Rsm_ad11 109 115 6 Dods_GV_MFighter.Dods_cloak_fighter_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 Dods_GV_MFighter.Dods_cloak_fighter_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 Dods_GV_MFighter.Dods_cloak_fighter_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 1 1 6 Elf.FElf_m013_Hrm_ad11 109 114 FElfSimulation.FElf_m013_Hsm_ad11 109 115 Elf.FElf_m014_Lrm_ad11 109 114 FElfSimulation.FElf_m014_Lsm_ad11 109 115 Elf.FElf_m006_Rrm_ad11 109 114 FElfSimulation.FElf_m006_Rsm_ad11 109 115 6 Dods_GV_MFighter.Dods_cloak_fighter_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 Dods_GV_MFighter.Dods_cloak_fighter_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 Dods_GV_MFighter.Dods_cloak_fighter_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 1 1 6 Magic.MMagic_m015_Rrm_ad11 109 114 MMagicSimulation.MMagic_m015_Rsm_ad11 109 115 Magic.MMagic_m015_Rrm_ad11 109 114 MMagicSimulation.MMagic_m015_Rsm_ad11 109 115 Magic.MMagic_m015_Rrm_ad11 109 114 MMagicSimulation.MMagic_m015_Rsm_ad11 109 115 6 Dods_GV_MFighter.Dods_cloak_robe_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 Dods_GV_MFighter.Dods_cloak_robe_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 Dods_GV_MFighter.Dods_cloak_fighter_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 1 1 6 Magic.FMagic_m015_Rrm_ad11 109 114 FMagicSimulation.FMagic_m015_Rsm_ad11 109 115 Magic.FMagic_m015_Rrm_ad11 109 114 FMagicSimulation.FMagic_m015_Rsm_ad11 109 115 Magic.FMagic_m015_Rrm_ad11 109 114 FMagicSimulation.FMagic_m015_Rsm_ad11 109 115 6 Dods_GV_MFighter.Dods_cloak_robe_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 Dods_GV_MFighter.Dods_cloak_robe_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 Dods_GV_MFighter.Dods_cloak_robe_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 1 1 6 Orc.MOrc_m009_Hrm_ad11 109 114 MOrcSimulation.MOrc_m009_Hsm_ad11 109 115 Orc.MOrc_m010_Lrm_ad11 109 114 MOrcSimulation.MOrc_m010_Lsm_ad11 109 115 Orc.MOrc_m010_Lrm_ad11 109 114 MOrcSimulation.MOrc_m010_Lsm_ad11 109 115 6 Dods_GV_MFighter.Dods_cloak_fighter_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 Dods_GV_MFighter.Dods_cloak_fighter_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 Dods_GV_MFighter.Dods_cloak_fighter_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 1 1 6 Orc.FOrc_m009_Hrm_ad11 109 114 FOrcSimulation.FOrc_m009_Hsm_ad11 109 115 Orc.FOrc_m010_Lrm_ad11 109 114 FOrcSimulation.FOrc_m010_Lsm_ad11 109 115 Orc.FOrc_m010_Lrm_ad11 109 114 FOrcSimulation.FOrc_m010_Lsm_ad11 109 115 6 Dods_GV_MFighter.Dods_cloak_fighter_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 Dods_GV_MFighter.Dods_cloak_fighter_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 Dods_GV_MFighter.Dods_cloak_fighter_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 1 1 6 Shaman.MShaman_m006_Rrm_ad11 109 114 MShamanSimulation.MShaman_m006_Rsm_ad11 109 115 Shaman.MShaman_m006_Rrm_ad11 109 114 MShamanSimulation.MShaman_m006_Rsm_ad11 109 115 Shaman.MShaman_m006_Rrm_ad11 109 114 MShamanSimulation.MShaman_m006_Rsm_ad11 109 115 6 Dods_GV_MFighter.Dods_cloak_robe_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 Dods_GV_MFighter.Dods_cloak_robe_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 Dods_GV_MFighter.Dods_cloak_robe_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 1 1 6 Shaman.FShaman_m006_Rrm_ad11 109 114 FShamanSimulation.FShaman_m006_Rsm_ad11 109 115 Shaman.FShaman_m006_Rrm_ad11 109 114 FShamanSimulation.FShaman_m006_Rsm_ad11 109 115 Shaman.FShaman_m006_Rrm_ad11 109 114 FShamanSimulation.FShaman_m006_Rsm_ad11 109 115 6 Dods_GV_MFighter.Dods_cloak_robe_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 Dods_GV_MFighter.Dods_cloak_robe_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 Dods_GV_MFighter.Dods_cloak_robe_t00 Dods_GV_MFighter.Dods_cloak_fighter_t01 1 1 6 Kamael.MKamael_m008_Lrm_ad11 109 114 MKamaelSimulation.MKamael_m008_Lsm_ad11 109 115 Kamael.MKamael_m008_Lrm_ad11 109 114 MKamaelSimulation.MKamael_m008_Lsm_ad11 109 115 Kamael.MKamael_m008_Lrm_ad11 109 114 MKamaelSimulation.MKamael_m008_Lsm_ad11 109 115 6 Dods_GV_MFighter.Dods_cloak_kamael_t00 Dods_GV_MFighter.Dods_cloak_kamael_t01 Dods_GV_MFighter.Dods_cloak_kamael_t00 Dods_GV_MFighter.Dods_cloak_kamael_t01 Dods_GV_MFighter.Dods_cloak_kamael_t00 Dods_GV_MFighter.Dods_cloak_kamael_t01 1 1 6 Kamael.FKamael_m008_Lrm_ad11 109 114 FKamaelSimulation.FKamael_m008_Lsm_ad11 109 115 Kamael.FKamael_m008_Lrm_ad11 109 114 FKamaelSimulation.FKamael_m008_Lsm_ad11 109 115 Kamael.FKamael_m008_Lrm_ad11 109 114 FKamaelSimulation.FKamael_m008_Lsm_ad11 109 115 6 Dods_GV_MFighter.Dods_cloak_kamael_t00 Dods_GV_MFighter.Dods_cloak_kamael_t01 Dods_GV_MFighter.Dods_cloak_kamael_t00 Dods_GV_MFighter.Dods_cloak_kamael_t01 Dods_GV_MFighter.Dods_cloak_kamael_t00 Dods_GV_MFighter.Dods_cloak_kamael_t01 1 LineageWeapons.cotton_cloak_m00_mt 1 LineageWeaponsTex.cotton_cloak_t00_mt 0 0 LineageEffect.p_u002_a 1 ItemSound.itemdrop_armor_cloak ItemSound.itemequip_armor_cloak 1 0 0 7 0 30 0 0 0 And this cloak is from my Server. 1 77017 0 3 2 5 0 dropitems.drop_MFighter_m014_Hrm_ad11 FreyaTex.Moirai_Cloak_t03 FreyaTex.Moirai_Cloak_t00 0 0 0 0 0 2 0 0 FreyaTex.Moirai_Cloak_i00 -1 220 17 0 0 0 1 icon.pannel_blessed 24 1 1 2 Fighter.MFighter_m014_Hrm_ad11 109 114 MFighterSimulation.MFighter_m014_Hsm_ad11 109 115 2 FreyaTex.Moirai_Cloak_t03 FreyaTex.Moirai_Cloak_t00 1 1 2 Fighter.FFighter_m014_Hrm_ad11 109 114 FFighterSimulation.FFighter_m014_Hsm_ad11 109 115 2 FreyaTex.Moirai_Cloak_t03 FreyaTex.Moirai_Cloak_t00 1 1 2 DarkElf.MDarkElf_m012_Hrm_ad11 109 114 MDarkElfSimulation.MDarkElf_m012_Hsm_ad11 109 115 2 FreyaTex.Moirai_Cloak_t03 FreyaTex.Moirai_Cloak_t00 1 1 2 DarkElf.FDarkElf_m012_Hrm_ad11 109 114 FDarkElfSimulation.FDarkElf_m012_Hsm_ad11 109 115 2 FreyaTex.Moirai_Cloak_t03 FreyaTex.Moirai_Cloak_t00 1 1 2 Dwarf.MDwarf_m010_Hrm_ad11 109 114 MDwarfSimulation.MDwarf_m010_Hsm_ad11 109 115 2 FreyaTex.Moirai_Cloak_t03 FreyaTex.Moirai_Cloak_t00 1 1 2 Dwarf.FDwarf_m010_Hrm_ad11 109 114 FDwarfSimulation.FDwarf_m010_Hsm_ad11 109 115 2 FreyaTex.Moirai_Cloak_t03 FreyaTex.Moirai_Cloak_t00 1 1 2 Elf.MElf_m013_Hrm_ad11 109 114 MElfSimulation.MElf_m013_Hsm_ad11 109 115 2 FreyaTex.Moirai_Cloak_t03 FreyaTex.Moirai_Cloak_t00 1 1 2 Elf.FElf_m013_Hrm_ad11 109 114 FElfSimulation.FElf_m013_Hsm_ad11 109 115 2 FreyaTex.Moirai_Cloak_t03 FreyaTex.Moirai_Cloak_t00 1 1 2 Magic.MMagic_m015_Rrm_ad11 109 114 MMagicSimulation.MMagic_m015_Rsm_ad11 109 115 2 FreyaTex.Moirai_Cloak_t01 FreyaTex.Moirai_Cloak_t00 1 1 2 Magic.FMagic_m015_Rrm_ad11 109 114 FMagicSimulation.FMagic_m015_Rsm_ad11 109 115 2 FreyaTex.Moirai_Cloak_t01 FreyaTex.Moirai_Cloak_t00 1 1 2 Orc.MOrc_m009_Hrm_ad11 109 114 MOrcSimulation.MOrc_m009_Hsm_ad11 109 115 2 FreyaTex.Moirai_Cloak_t03 FreyaTex.Moirai_Cloak_t00 1 1 2 Orc.FOrc_m009_Hrm_ad11 109 114 FOrcSimulation.FOrc_m009_Hsm_ad11 109 115 2 FreyaTex.Moirai_Cloak_t03 FreyaTex.Moirai_Cloak_t00 1 1 2 Shaman.MShaman_m006_Rrm_ad11 109 114 MShamanSimulation.MShaman_m006_Rsm_ad11 109 115 2 FreyaTex.Moirai_Cloak_t01 FreyaTex.Moirai_Cloak_t00 1 1 2 Shaman.FShaman_m006_Rrm_ad11 109 114 FShamanSimulation.FShaman_m006_Rsm_ad11 109 115 2 FreyaTex.Moirai_Cloak_t01 FreyaTex.Moirai_Cloak_t00 1 1 2 Kamael.MKamael_m008_Lrm_ad11 109 114 MKamaelSimulation.MKamael_m008_Lsm_ad11 109 115 2 FreyaTex.Moirai_Cloak_t04 FreyaTex.Moirai_Cloak_t05 1 1 2 Kamael.FKamael_m008_Lrm_ad11 109 114 FKamaelSimulation.FKamael_m008_Lsm_ad11 109 115 2 FreyaTex.Moirai_Cloak_t04 FreyaTex.Moirai_Cloak_t05 1 LineageWeapons.cotton_cloak_m00_mt 1 LineageWeaponsTex.cotton_cloak_t00_mt 0 0 LineageEffect.p_u002_a 1 ItemSound.itemdrop_armor_cloak ItemSound.itemequip_armor_cloak 1 0 0 6 0 25 0 0 0 thnx.
  11. nice :) where is .psd?? :D
  12. Hello. Mekhanic Weapons for Interlude. Credits: i dont know :P Download
  13. Hello Guys. Suft Hats for Interlude. Credits: SHEV Download
  14. Hello guys. To day i share the Adidas Hat for Interlude. Credits: SHEV Download
  15. Announcement +16 and up items *Topic updated*
  16. { ptm.sendMessage("You can only enter this instance once every day, wait until the next 12AM"); canEnter = false; } and when i join in instance and i leave i check time and he say 60hours ....
  17. this is based l2pride pack but have full change's :)
  18. χαχαχαχα αυτοι οι χυμοι φταινε οντως. -.-
  19. Hello everybody... I need a help about my new instance. I need to join in this instance every 2 (24hours reuse) day's but now i can join every 2,5 day's (60 hours reuse).. Where i can change it? thanks guys..
  20. Prelude is fail.
  21. Is not copy pride guys...is copy finest :)
×
×
  • Create New...