Jump to content

RєVєnGeR^

Legendary Member
  • Posts

    3,210
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by RєVєnGeR^

  1. Gratz , m aresei gt opws ksanalew ine poly taktopoihmeno ..
  2. Updated , added a not for it to work 100%
  3. *L2WyvernManagerInstance.java Hello , with this simple code you can make all the clan members allowed to spawn wyvern from wyvern manager :) Simple enough huh?! Haven't seen it posted anywhere so.. First find public void onBypassFeedback(L2PcInstance player, String command) Then just make it { if (command.startsWith("RideWyvern")) { if (!player.isClanLeader()) { return; Make sure that after that you delete if (!player.isClanLeader()) { player.sendMessage("Only clan leaders are allowed."); return; } Thanks
  4. Awesome ... really good and pretty cool Thanks
  5. Evilrose Warrior 7 lvl Elyos Lulz i play there because paniiikoc has not money for offi acc ... in offi i have my father xping my char lolwut
  6. Good job cobra , thanks for that ;)
  7. http://www.maxcheaters.com/forum/index.php?topic=90461.0
  8. Yes indeed , but you can delete thoose you don't want ... its what your server is about , :P
  9. Thank you both for comments , and karma :P Keep up posting if any problem appears on you ..
  10. no i can't via paysafe :// BUMP
  11. JoinOly.java Hello , with theese commands , .Joinoly and .leaveoly you are gonna register and unregister your practicipation from olympiad games.. * 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 2, 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, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA * 02111-1307, USA. * * http://www.gnu.org/copyleft/gpl.html */ package net.sf.l2j.gameserver.handler.voicedcommandhandlers; import net.sf.l2j.gameserver.Olympiad; import net.sf.l2j.gameserver.handler.IVoicedCommandHandler; import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance; /** * * @Author Revenger * */ public class JoinOly implements IVoicedCommandHandler { private static final String[] VOICED_COMMANDS = { "joinoly" , "leaveoly" }; public boolean useVoicedCommand(String command, L2PcInstance activeChar,String target) { if (command.equalsIgnoreCase("joinoly")) { if (!activeChar.isInOlympiadMode() ) { Olympiad.getInstance().registerNoble(activeChar, true); return true; } else if (activeChar.isParalyzed() || !activeChar.isNoble() || activeChar.isDead() || activeChar.isFestivalParticipant() || activeChar.atEvent || activeChar.isSubClassActive() || activeChar.isInDuel() || activeChar.isAlikeDead() || activeChar.isAfraid() || activeChar.isBetrayed() || activeChar.getPvpFlag() > 0 || activeChar.getKarma() > 0 || activeChar.isInCombat() || activeChar.inObserverMode()) { activeChar.sendMessage("Your Status Doesnt Allow You To Join Olympiad!"); return false; } } if (command.equalsIgnoreCase("leaveoly")) { if (activeChar.isInOlympiadMode()) { Olympiad.getInstance().unRegisterNoble(activeChar); return true; } else if (activeChar.isParalyzed() || !activeChar.isNoble() || activeChar.isDead() || activeChar.isFestivalParticipant() || activeChar.atEvent || activeChar.isSubClassActive() || activeChar.isInDuel() || activeChar.isAlikeDead() || activeChar.isAfraid() || activeChar.isBetrayed() || activeChar.getPvpFlag() > 0 || activeChar.getKarma() > 0 || activeChar.isInCombat() || activeChar.inObserverMode() || !activeChar.isInOlympiadMode()) { activeChar.sendMessage("Your Status Doesnt Allow You To Join Olympiad!"); return false; } } return true; } public String[] getVoicedCommandList() { return VOICED_COMMANDS; } } Don't forget to register the command on the game server .. Credits , Revenger
  12. Good Job mace , i didn't even though you will do this .. I Am impressive , great!
  13. UPDATED PRICE
  14. Locked , L2 . Ini is dead atm , when i re-upload it i will un lock it
  15. ! = making it FALSE dudes .. The correct code is the one i posted on the start .. Thanks every1
  16. OW Shit , thanks for showing me this typo mistake .. i will edit that crap :P
  17. :P i wanted the char to be lvl 80 first :D
  18. No it is not givving tiara T_T
  19. Hello , this is my 3rd java code i will share to you , i hope everyone like it :) With this code when a player in game reach level 80 , automatically he became noblesse ... :) go to L2PcInstance , and find public void increaseLevel() and paste this in it : if (!isNoble() && getLevel() == 80) { setNoble(true); rewardSkills(); } Versus: Corrected some code mistakes.
  20. i play at least 2,5h ... and i still love to be watching new places , etc It's a game that you will never get bored of .. for me , its the best enjoyable game atm
×
×
  • Create New...