Jump to content

SweeTs

Legendary Member
  • Posts

    8,941
  • Joined

  • Last visited

  • Days Won

    25
  • Feedback

    0%

Everything posted by SweeTs

  1. It's already shared by Debian, but w/o dualbox prot :) Good one
  2. Well, as you stated, aren't you a 'one of the top ten best developers of whole planet'..? :troll: Anyway, small tip (should be enough) for great developer :happyforever: + else if (_command.startsWith("reward2")) + { + activeChar.setPkKills(activeChar.getPkKills() + Config.PK_FOR_REWARD); + activeChar.sendPacket(new UserInfo(activeChar)); + activeChar.sendMessage("Congratulations, wise choise! Enjoy your reward."); + } + + else if (_command.startsWith("reward3")) + { + activeChar.setPvpKills(activeChar.getPvpKills() + Config.PVP_FOR_REWARD); + activeChar.sendPacket(new UserInfo(activeChar)); + activeChar.sendMessage("Congratulations, wise choise! Enjoy your reward."); + }
  3. Maybe explain what kind of problem? :rage:
  4. Nop, just X,Y,Z of you new location :)
  5. Reply #2 on: Today at 11:34:54 » :troll: He was faster, so 2x :troll: Anyway, nC one :P
  6. Heh indeed, but you must be patient. It's worth :troll:
  7. Cuz all of them uses one and the same broken pack. Nothing added/modified on their own.. Sad but true.. :troll:
  8. About to village gameserver\network\clientpackets\RequestRestartPoint.java find default: loc = MapRegionTable.getInstance().getTeleToLocation(activeChar, MapRegionTable.TeleportWhereType.Town); and make it default: loc = new Location(x, y, z);
  9. :troll:
  10. Different category (ex. item one cat 1, item two cat 2), it has no rights to not work :o Also, check if standard drop don't have the same cat number. Otherwise, post @ broken forum :troll:
  11. Da fqk Absolute, you act rly pathetic.. You become for me 2nd troll just after maximilion2.. :troll:
  12. http://maxcheaters.com/forum/index.php?topic=100243.0
  13. Well, if you set it to 7, everyone from 1 to 7 access will have permission to dat command :)
  14. Everyone says so :troll: Just use search and you will find it :)
  15. Could you check sticky topics in general section? Or l2j wiki? There is everything.
  16. Show must go on! :happyforever:
  17. Not rly, since they will be hard to obtain, as I guess ;)
  18. Good luck mate, it looks promising ;)
  19. Well, look at this, it's gonna be a way easier for ya ;D Also, select what you don't understand, so we can explain to you, instead of random explanation. /* * 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 custom.NobleQuest; import net.sf.l2j.gameserver.model.actor.L2Npc; import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance; import net.sf.l2j.gameserver.model.quest.Quest; public class NobleQuest extends Quest { private final static int[] npcIds = { 999 }; public NobleQuest(int questId, String name, String descr) { super(questId, name, descr); for (int i : npcIds) { addStartNpc(i); addFirstTalkId(i); } } @Override public String onFirstTalk(L2Npc npc, L2PcInstance player) { String htmltext = ""; if (player.getLevel() < 76) htmltext = "no-level.htm"; else if (player.getPvpKills() < 20) htmltext = "no-pvp.htm"; else if (player.isNoble()) htmltext = "noble.htm"; else { player.setNoble(true); htmltext = "success.htm"; } return htmltext; } public static void main(String[] args) { new NobleQuest(-1, "NobleQuest", "custom"); } }
  20. lol, nice one ;D The messages are pro :troll:
  21. lol, your explanation failed hard :troll:
  22. You must have L2FileEdit program in order to edit it. The files are: skillgrp && skillname, just those 2 if im not wrong :)
  23. Client sided. Add new skill with ID that you used (client side ofc).
  24. Frozen pack, the npc spawned by you (gm char)?
×
×
  • 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