Jump to content

SweeTs

Legendary Member
  • Posts

    8,941
  • Credits

  • Joined

  • Last visited

  • Days Won

    25
  • Feedback

    0%

Everything posted by SweeTs

  1. Not rly, since they will be hard to obtain, as I guess ;)
  2. Good luck mate, it looks promising ;)
  3. 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"); } }
  4. lol, nice one ;D The messages are pro :troll:
  5. lol, your explanation failed hard :troll:
  6. You must have L2FileEdit program in order to edit it. The files are: skillgrp && skillname, just those 2 if im not wrong :)
  7. Client sided. Add new skill with ID that you used (client side ofc).
  8. Frozen pack, the npc spawned by you (gm char)?
  9. Look at sticky topics, there is a guide.. Also, you should show us your 'error'. :dat:
  10. Well, eventually you could make a topic in help section and explain what you exactly want to do, so someone may give you a hand :P
  11. You missed part 'own svn'. Like IKnowWtf said Plus, IF it was 9 rev, the post date would be like.. 2 years ago? :troll:
  12. If he's not a customer = it's pointless. :troll:
  13. Not rly, it's fake.. ;D It may be 9, but in his own svn or so. :)
  14. You miss 30 revs - 80 quests like said Tryskell. In this missing quests that you don't have, there is a noblesses quests ;D Take latest free rev, noblesse quests should be there if im not wrong. Links works fine. Just in case, paste links that doesnt work for you.
  15. 1. full mp? = restore 0. 2. //invul? = 'doesnt work'. Anyway, you should report any problems on the forum. :)
  16. No anymore annoying error logs on GS console ;D I just gave him the way to stop it, as he wants it :P
  17. Just lol.. Quest engine/structure is different than others forks, it's not about imports.. Use JAVA like said Tryky, find Darth's buffer* and try to addapt it. * - google, simple instanced buffer
  18. Something else..? :rage: Generally, you cant do it ;D How you understand the word 'balance'? With full buff, okay it may see as a balance, but what about oly, w/o full buff? Again no balance. You can't balance it, but you can try, since unbalance is everywhere. If you know what I mean :dat: If you rly wanna try it, see what fighters/mages miss. Archer does a lot of crit? Decrease crit power/add more p def to robe. And so on, and so on..
  19. That's for sure.. 8) Anyway, good luck with your server. ;)
  20. Use search option, type the error that you got on GS (ex. unknown npc bypass) and push search. Eclipse will find it, then remove or deactive // dat log.
  21. Who knows, for sure in event file or so. If you have sources, open Eclipse and use search and type this RU text and push search. :) If you don't have sources, then forget :P
  22. Translate Ru text into Eng 8)
  23. Learn to read and use your brain. Yes it's free.
  24. All try { Connection con = L2DatabaseFactory.getInstance().getConnection(); has to be try (Connection con = L2DatabaseFactory.getInstance().getConnection()) {
  25. If you look at project space, he has no sources, so... Forget about compiling. Also, it's your 2nd topic :rage: Edit: Sources you can find inside gameserver folder as I checked those files now.. Don't ask me where and what to copy :P Look at any project with open source and see how it looks like, and do the same.
×
×
  • Create New...