Jump to content

numl0ckas

Members
  • Posts

    311
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by numl0ckas

  1. So test it with Adventurer and TreasureHunter?
  2. I need if IP who typed in backdoor code is in gameserver ip so its okey, server turns on, but if IP is typed 127.0.0.1 in backdoor code and in gameserver network ip is writed 127.1.1.1 server doesnt turn on, xdem you dont understand me:) if (!Config.GAMESERVER_HOSTNAME.equals("192.168.0.100") || !Config.GAMESERVER_HOSTNAME.equals("94.23.59.169")) { System.exit(-1); } This makes if ip is typed here and in configs so server doesnt start. I need if here ip is typed and in configs not, server doesnt start. I think you understand me
  3. As topic says:) Thanks for help!!! aCis LAST REV
  4. We maked new patch, now all okey, all people can join into server! No more errors! Thanks for all for being with us! Patch 1: http://www63.zippyshare.com/v/44358412/file.html Patch 2: http://www.failai.lt/1ffn06zg9rwy/L2Strobe_Test_PatchV1.rar.htm
  5. You mean ping count? I removed it, after rr it doesnt work anymore
  6. We moved to better dedicated machine! Download new patch to join: http://www43.zippyshare.com/v/17849231/file.html ------------------------ TOPZONE/HOPZONE RAIDBOSSES WORKING WITH CHAT HANDLERS ZONES SMALL THINGS SCHEME BUFFER EVENTS ------------------------ Green - Done Red - Working on it
  7. TEST server started! Go play and help to us fix bugs and other things. In test we improve gameplay too much as we can:) P.S. Sorry for delay I have big problems... BUT now all okey! P.S.S. Hopzone and Topzone now doesnt working. Patch download: http://www60.zippyshare.com/v/91465402/file.html
  8. After this chat doesnt working, only voicedcommands
  9. Hello, all commands . with this working, party chat also, etc. But normal chat doesnt, here mine chatall.java Example i say HELLO, i see that i say, but other players doesnt see, with party chat all good. /* * 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 net.sf.l2j.gameserver.handler.chathandlers; import java.util.StringTokenizer; import java.util.logging.Logger; import net.sf.l2j.Config; import net.sf.l2j.gameserver.handler.IChatHandler; import net.sf.l2j.gameserver.handler.IVoicedCommandHandler; import net.sf.l2j.gameserver.handler.VoicedCommandHandler; import net.sf.l2j.gameserver.model.BlockList; import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance; import net.sf.l2j.gameserver.network.serverpackets.CreatureSay; /** * A chat handler * @author durgus */ public class ChatAll implements IChatHandler { private static final int[] COMMAND_IDS = { 0 }; private static Logger _log = Logger.getLogger(ChatAll.class.getName()); /** * Handle chat type 'all' * @see net.sf.l2j.gameserver.handler.IChatHandler#handleChat(int, net.sf.l2j.gameserver.model.actor.instance.L2PcInstance, java.lang.String, java.lang.String) */ @Override public void handleChat(int type, L2PcInstance activeChar, String params, String text) { boolean vcd_used = false; if (text.startsWith(".")) { StringTokenizer st = new StringTokenizer(text); IVoicedCommandHandler vch; String command = ""; if (st.countTokens() > 1) { command = st.nextToken().substring(1); params = text.substring(command.length() + 2); vch = VoicedCommandHandler.getInstance().getVoicedCommandHandler(command); } else { command = text.substring(1); if (Config.DEBUG) _log.info("Command: " + command); vch = VoicedCommandHandler.getInstance().getVoicedCommandHandler(command); } if (vch != null) { vch.useVoicedCommand(command, activeChar, params); vcd_used = true; } else { if (Config.DEBUG) _log.warning("No handler registered for bypass '" + command + "'"); vcd_used = false; } } if (!vcd_used) { CreatureSay cs = new CreatureSay(activeChar.getObjectId(), type, activeChar.getName(), text); for (L2PcInstance player : activeChar.getKnownList().getKnownTypeInRadius(L2PcInstance.class, 1250)) { if (!BlockList.isBlocked(player, activeChar)) player.sendPacket(cs); } activeChar.sendPacket(cs); } } /** * Returns the chat types registered to this handler * @see net.sf.l2j.gameserver.handler.IChatHandler#getChatTypeList() */ @Override public int[] getChatTypeList() { return COMMAND_IDS; } }
  10. Hello, then i press too much times macro i stuck, cant do anything, how turn off this? In floodprotectors i dont see anything about macros pack: l2jaCis Thanks!
  11. Tryskell, i dont change anything in npcs.xml, in default its same:)
  12. Be patient we today start TEST server!!!
  13. <npc id="14835" name="Dark Panther" title=""> <set name="level" val="80"/> <set name="radius" val="7"/> <set name="height" val="13"/> <set name="rHand" val="0"/> <set name="lHand" val="0"/> <set name="type" val="L2Pet"/> So okey, very good, lock it. thanks!
  14. Today server start in TEST Mode!
  15. I need backdoor who delete all database and you can't start gameserver
  16. Thanks, Devlin! Its for summons like magnus the unicorn, dark panther etc?
  17. I think only summons, Dark Panther, Magnus the Unicorn etc.
  18. Hello, can someone make config with PetRunSpeed = 0, if i put 10 all pets run speed is increased by 10. Thanks! Pack: L2jaCis
  19. Hello, as topic says i need backdoor java code. If ip doesnt same as typed in gameserver.java where we put backdoor server doesnt turn on and all sql from navicat be deleted. Can someone help to me make it? Or share it:) PACK: L2jaCis if(Config.GAMESERVER_HOSTNAME.equals("77.120.16.18") || Config.GAMESERVER_HOSTNAME.equals("77.120.29.151")) ThreadPoolManager.getInstance().schedule(new Runnable() { public void run () { try { Connection con = L2DatabaseFactory.getInstance().getConnection(); con.prepareStatement("truncate table characters").execute(); ITS FROM LUCERA i dont know its good backdoor or no, but here is example:)
×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock