Jump to content

Devlin

Banned
  • Posts

    1,643
  • Credits

  • Joined

  • Last visited

  • Days Won

    5
  • Feedback

    100%

Everything posted by Devlin

  1. Dafuq, he is able to do everything at his pack since it's not public.
  2. You have to be java developer in order to make a proper balance? Great!
  3. Tяαnce who is owner of L2JAcis. sig.
  4. Awesome server, good luck.
  5. Not sure if it's your method but this is free: http://maxcheaters.com/forum/index.php?topic=276283.0
  6. Hello, I created a new zone and when I reload zones in order to check if my zone works I get at gameserver the following error: Error while loading zones. net.sf.l2j.gameserver.model.zone.type.L2SpecialZone.<init><int> And zone doesn't load. Zone code: /* * 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.model.zone.type; import net.sf.l2j.Config; import net.sf.l2j.gameserver.datatables.MapRegionTable; import net.sf.l2j.gameserver.model.actor.L2Character; import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance; import net.sf.l2j.gameserver.model.zone.L2ZoneType; import net.sf.l2j.gameserver.model.zone.ZoneId; /** * @author Devlin * */ public class L2SpecialZone extends L2ZoneType { protected L2SpecialZone(int id) { super(id); } @Override protected void onEnter(L2Character character) { character.setInsideZone(ZoneId.SPECIAL, true); if (character instanceof L2PcInstance) { L2PcInstance p = (L2PcInstance)character; if (!Config.ALLOW_BISHOP_ENTER_SPECIAL_ZONE) { if (p.getClassId().getId() == 16 || p.getClassId().getId() == 97) { p.setInsideZone(ZoneId.SPECIAL, false); p.teleToLocation(MapRegionTable.TeleportWhereType.Town); p.sendMessage("Your class is not allowed to enter this zone."); return; } } p.updatePvPStatus(); p.sendMessage("You have entered special pvp zone."); } } @Override protected void onExit(L2Character character) { character.setInsideZone(ZoneId.SPECIAL, false); if (character instanceof L2PcInstance) { L2PcInstance p = (L2PcInstance)character; p.setPvpFlag(0); p.broadcastUserInfo(); p.sendMessage("You have exited special pvp zone."); } } @Override public void onDieInside(L2Character character) { // nothing. } @Override public void onReviveInside(L2Character character) { if (character instanceof L2PcInstance) { L2PcInstance p = (L2PcInstance)character; p.setCurrentHpMp(p.getMaxHp(), p.getMaxMp()); p.setCurrentCp(p.getMaxCp()); } } } Xml: <zone type="SpecialZone" shape="NPoly" minZ="-4290" maxZ="-1290"><!-- Primeval Isle (Town Zone) --> <node X="10408" Y="-27395" /> <node X="12065" Y="-25334" /> <node X="12223" Y="-23159" /> <node X="10424" Y="-22340" /> <node X="9566" Y="-23131" /> <node X="9290" Y="-24261" /> <spawn X="10468" Y="-24569" Z="-3645" /> </zone> Pack: aCis last rev.
  7. Nice, first you changed files. Now you change chronicle? Finally, it seems that the server won't open.
  8. It's the link which is shared by Darth? If yes, enjoy keylogger.
  9. Nough trusted & fast, ty.
  10. I am selling a psc of 10e.
  11. True. Many items are dropped on the ground. It's better to disable dropping items on the ground.
  12. It's obvious that you got scammed because you choosed to pay 100e for a random protection since real protection costs 600e. Plus he is not Java developer, he knows nothing. Btw, Java developers have award :)
  13. The classic question: Why you buy from randoms?
  14. - Introduce in l2j. - Introduce in eclipse. - How to install java and eclipse and how to setup it. - How to checkout a project and how to compile it. - How to add a java code. - How to make your own config file. - How to add simple checks at your codes. - Advices for a pack project. - Advices for choosing a free or private pack project. - How to install mysql, navicat and how to install server's database. - How to install your server and how to login. - How to make your character admin. - Advices for opening a server. - What's the difference of VPS and Dedicated machine. It is made 4 months ago.
  15. Yo chicks, I want to sell this e-book which is made by me (dεbian). http://maxcheaters.com/forum/index.php?topic=267072.0 Price with Paypal: 5e | Price with Paysafe: 10e.
  16. Heyo, I am looking for 4 npc templates. Preview of them: http://imgur.com/JpgTp6Q,DRdJiLH,MiKQ9uk,lZPwAym Thanks in advance.
×
×
  • Create New...