Jump to content

icshiba

Members
  • Posts

    1,383
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by icshiba

  1. yes i accept okey i will wait just send me a pm when you'll have the money
  2. New price check the 1st post!
  3. Κάποιο λάθος δικό σου έχει γίνει γιατί αν ήταν από frozen θα είχαν γίνει πολλά τέτοια τόπικ !
  4. Μήπως χρησιμοποιείς κάποιο παλαιότερο version του l2jfrozen? Αν υπήρχε ο roy θα του τον είχε βγάλει και με το //spawn roy_the_cat
  5. Οκ το έφτιαξα
  6. Nothing special. This Website Design is in fashion? Cause all servers using the same one Good luck Your server's name remembers me a cafeteria here where i live :D
  7. Tell me which version you're searching for and i will find it for you :) That's all
  8. όταν αφήνεις κενό σε ένα command handler το σύστημα του σέρβερ το πιάνει σαν κάτι ξεχωριστό οπότε:
  9. Ο Καθένας έχει τις απόψεις του ^^ Έχω να φάω παντόφλα απο το δημοτικό
  10. Αυτό δεν είναι πρόβλημα :D το πόσα actives θα έχει ο σέρβερ σου είναι δικιά σου επιλογή
  11. ποτέ δεν ξέρεις τι έχει κάνει αυτός όμως και τον δέρνουν ;)
  12. Πρέπει να βρείς το packet που κάνει το συγκεκριμένο action :/
  13. Why your english language option doesn't work?
  14. Αυτό που σου έδωσε ο krash είναι για interlude. Άνοιξε το Say2.java πάτησε alt + f και γράψε να βρείς αυτό: if (_text.length() >= 100) { Util.handleIllegalPlayerAction(activeChar,"Player "+activeChar.getName()+" tried to crash server", IllegalPlayerAction.PUNISH_KICK); _log.warning("Say2: Max input exceeded."); return; } Μόλις το βρείς ακριβώς από πάνω βάλε αυτό που σου έδωσε ο Krash
  15. Δεν μπορούμε να ξέρουμε αν υπάρχει πρόβλημα χωρίς να τεστάρουμε και εμείς οι ίδιοι :)
  16. Ορίστε πέρνα αυτό και θα είσαι κομπλέ: net.sf.l2j.gameserver.handler.itemhandlers βάλε αυτό εδώ: package net.sf.l2j.gameserver.handler.itemhandlers; import net.sf.l2j.Config; import net.sf.l2j.gameserver.handler.IItemHandler; import net.sf.l2j.gameserver.model.L2Player; import net.sf.l2j.gameserver.model.actor.instance.L2ItemInstance; import net.sf.l2j.gameserver.model.actor.instance.L2PlayableInstance; /** * * @author Nicolas */ public class ClanRepItem implements IItemHandler { public void useItem(L2PlayableInstance playable, L2ItemInstance item, boolean forceUse) { if (!(playable instanceof L2Player)) { return; } L2Player player = (L2Player)playable; if (player.getClan().getLeader().getPlayerInstance() != player) { player.sendMessage("You're not the clan leader.You should give the item to your clan's leader."); return; } else if (!(player.getClan().getLevel() >= 6)) { player.sendMessage("Your clan should be more than 5 level to use this item!"); return; } if (player.getClan() == null) { player.sendMessage("How the hell it's possible to use that item without a clan?"); return; } player.getClan().setReputationScore(player.getClan().getReputationScore()+Config.CLAN_REP_SCORE, true); player.destroyItem("Clan rep item", item, player, true); player.sendMessage("You got + "+Config.CLAN_REP_SCORE+" in your clan reputation score."); } @Override public int[] getItemIds() { // TODO Auto-generated method stub return null; } @Override public void useItem(L2PlayableInstance playable, L2ItemInstance item) { // TODO Auto-generated method stub } } Μετά κάντο register net.sf.l2j.gameserver.handler.ItemHandler import net.sf.l2j.gameserver.handler.itemhandlers.ClanRepItem; if(Config.ALLOW_CLAN_REP_ITEM) { registerItemHandler(new ClanRepItem()); } τα configs sto net.sf.l2j ~>Config.java public static boolean ALLOW_CLAN_REP_ITEM; public static int CLAN_REP_SCORE; /* Clan Rep Item Configs /**/ ALLOW_CLAN_REP_ITEM = Boolean.parseBoolean(L2JFortSettings.getProperty("AllowClanRepItem", "false")); CLAN_REP_SCORE = Integer.parseInt(L2JFortSettings.getProperty("ClanRepScore", "300")); Και τέλος τα κλασσικά config: #-----------------------# # Clan Reputation Item # #-----------------------# #With this item clan leaders can take + clan reputation score #Allow clan reputation item? #Default clan rep points: 300 (Set it by your own) AllowClanRepItem = True ClanReputationCoinReputation = 300 Κάντο βήμα βήμα και θα είσαι κομπλέ!
  17. Τρέχεις το compiled το οποίο είναι τελείως crappy απλά πέρασε το source στο eclipse και κάνε build. Πάρε τα build files και θα είσαι κομπλέ
  18. Well not really.It's not there the problem because i know the "out memory problem"
  19. It seems something is going wrong with your mysql
  20. Home server or hosted somewhere?
  21. Trollface. Search here: kat.ph or thepiratebay.se you'll find 1 for sure.
  22. Προφανώς το θέμα?
×
×
  • 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