Jump to content

Devlin

Banned
  • Posts

    1,643
  • Credits

  • Joined

  • Last visited

  • Days Won

    5
  • Feedback

    100%

Everything posted by Devlin

  1. We don't know yet, because we still work on the server. I will announce an unstable date soon.
  2. Post for future updates & such. https://www.facebook.com/L2Revealed -> Like us!
  3. Dear community, We would like to introduce you L2Revealed, a server based on l2j private files & running on Interlude client. https://www.facebook.com/L2Revealed http://l2revealed.elfocrash.eu/forum/index.php Rates - Experience points: x1000 - Skill points: x1000 - Adena drop: x1 - Party experience points: x1000 - Party skill points: x1000 - Top grade lifestone chance: 15% (working glow) Enchant Rates - Safe enchant: +3 - Max enchant: +15 - Normal scroll chance: 66% - Blessed scroll chance: 88% (if fails, item's enchant will be +3) - Crystal scroll chance: 100% Buffs - NPC Buffer (preview can be found below) - Buff Slots: 28 + 4 (divine inspiration) - 1 hour buff delay - Cubics stay after death - Debuffs don't stay after death - Cancellation Skill: after 7 seconds, buffs return back - Subclass hero skills: Heroic Valor Additional Items - Pandora's Chest: use to get random rewards - Caradine's Bless: use to get noblesse status - Charm of Fame: use to get 255 recommends - Clan's Vitalty: use to get 1000 reputation points Events - Zombie - Last Man Standing - Lucky Chests - Team Vs Team - Raid in the Middle - Treasure Hunt Voiced Commands - .topstats: shows top 15 pvp & pk players - .join: you can join the current event - .leave: you can leave the current event - .olympiadtime: shows how many minutes left until olympiad ends Protections - Pvp & Pk protections (same ip, party, clan, ally won't reward) - Event protections (afk protection) Features - Private geodata & pathnodes. - L2Walker protection. - Disabled tutorial. - Disabled clan penalty. - Wedding system. - Class master. - Disabled raid curse. - Starting adena. - Spawn protection: 15 seconds. - Unstuck delay: 15 seconds. - Disabled crafting. - Auto loot. - Community board. - Exchange way: click on adena makes gold bar and the opposite. - Siege winning rewards. - Increased weight limit. - Chances have been removed from augments. - Disabled grade penalty. Image Gallery This is just a simple preview of the server, more information are on the way. Also, many features aren't noticed because they can be found easily in game. Kind Regards, Lineage II Revealed Team.
  4. gameserver/config/functions/developer.properties # Minimum and maximum protocol revision that server allow to connect. # You must keep MinProtocolRevision <= MaxProtocolRevision. # Retail 740 - 746 MinProtocolRevision = 740 MaxProtocolRevision = 746 Min = 1 Max = 999
  5. Hello everyone! Since christmas are on the way, I thought an idea. Every time that you create a character, character will equip a santa hat. Coded on aCis. ### Eclipse Workspace Patch 1.0 #P aCis_gameserver Index: java/net/sf/l2j/gameserver/network/clientpackets/CharacterCreate.java =================================================================== --- java/net/sf/l2j/gameserver/network/clientpackets/CharacterCreate.java (revision 6) +++ java/net/sf/l2j/gameserver/network/clientpackets/CharacterCreate.java (working copy) @@ -168,6 +168,16 @@ } }**/ + if (Config.ALLOW_SANTA_HAT_ON_NEW_CHARACTERS) + { + L2ItemInstance item = newChar.getInventory().addItem("Init", 7836, 1, newChar, null); + if (item.isEquipable()) + { + if (newChar.getActiveWeaponItem() == null || !(item.getItem().getType2() != L2Item.TYPE2_ACCESSORY)) + newChar.getInventory().equipItemAndRecord(item); + } + } + for (L2SkillLearn skill : SkillTreeTable.getInstance().getAvailableSkills(newChar, newChar.getClassId())) { newChar.addSkill(SkillTable.getInstance().getInfo(skill.getId(), skill.getLevel()), true); Index: config/custom.properties =================================================================== --- config/custom.properties (revision 25) +++ config/custom.properties (working copy) @@ -146,4 +146,7 @@ # Remove cubics on death. RemoveCubicsOnDeath = False # Remove debuffs on death. -RemoveDebuffsOnDeath = True \ No newline at end of file +RemoveDebuffsOnDeath = True + +# Santa hat for new players. +AllowSantaHatOnNewCharacters = True \ No newline at end of file Index: java/net/sf/l2j/Config.java =================================================================== --- java/net/sf/l2j/Config.java (revision 25) +++ java/net/sf/l2j/Config.java (working copy) @@ -771,6 +771,8 @@ public static boolean REMOVE_CUBICS_ON_DEATH; public static boolean REMOVE_DEBUFFS_ON_DEATH; + + public static boolean ALLOW_SANTA_HAT_ON_NEW_CHARACTERS; // -------------------------------------------------- @@ -899,6 +901,8 @@ REMOVE_CUBICS_ON_DEATH = custom.getProperty("RemoveCubicsOnDeath", true); REMOVE_DEBUFFS_ON_DEATH = custom.getProperty("RemoveDebuffsOnDeath", true); + + ALLOW_SANTA_HAT_ON_NEW_CHARACTERS = custom.getProperty("AllowSantaHatOnNewCharacters", true); // ... // Clans settings
  6. These are your features that you want to hide from public? Jizz.
  7. Add full code and then press CTRL + SHIFT + O.
  8. Take mine, tested & working. private void getVotesTz() { InputStreamReader isr = null; BufferedReader br = null; try { URLConnection con = new URL(Config.VOTE_REWARD_ENGINE_TOPZONE_LINK).openConnection(); con.addRequestProperty("User-Agent", "Mozilla/4.76"); isr = new InputStreamReader(con.getInputStream()); br = new BufferedReader(isr); boolean got = false; String line; while ((line = br.readLine()) != null) { if (line.contains("<div class=\"rank\"><div class=\"votes2\">Votes:<br>") && !got) { got = true; int votes = Integer.valueOf(line.split("<div class=\"rank\"><div class=\"votes2\">Votes:<br>")[1].replace("</div></div>", "")); tzVotes = votes; } } br.close(); isr.close(); } catch (Exception e) { System.out.println(e); System.out.println("Error while getting server vote count."); } }
  9. Καλή δουλειά αλλά να προσθέσω ότι στο Lan Ip Adress το τελευταίο ψηφίο που ζητάει είναι το τελευταίο ψηφίο του Ipv4 το οποίο υπάρχει στο ipconfig του cmd.
  10. I have to agree with Sweets. No way to start an interlude project.. Too many.
  11. /* * 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 additional.files.items; import net.sf.l2j.gameserver.handler.IItemHandler; import net.sf.l2j.gameserver.model.L2ItemInstance; import net.sf.l2j.gameserver.model.actor.L2Playable; import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance; /** * @author Devlin * */ public class Rec implements IItemHandler { @Override public void useItem(L2Playable playable, L2ItemInstance item, boolean forceUse) { if (!(playable instanceof L2PcInstance)) return; final L2PcInstance p = (L2PcInstance) playable; if (p.getActiveTradeList() != null) { p.sendMessage("You can't use this, while you are trading."); return; } p.setRecomHave(255); p.destroyItem("Init.", item.getObjectId(), 1, p, true); p.sendMessage("You got 255 recommandations."); } }
  12. Στις Ρυθμίσεις έχει μια επιλογή "Επαναφορά".
  13. http://www.macworld.com/article/2028403/dont-get-apple-picked-how-to-protect-your-mac-from-theft-in-public-places.html Dunno αν βοηθάει, απλά διάβασε.
  14. Hello guys. I have a problem with my friend's PC. Let me explain you what is going on.. Computer opens normally, temperatures are fine (not even hot) and after a while (not even hour) computer is shutting down. NOTE: Computer is a bit old without graphic card and such. Any ideas? Thanks in advance.
  15. σιγουρα ειναι πιθανο απο server side. τωρα απο client side δεν εχω ιδεα..
  16. Good luck bro, but this "comming"...
×
×
  • Create New...