Jump to content

eKoIce

Legendary Member
  • Posts

    2,598
  • Credits

  • Joined

  • Last visited

  • Days Won

    4
  • Feedback

    0%

Everything posted by eKoIce

  1. I dont need them if there isnt any glow. is there any live server using them ? so we can check their weapgroup.dat ?
  2. dude, cant add them to weapgroup.dat can you share yours for Hi5 ?
  3. Hi, im looking for Beta Testers for my upcoming l2server. its Hi5, actually its a work in progress. I need you ppl to find as many bugs as you can, including to suggest new features, or to correct the present ones. the features are still undecided, but will be a mid rate, max 250xp, 250sp, 350 adena. right now its all 5000x there is alt+b stuff, check yourself. remote class master. custom starting zone, to lvl up fast. reward system for some predefined levels, like Shots, enchant scrolls, etc. custom solo and party zones, to get l2eko adena and l2eko tokens, needed for the top items in game. right now the enchant rates are +6 safe, to +16 with normal scrolls or alt+b enchanter for tokens. to +20 with custom scrolls dropped by Epic Grandbosses, so extremely rare. there is a custom scroll, to port you where the pvp is going at the moment (need to be more than 3+ players flagged). there is 3 custom comands: .offensive (+35% patk matk -35% mdef pdef), .defensive (+35% mdef pdef -35% patk matk), .normal (back to normal stats). the server is located in moldova, customized and hardened by me, ubuntu 12.04 64bit. there should be a ddos protection on the dedicated, by the datancencer, Im asking if someone could test that ddos protection, by attacking me, so i'd know its effective or not. updater (super beta) => https://copy.com/00OzFth0yERu extract on your Lineage2 Directory, rename your old system folder or better delete it, run the updater, full check twice, login, have fun, report bugs here. (autocreate accounts.) there isnt ANY website YET.
  4. so let me understand, you want to open a l2j server on your own pc, for you and your friends? if yes, enter your modem/router, open the ports 2106, 7777, install no-ip duc, setup the hostname in your server configs to your no-ip hostname, test if the ports are open, profit. :D
  5. setup where? home pc ? dedicated machine? what operating system ?
  6. your Edit, and this modification made the trick : http://pastebin.com/ChPtRhSJ Now its working stable, I might try to use the previous version, the one I was using, maybe works with these setup of skill model. thanks for the moment!
  7. the code is already in the 1st post. anyway this is the code shared on l2jforums : I've tried to adapt it to the latest hi5 release: Core: ### Eclipse Workspace Patch 1.0 #P L2_GameServer Index: java/com/l2jserver/Config.java =================================================================== --- java/com/l2jserver/Config.java (revision 3813) +++ java/com/l2jserver/Config.java (working copy) @@ -647,6 +659,14 @@ public static boolean ANNOUNCE_PK_PVP_NORMAL_MESSAGE; public static String ANNOUNCE_PK_MSG; public static String ANNOUNCE_PVP_MSG; + public static boolean ALLOW_SPECIAL_VOICED_COMMANDS; //-------------------------------------------------- // NPC Settings @@ -2135,6 +2178,8 @@ ANNOUNCE_PK_MSG = L2JModSettings.getProperty("AnnouncePkMsg", "$killer has slaughtered $target"); ANNOUNCE_PVP_MSG = L2JModSettings.getProperty("AnnouncePvpMsg", "$killer has defeated $target"); + ALLOW_SPECIAL_VOICED_COMMANDS = Boolean.parseBoolean(L2JModSettings.getProperty("AllowSpecialVoicedCommands", "False")); + } catch (Exception e) { Index: java/config/l2jmods.properties =================================================================== --- java/config/l2jmods.properties (revision 3813) +++ java/config/l2jmods.properties (working copy) @@ -319,4 +350,61 @@ # Pvp message template # variables: $killer, $target -AnnouncePvpMsg = $killer has defeated $target \ No newline at end of file +AnnouncePvpMsg = $killer has defeated $target +# --------------------------------------------------------------------------- +# Special Commands +# --------------------------------------------------------------------------- +# Allow Special commands? +# Usage: .offensive, .defensive, .normal +# Offensive: +20% P/M.Atk -20% P/M.Def +# Defensive: -20% P/M.Atk +20% P/M.Def +# Normal: Back to normal mode. +# Default: False +AllowSpecialVoicedCommands = False \ No newline at end of file DP: ### Eclipse Workspace Patch 1.0 #P datapack_development Index: data/stats/skills/9000-9099.xml =================================================================== --- data/stats/skills/9000-9099.xml (revision 6891) +++ data/stats/skills/9000-9099.xml (working copy) @@ -226,4 +226,30 @@ <set name="skillType" val="NOTDONE" /> <set name="operateType" val="OP_PASSIVE" /> </skill> + <skill id="9098" levels="1" name="Offensive"> + <set name="target" val="TARGET_SELF" /> + <set name="skillType" val="CONT" /> + <set name="operateType" val="OP_TOGGLE" /> + <for> + <effect name="Buff" time="144000" val="0" noicon="1"> + <mul order="0x30" stat="pAtk" val="1.20" /> + <mul order="0x30" stat="mAtk" val="1.20" /> + <mul order="0x30" stat="pDef" val="0.80" /> + <mul order="0x30" stat="mDef" val="0.80" /> + </effect> + </for> + </skill> + <skill id="9099" levels="1" name="Defensive"> + <set name="target" val="TARGET_SELF" /> + <set name="skillType" val="CONT" /> + <set name="operateType" val="OP_TOGGLE" /> + <for> + <effect name="Buff" time="144000" val="0" noicon="1"> + <mul order="0x30" stat="pAtk" val="0.80" /> + <mul order="0x30" stat="mAtk" val="0.80" /> + <mul order="0x30" stat="pDef" val="1.20" /> + <mul order="0x30" stat="mDef" val="1.20" /> + </effect> + </for> + </skill> </list> \ No newline at end of file Index: data/scripts/handlers/MasterHandler.java =================================================================== --- data/scripts/handlers/MasterHandler.java (revision 6891) +++ data/scripts/handlers/MasterHandler.java (working copy) @@ -225,12 +227,18 @@ private static void loadVoicedHandlers() { VoicedCommandHandler.getInstance().registerVoicedCommandHandler(new stats()); if (Config.L2JMOD_ALLOW_WEDDING) VoicedCommandHandler.getInstance().registerVoicedCommandHandler(new Wedding()); if (Config.BANKING_SYSTEM_ENABLED) VoicedCommandHandler.getInstance().registerVoicedCommandHandler(new Banking()); if (Config.TVT_ALLOW_VOICED_COMMAND) VoicedCommandHandler.getInstance().registerVoicedCommandHandler(new TvTVoicedInfo()); + if (Config.ALLOW_SPECIAL_VOICED_COMMANDS) + VoicedCommandHandler.getInstance().registerVoicedCommandHandler(new SpecialVoiced()); _log.config("Loaded " + VoicedCommandHandler.getInstance().size() + " VoicedHandlers"); } Index: data/scripts/handlers/voicedcommandhandlers/SpecialVoiced.java =================================================================== --- data/scripts/handlers/voicedcommandhandlers/SpecialVoiced.java (revision 0) +++ data/scripts/handlers/voicedcommandhandlers/SpecialVoiced.java (revision 0) @@ -0,0 +1,67 @@ +/* + * 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 handlers.voicedcommandhandlers; + +import com.l2jserver.gameserver.datatables.SkillTable; +import com.l2jserver.gameserver.handler.IVoicedCommandHandler; +import com.l2jserver.gameserver.model.L2Effect; +import com.l2jserver.gameserver.model.L2Skill; +import com.l2jserver.gameserver.model.actor.instance.L2PcInstance; + +public class SpecialVoiced implements IVoicedCommandHandler +{ + private static final String[] VOICED_COMMANDS = { + "offensive", + "defensive", + "normal" + }; + + public boolean useVoicedCommand(String command, L2PcInstance activeChar, String target) + { + if (command.equalsIgnoreCase("offensive")) + { + activeChar.stopSkillEffects(9098); + L2Skill offensiveSkill = SkillTable.getInstance().getInfo(9098, 1); + activeChar.doSimultaneousCast(offensiveSkill); + activeChar.sendMessage("You are in offensive mode."); + } + else if (command.equalsIgnoreCase("defensive")) + { + activeChar.stopSkillEffects(9099); + L2Skill deffensiveSkill = SkillTable.getInstance().getInfo(9099, 1); + activeChar.doSimultaneousCast(deffensiveSkill); + activeChar.sendMessage("You are in defensive mode."); + } + else if (command.equalsIgnoreCase("normal")) + { + if (activeChar != null) + { + L2Effect[] effects = activeChar.getAllEffects(); + + for (L2Effect e : effects) { + if ((e != null) && (e.getSkill().getId() == 9098) || (e.getSkill().getId() == 9099)) + e.exit(); + } + activeChar.sendMessage("You are in normal mode."); + } + } + return true; + } + + public String[] getVoicedCommandList() + { + return VOICED_COMMANDS; + } +} \ No newline at end of file
  8. on the first skill, .offensive its on toggle . <set name="operateType" val="T" /> which is the new standard typos for the latest L2J Hi5. dunno what else to try. Cobra: Its not about hitTime, its about the effect it gives and disapears after few seconds....
  9. I need some help with 2 comands in game: .offensive .defensive here is the skills: http://pastebin.com/CbkgKkSR Here is the Voiced Comand: http://pastebin.com/3J4Cssb1 and here is a video explaining what im experiencing: https://copy.com/8g3GgfREPW0Y basically, when i type .offensive or .diffensive the effect last just few seconds, but i need it to last forever or untill the player restarts or the server restarts. I would like to thank in advance whoever will help me. I've tried different types of conditions and settings for the skills, but all gives the same result, i fear its a Java problem? please help!
  10. tell me how much this work is worth. thanks.
  11. Hi all, Im looking for a mod...a custom scroll that every player have in the inventory at the char creation, which is not consumed or droppable or destroyable. basically, the idea is that when the player double-click on it, it teleports the player where the pvp is going ON at the moment, so basically where purple players are. now, the idea can be improved by adding some checks, like...minimum players being purple, so if there is a 1vs1 isnt worth the teleport. and some protections also, not usable in siege, oly, instances, events, being purple at the moment of the use, etc. thanks for your attention.
  12. File Name: L2Website v1 - HTML - NO Brand File Submitter: A-Style File Submitted: 20 Sep 2013 File Category: Website Templates Hi there. It took me some time to find again this AMAZING website template, rework it a bit, clean it a bit, de-branding it a bit. I hope you will ALL enjoy. The template was from the server l2rapture , which i shared a modded version some years ago, Im talking about Lineage2-X website, but as i cant find it anymore, and I havent a L2Server (yet) I cannot provide ANY php script, like stats, top pvp/pk, etc. so be happy about this CLEAN and COOL template. Use it as you LIKE, its not Branded, so my name is anywhere. Now I want to see your faces lol, how ever wanted this template CLEAN? Click here to download this file
  13. File Name: L2Website v2 - HTML - NO Brand File Submitter: A-Style File Submitted: 20 Sep 2013 File Category: Website Templates This time I present you one of the BEST templates I've ever seen, very beautyfull ! The old L2-Vendetta Website, which was MIXED with the L2Tastic Website, both from Pyromaker. Took me a while to de-brand it, remove all the useless stuff, make it a little faster, and reworked a bit on the images (which now are more clear and smooth). Screenshots: and enjoy, and remember its a FREE service im providing here. Click here to download this file
  14. 128GB RAM ok, could you please tell me where do you host it ? OVH ?
  15. at least put an english traslation on your website, or allow to use translators...
  16. seems interesting. Will take a look, but please edit your thread title to look like this: [L2OFF] L2 Khaos cheers.
  17. Stay in topic please. Anyway, this server is good, but for sure isnt a L2OFF, so please someone change the title of the thread. thank you.
  18. so, this one is gone forever? I wish I had tried it before it closed lol...
  19. Just for the record: this is the last REV. untill now: https://copy.com/pBVbacg98ZqN
  20. Forum blocked : http://www.gigarent.it/posting.php?mode=edit&f=123&t=65827&p=758045 do a copy paste here please, so we can read it ? thanks.
×
×
  • Create New...