Jump to content

alextoti13

Members
  • Posts

    262
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by alextoti13

  1. Edit: There is also: The "" Opens the chat, what I mean is the message the system sends to the character Also It can be done: This means that the system will send System: The is also .online alextoti13 (if my char's name is alextoti13) Also when you add ++ here you add a code in the text that will gain the info from the core like the char's name or the expririence or or or whatever you want! Ps: I cant add more quotes in my main post so i make a reply :D Edit: Credits: Mine
  2. Hello I think I have to share this code-guide here Code: Create A Java File Named: Info At com.l2jfrozen.gameserver.handler.voicedcommandhandlers /* * L2jFrozen Project - www.l2jfrozen.com * * 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 com.l2jfrozen.gameserver.handler.voicedcommandhandlers; import com.l2jfrozen.gameserver.handler.IVoicedCommandHandler; import com.l2jfrozen.gameserver.model.L2World; import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance; public class Info implements IVoicedCommandHandler { private static String[] _voicedCommands = { "info" }; @Override public boolean useVoicedCommand(final String command, final L2PcInstance activeChar, final String target) { if (command.equalsIgnoreCase("info")) { activeChar.sendMessage("======<Server's Voiced Commands>======"); activeChar.sendMessage(".online"); activeChar.sendMessage(".changepass"); activeChar.sendMessage(".away/.back"); activeChar.sendMessage(".(eventname)join/leave"); activeChar.sendMessage("Example: .tvtjoin/.tvtleave"); activeChar.sendMessage(".castlemanager"); activeChar.sendMessage(".repair"); activeChar.sendMessage(".stat"); activeChar.sendMessage(".stats"); activeChar.sendMessage(".divorce"); activeChar.sendMessage(".engage"); activeChar.sendMessage(".gotolove"); activeChar.sendMessage("======================="); } return true; } @Override public String[] getVoicedCommandList() { return _voicedCommands; } } Then you have to import it: Find in com.l2jfrozen.gameserver.handler.VoicedCommandHandler.java And Add After That: And Find: And Add After That: Now The Guide: This is the command the users type so in this code is info the is the . so the code is .info You Can Change The "info" to whatever you want in order to let ppl use other word Then With This The Code Starts so you dont have to edit that: Here Is The Code You can edit the: And Change the core code Finally With This the code ends I didnt see any guide and code like that so I share it (the commands are from my pack you may change everything or add ur own infos :D) Have Fun :D!!!!
  3. I didnt understand :D its in core and both in dp
  4. if possible send me via pm
  5. package net.sf.l2j.gameserver.instances.Cot; 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 Cot extends Quest { //NPCs private static int Rusi = 90015; private static int TELEPORTER = 90016; private static int TELEPORTER2 = 90017; private static int SQUASH = 90018; //BOSSES private static final int[] BOSSES = {95622,95626}; private static final int FARIS = 95644; //final bosses private static final int[] GRAND_BOSSES = {95117,95634}; //MOBS private static final int[] MOBS = {95663,95664}; //stronger MOBS private static final int[] MOBS_STRONGER = {95671,95670}; private static String qn = "Cot"; private static final int INSTANCEID = 555; private static boolean debug = false; private static int levelReq = 87; private static int pvpReq = 100; /* //coords private static int[] INITIAL_SPAWN_POINT = {-10872, -185543, -10946}; private static int[] BOSS_ROOM_SPAWN_POINT = {53322, 246380, -6580};*/ private class teleCoord {int instanceId; int x; int y; int z;} public class CotWorld 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 Cot declivemobs went into negatives "); } } public int getLiveMobs() { return liveMobs; } public CotWorld() { InstanceManager.getInstance().super(); } } public Cot(int questId, String name, String descr) { super(questId, name, descr); addStartNpc(Rusi); addTalkId(Rusi); 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 Cot(-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() > 1) { player.sendMessage("This is a 1 player instance; you cannot enter with a party size > 1 people"); return false; } if (party.getMemberCount() < 1) { player.sendMessage("This is a 1 player instance; you cannot enter with a party size < 1 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 1 player instance; you cannot enter with a party size < 1 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 CotWorld(); world.instanceId = instanceId; world.templateId = INSTANCEID; InstanceManager.getInstance().addWorld(world); _log.info("Cot: 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((CotWorld) 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 == Rusi) { teleCoord teleto = new teleCoord(); teleto.x = -10872; teleto.y = -185543; teleto.z = -10946; enterInstance(player, "Cot.xml", teleto); } else if (npcId == TELEPORTER) { final InstanceWorld world = InstanceManager.getInstance().getPlayerWorld(player); if (world == null || !(world instanceof CotWorld)) return null; final L2Party party = player.getParty(); final CotWorld kamWorld = (CotWorld)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(53322, 246380, -6580, false); ptm.sendPacket(new ExShowScreenMessage("The Boss of Cot has Appeared!", 6000)); } } else { player.teleToLocation(53322, 246380, -6580, false); player.sendPacket(new ExShowScreenMessage("The Boss of Cot has Appeared!", 6000)); } /*npc.deleteMe();*/ } else if (kamWorld.getStage() == 10) { teleCoord teleto = new teleCoord(); teleto.x = 147710; teleto.y = -56135; teleto.z = -2777; if (player.getParty() == null) { exitInstance(player, teleto); player.sendPacket(new ExShowScreenMessage("You have completed the Kamloka instance", 6000)); } else { for (L2PcInstance ptm : player.getParty().getPartyMembers()) { exitInstance(ptm, teleto); ptm.sendPacket(new ExShowScreenMessage("You have completed the Kamloka 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 CotWorld)) return null; final CotWorld kamWorld = (CotWorld)world; if (kamWorld.getStage() == 10) { teleCoord teleto = new teleCoord(); teleto.x = 147710; teleto.y = -56135; teleto.z = -2777; if (player.getParty() == null) { exitInstance(player, teleto); player.sendPacket(new ExShowScreenMessage("You have completed the Kamloka instance", 6000)); } else { for (L2PcInstance ptm : player.getParty().getPartyMembers()) { exitInstance(ptm, teleto); ptm.sendPacket(new ExShowScreenMessage("You have completed the Kamloka 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 CotWorld)) return null; final CotWorld kamWorld = (CotWorld)world; kamWorld.decLiveMobs(); if (kamWorld.getLiveMobs() <= 0) { kamWorld.liveMobs = 0; for (int id : GRAND_BOSSES) { if (id == npc.getNpcId()) { kamWorld.incStage(); addSpawn(TELEPORTER2, 53322, 246380, -6580, 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(CotWorld world, L2PcInstance player) { addSpawn(TELEPORTER, -21143, -185528, -9991, 0, false, 0, false, world.instanceId); } public void spawnSquash(CotWorld world, L2PcInstance player) { addSpawn(SQUASH, -10872, -185543, -10946, 0, false, 0, false, world.instanceId); } public void spawn1stMobs(CotWorld world, L2PcInstance player) { if (world.getStage() == 0) { addSpawn(MOBS[Rnd.get(MOBS.length)], -12205, -185525, -10944, 0, false, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS[Rnd.get(MOBS.length)], -12205, -185525, -10944, 0, false, 0, false, world.instanceId); world.incLiveMobs(); world.incStage(); } else { addSpawn(MOBS[Rnd.get(MOBS.length)], -12205, -185525, -10944, 0, false, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS_STRONGER[Rnd.get(MOBS_STRONGER.length)], -12205, -185525, -10944, 0, false, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS[Rnd.get(MOBS.length)], -12205, -185525, -10944, 0, false, 0, false, world.instanceId); world.incLiveMobs(); world.incStage(); } } public void spawn2ndMobs(CotWorld world, L2PcInstance player) { if (world.getStage() == 1) { addSpawn(MOBS[Rnd.get(MOBS.length)], -14534, -185526, -10681, 0, true, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS[Rnd.get(MOBS.length)], -14534, -185526, -10681, 0, true, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS[Rnd.get(MOBS.length)], -14534, -185526, -10681, 0, true, 0, false, world.instanceId); world.incLiveMobs(); world.incStage(); } else { addSpawn(MOBS[Rnd.get(MOBS.length)], -14534, -185526, -10681, 0, true, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS_STRONGER[Rnd.get(MOBS_STRONGER.length)], -14534, -185526, -10681, 0, true, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS[Rnd.get(MOBS.length)], -14534, -185526, -10681, 0, true, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS[Rnd.get(MOBS.length)], -14534, -185526, -10681, 0, true, 0, false, world.instanceId); world.incLiveMobs(); world.incStage(); } } public void spawn3rdMobs(CotWorld world, L2PcInstance player) { if (world.getStage() == 2) { addSpawn(MOBS[Rnd.get(MOBS.length)], -16874, -185527, -10418, 0, true, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS[Rnd.get(MOBS.length)], -16874, -185527, -10418, 0, true, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS[Rnd.get(MOBS.length)], -16874, -185527, -10418, 0, true, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS_STRONGER[Rnd.get(MOBS_STRONGER.length)], -16874, -185527, -10418, 0, true, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS[Rnd.get(MOBS.length)], -16874, -185527, -10418, 0, true, 0, false, world.instanceId); world.incLiveMobs(); world.incStage(); } else { addSpawn(MOBS[Rnd.get(MOBS.length)], -16874, -185527, -10418, 0, true, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS_STRONGER[Rnd.get(MOBS_STRONGER.length)], -16874, -185527, -10418, 0, true, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS[Rnd.get(MOBS.length)], -16874, -185527, -10418, 0, true, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS[Rnd.get(MOBS.length)], -16874, -185527, -10418, 0, true, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS_STRONGER[Rnd.get(MOBS_STRONGER.length)], -16874, -185527, -10418, 0, true, 0, false, world.instanceId); world.incLiveMobs(); addSpawn(MOBS_STRONGER[Rnd.get(MOBS_STRONGER.length)], -16874, -185527, -10418, 0, true, 0, false, world.instanceId); world.incLiveMobs(); world.incStage(); } } public void spawnSubBoss(CotWorld world, L2PcInstance player) { if (world.getStage() == 3) { addSpawn(BOSSES[Rnd.get(BOSSES.length)], -20653, -185528, -9974, 0, true, 0, false, world.instanceId); world.incLiveMobs(); world.incStage(); } else { if (Rnd.get(100) < 98) { addSpawn(BOSSES[Rnd.get(BOSSES.length)], -20653, -185528, -9974, 0, true, 0, false, world.instanceId); world.incLiveMobs(); if (Rnd.get(100)> 85) addSpawn(BOSSES[Rnd.get(BOSSES.length)], -20653, -185528, -9974, 0, true, 0, false, world.instanceId); else addSpawn(MOBS_STRONGER[Rnd.get(MOBS_STRONGER.length)], -20653, -185528, -9974, 0, true, 0, false, world.instanceId); world.incLiveMobs(); } else { addSpawn(FARIS, -20653, -185528, -9974, 0, true, 0, false, world.instanceId); world.incLiveMobs(); } world.incStage(); } } public void spawnGrandBoss(CotWorld world, L2PcInstance player) { if (world.getStage() >= 8) { addSpawn(GRAND_BOSSES[Rnd.get(GRAND_BOSSES.length)], 53330, 246062 -6573, 0, 0, false, world.instanceId); world.incLiveMobs(); world.incStage(); } else { _log.warning("lol wtf Cot spawning grand boss w/o stage being >= 8"); } } }
  6. l2jserver gracia final
  7. Hello i made an instance and i get this error: Plz help me
  8. Hello i use this code: http://pastebin.com/f73atJaK For gracia final I used this sql file since the link was dead: -- ---------------------------- -- Table structure for `votes` -- ---------------------------- DROP TABLE IF EXISTS `votes`; CREATE TABLE `votes` ( `id` int(6) NOT NULL, `vote` int(6) NOT NULL, PRIMARY KEY (`id`) ) DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of votes -- ---------------------------- INSERT INTO votes VALUES ('1', '0'); And always it says vote: 0 and even when i vote plz help me Edit: L2jserver gracia final
  9. why no its not mine ok
  10. L2WarZone or L2Wz is a new pride style server with many changes so i think i shouldnt call him pride style. So lets start Website: http://www.l2wz.com/index.php Also server rates have been encreased and items are more enchanted from shop! Exp: x9300 | SP: x3000 | Adena: x5500 Drop: x1 | Spoil: x1 - 100% Uptime - 100% Private Source platform Final Gracia. - Fully authentic and correct gameplay. - Instances/Skills correctly reworked. - 1st/2nd/3rd Class Changer available. - Unique Features. - 100% Official GamePlay. - Custom Server - LameGuard - Block all Programs. - Vote Reward System - Special Commands - Active GM 24/7 - Retail Lineage 2 Final Gracia (CT2.3) - Game Play! - GM Events! - Geodata/Pathnode Installed - Custom Olympiad System - Spawn Protection - Skills Work 100% - Nexus Event - Mini Event Safe Enchant: +3/4 Maximum Enchant: +20 Read system message when enchanting for rates. SS and BSPS are applied automatically. Vote System. Starting 80 Level Starting with S-Grade Items (+20) Starting Zone Custom Farming zone's with custom monsters, drop, stat's, etc. Max level is level 95. Experience slows down after level 85. When you kill someone you gain fame, exp, random item and skill enchant chance, and chance to get a PvP token. When you die, you lose fame. All of this is also affected by gear difference. Buffs do not exit on death regardless of your Noblesse status. You will get Noblesse status automatically when you kill Barakiel, Noblesse enables you to obtain the Noblesse Tiara and participate in the Olympiad. You can also buy Caradine's Letter in the Misc section of the mysterious merchant for 20 Festival Adena (20 Billion Adena). At starting out, to get basic S grade items with Adena, look in the Wondrous Cubic. Mysterious Merchant is the advanced items seller. If a buff or toggle skill that you cannot use it means it has been made passive. Default # of buffs (including dances and songs) = look on buffer. Shift + click on monsters to see what they drop and their stats. Sit down for greatly increased CP/HP/MP regeneration. Orc Village is a PvP town that's limited to S80 equipment and under. Gludin village is free for all. Max Clans in ally: 3 - Lilith (Lv 94) - Anakim (Lv 94) - Ketra's Chief Brakki (Lv 93) - Varka's Chief Horus (Lv 93) - Sailren (Lv 93) - Shadow of Halisha (Lv 91) - Karpencharr (Lv 93) - Solten Folysai (Lv 93) - Master Anais (Lv 92) - Lidia von Hellmann (Lv 92) - Alfred von Hellmann (Lv 92) - Ember (Lv 91) - Anakim's Nemesis Zakaron (Lv 91) - Queen Shyeed (Lv 92) - Roaring Skylancer (Lv 90) - Palibati Queen Themis (Lv 92) - Cherub Galaxia (Lv 91) * Have and More..See in game!!! * - Mysterious Merchant (Advanced Items) - PvP Merchant (PvP/Rare Items) - Blacksmith (Legendary Blacksmith) - Hakenstern (Forbidden Skills) - Cat Buffer (Buffer) - Randolf (Warehouse) - Yin (Attribute Master) - Avant-Garde (Transformation Wizard) - Sabriel (Kamaloka Teleport) - Malkion (Antharas Watchman) - Cahira (Raidboss Instance) - Test Dummy (Weak) - Test Dummy (Strong) - Token Machine (Get Donation Here) Olympiad game need 20 match for Hero Olympiad game need 40 match for Hero Weapons Retail olympiad game Competition period 2 week Only with S-Grade +0 Olympiad Recall: 20 seconds Hosting Information: CPU : Intel Xeon W3520 Memory : 16 GB DDR3 HDD : 50GB* Connection : 100Mbit DDos Protection : Enabled Operating System: Windows 2008 R2
  11. L2WarZone or L2Wz is a new pride style server with many changes so i think i shouldnt call him pride style. So lets start Website: http://www.l2wz.com/index.php Also server rates have been encreased and items are more enchanted from shop! Exp: x9300 | SP: x3000 | Adena: x5500 Drop: x1 | Spoil: x1 - 100% Uptime - 100% Private Source platform Final Gracia. - Fully authentic and correct gameplay. - Instances/Skills correctly reworked. - 1st/2nd/3rd Class Changer available. - Unique Features. - 100% Official GamePlay. - Custom Server - LameGuard - Block all Programs. - Vote Reward System - Special Commands - Active GM 24/7 - Retail Lineage 2 Final Gracia (CT2.3) - Game Play! - GM Events! - Geodata/Pathnode Installed - Custom Olympiad System - Spawn Protection - Skills Work 100% - Nexus Event - Mini Event Safe Enchant: +3/4 Maximum Enchant: +20 Read system message when enchanting for rates. SS and BSPS are applied automatically. Vote System. Starting 80 Level Starting with S-Grade Items (+20) Starting Zone Custom Farming zone's with custom monsters, drop, stat's, etc. Max level is level 95. Experience slows down after level 85. When you kill someone you gain fame, exp, random item and skill enchant chance, and chance to get a PvP token. When you die, you lose fame. All of this is also affected by gear difference. Buffs do not exit on death regardless of your Noblesse status. You will get Noblesse status automatically when you kill Barakiel, Noblesse enables you to obtain the Noblesse Tiara and participate in the Olympiad. You can also buy Caradine's Letter in the Misc section of the mysterious merchant for 20 Festival Adena (20 Billion Adena). At starting out, to get basic S grade items with Adena, look in the Wondrous Cubic. Mysterious Merchant is the advanced items seller. If a buff or toggle skill that you cannot use it means it has been made passive. Default # of buffs (including dances and songs) = look on buffer. Shift + click on monsters to see what they drop and their stats. Sit down for greatly increased CP/HP/MP regeneration. Orc Village is a PvP town that's limited to S80 equipment and under. Gludin village is free for all. Max Clans in ally: 3 - Lilith (Lv 94) - Anakim (Lv 94) - Ketra's Chief Brakki (Lv 93) - Varka's Chief Horus (Lv 93) - Sailren (Lv 93) - Shadow of Halisha (Lv 91) - Karpencharr (Lv 93) - Solten Folysai (Lv 93) - Master Anais (Lv 92) - Lidia von Hellmann (Lv 92) - Alfred von Hellmann (Lv 92) - Ember (Lv 91) - Anakim's Nemesis Zakaron (Lv 91) - Queen Shyeed (Lv 92) - Roaring Skylancer (Lv 90) - Palibati Queen Themis (Lv 92) - Cherub Galaxia (Lv 91) * Have and More..See in game!!! * - Mysterious Merchant (Advanced Items) - PvP Merchant (PvP/Rare Items) - Blacksmith (Legendary Blacksmith) - Hakenstern (Forbidden Skills) - Cat Buffer (Buffer) - Randolf (Warehouse) - Yin (Attribute Master) - Avant-Garde (Transformation Wizard) - Sabriel (Kamaloka Teleport) - Malkion (Antharas Watchman) - Cahira (Raidboss Instance) - Test Dummy (Weak) - Test Dummy (Strong) - Token Machine (Get Donation Here) Olympiad game need 20 match for Hero Olympiad game need 40 match for Hero Weapons Retail olympiad game Competition period 2 week Only with S-Grade +0 Olympiad Recall: 20 seconds Hosting Information: CPU : Intel Xeon W3520 Memory : 16 GB DDR3 HDD : 50GB* Connection : 100Mbit DDos Protection : Enabled Operating System: Windows 2008 R2
  12. L2WarZone or L2Wz is a new pride style server with many changes so i think i shouldnt call him pride style. So lets start Website: http://www.l2wz.com/index.php Also server rates have been encreased and items are more enchanted from shop! Exp: x9300 | SP: x3000 | Adena: x5500 Drop: x1 | Spoil: x1 - 100% Uptime - 100% Private Source platform Final Gracia. - Fully authentic and correct gameplay. - Instances/Skills correctly reworked. - 1st/2nd/3rd Class Changer available. - Unique Features. - 100% Official GamePlay. - Custom Server - LameGuard - Block all Programs. - Vote Reward System - Special Commands - Active GM 24/7 - Retail Lineage 2 Final Gracia (CT2.3) - Game Play! - GM Events! - Geodata/Pathnode Installed - Custom Olympiad System - Spawn Protection - Skills Work 100% - Nexus Event - Mini Event Safe Enchant: +3/4 Maximum Enchant: +20 Read system message when enchanting for rates. SS and BSPS are applied automatically. Vote System. Starting 80 Level Starting with S-Grade Items (+20) Starting Zone Custom Farming zone's with custom monsters, drop, stat's, etc. Max level is level 95. Experience slows down after level 85. When you kill someone you gain fame, exp, random item and skill enchant chance, and chance to get a PvP token. When you die, you lose fame. All of this is also affected by gear difference. Buffs do not exit on death regardless of your Noblesse status. You will get Noblesse status automatically when you kill Barakiel, Noblesse enables you to obtain the Noblesse Tiara and participate in the Olympiad. You can also buy Caradine's Letter in the Misc section of the mysterious merchant for 20 Festival Adena (20 Billion Adena). At starting out, to get basic S grade items with Adena, look in the Wondrous Cubic. Mysterious Merchant is the advanced items seller. If a buff or toggle skill that you cannot use it means it has been made passive. Default # of buffs (including dances and songs) = look on buffer. Shift + click on monsters to see what they drop and their stats. Sit down for greatly increased CP/HP/MP regeneration. Orc Village is a PvP town that's limited to S80 equipment and under. Gludin village is free for all. Max Clans in ally: 3 - Lilith (Lv 94) - Anakim (Lv 94) - Ketra's Chief Brakki (Lv 93) - Varka's Chief Horus (Lv 93) - Sailren (Lv 93) - Shadow of Halisha (Lv 91) - Karpencharr (Lv 93) - Solten Folysai (Lv 93) - Master Anais (Lv 92) - Lidia von Hellmann (Lv 92) - Alfred von Hellmann (Lv 92) - Ember (Lv 91) - Anakim's Nemesis Zakaron (Lv 91) - Queen Shyeed (Lv 92) - Roaring Skylancer (Lv 90) - Palibati Queen Themis (Lv 92) - Cherub Galaxia (Lv 91) * Have and More..See in game!!! * - Mysterious Merchant (Advanced Items) - PvP Merchant (PvP/Rare Items) - Blacksmith (Legendary Blacksmith) - Hakenstern (Forbidden Skills) - Cat Buffer (Buffer) - Randolf (Warehouse) - Yin (Attribute Master) - Avant-Garde (Transformation Wizard) - Sabriel (Kamaloka Teleport) - Malkion (Antharas Watchman) - Cahira (Raidboss Instance) - Test Dummy (Weak) - Test Dummy (Strong) - Token Machine (Get Donation Here) Olympiad game need 20 match for Hero Olympiad game need 40 match for Hero Weapons Retail olympiad game Competition period 2 week Only with S-Grade +0 Olympiad Recall: 20 seconds Hosting Information: CPU : Intel Xeon W3520 Memory : 16 GB DDR3 HDD : 50GB* Connection : 100Mbit DDos Protection : Enabled Operating System: Windows 2008 R2
  13. lock it
  14. I speak for h5 :D But also there is anywhere to edit their drops only stats
  15. How can i add or change drop data and change name and stats from mobs plz help me
  16. OK thank you but plz tell me if its allowable ok
  17. Hello I think every one knowes the Homepage button in l2 h5 menu ingame (ctrl+x) is there any way to change the link to my server's webiste? Plz help me ok
  18. Hello i get error: L2RaidBossInstance/L2MonsterInstance: CallSkill<> failed. java.lang.classcastexception: [Lcom.l2jserver.gameserver.model.l2jobject; cannot be cast to [Lcom.l2jserver.gameserver.model.actor.L2characher; at com... bla bla bla and i cant target my self neither npcs mobs nth also i have master access 8 and any command works like //admin and it says that the command doesnt exists Clear Pack I only enabled augmented items tradable and enchant chance to tell to characters and added 1 voiced commdand its l2jserver master (h5) from github plz help me Ps: L2object.java missing from this package (edit)
  19. gs>scripts>quests>900_****
  20. Hello how I can make different enchant rate for every scroll for l2jfree h5? Plz help me. Because I don't see any configs
  21. Instances for interlude aren't supported :D but also you cant find it for free! But if you search Olympiad you can find sth I think it uses sth like instances
×
×
  • Create New...