Jump to content

sQu€€k

Members
  • Posts

    298
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by sQu€€k

  1. Γειά σας. Θέλω κάποιον να μου φτιάξει έναν κώδικα για frozen. Θέλω τα normal chars (όχι όταν ο άλλος είναι donator αυτό να μην πειραχτεί δηλαδή να εφαρμόζετε μόνο για αυτούς που δεν έχουν donator stats) να μπορούν να έχουν μέχρι ένα active στα buffs τους αλλάζει δεν αλλάζει το weapon δηλαδή να βάζουν ένα και μετά να μπορούν να αλλάξουν πάλι το weapon και να μην φεύγει.. Μόνο για active. Δηλαδή το passive όταν αλλάζεις το weapon να φεύγει.. Πιστεύω να καταλάβατε τι εννοώ.. Εάν δεν υπάρχει πληρώνω.. Το θέλω όσο πιο γρήγορα γίνεται.
  2. Λοιπόν βρήκα τι είχα κάνει.. Στα config/head/elitclanhall.prop εχει 2 siege για κατι άλλα castle. 'Ηθελα να τα απενεργοποιήσω και έβαλα 0 για την ημερα που θα δηλωνεις στα siege . E buggare και δεν γινοταν να δηλώσω πουθενά .. Τώρα το θέμα μου είναι οτι θέλω να τα απενεργοποιήσω αυτά τα custom siege.
  3. Γειά σας .. Λοιπόν δεν ξέρω τι παίχτηκε αλλά τα npc έξω απο το castle δεν δουλεύουν .. Κάνω 2 click πάνω τους και δεν ανοίγει τίποτα.. Παλιά λειτουργούσε κανονικά αλλά τώρα δεν δουλεύουν.. Έχω frozen.
  4. Φίλε βλέπεις πιο buff είναι 1 λεπτό ψάχνεις λίγο στο google το id του και μετά το βάζεις στο πρόγραμμα και αλλάζει..
  5. Ένας newbie θα βοηθήσει newbies??? Υπάρχουν οδηγοί γι'αυτό το πράγμα. .
  6. Γειά σας.. Καταρχας έχω Frozen ..Μετέφερα το pack στο dedi τα πέρασα όλα τα προγράμματα και μετά εφτιαξα και τα config .. Ολα ωραία όλα καλά μέχρι εδώ.. Μετά πήγα να ανοίξω το console του gameserver. Πήγα στον φάκελο gameserver και έγραψα command ./GameServer_loop.sh Άνοιξε κανονικά μετα βγήκα απο putty και ξαναμπήκα για το loginserver.. Άνοιξα και αυτό κανονικά και μετά περίμενα λίγο και πήγα να συνδεθώ αλλά δεν έμπαινε στον server ουτε καν στο όνομα του server .. Είδα μετά το console και δεν μπορούσε να συνδεθεί το gameserver με το loginserver. Στο pc μου δουλεύει κανονικά το pack και συνδέεται κανονικά... Αν μπορεί κάποιος ας βοηθήσει.. Einai Linux!
  7. http://maxcheaters.com/forum/index.php?topic=125439.5 Λίγο search δεν βλάπτει..
  8. Ξαναφτιάξε το itemname και το armorgrp και κάντα save στο desktop και μετα αντιγραφή επικόληση στο system σου. Δοκίμασε και πες μου
  9. Aν έχεις frozen το έχει στα config..
  10. Οτι πεις φίλε .. Δες τι error βγάζει ακόμα στο console και θα καταλάβεις.. Δες προσεκτικά τι λέει.
  11. Ρε φίλε τα στατ που έχεις περάσει έχουν πρόβλημα..
  12. Auto p s eipa einai exei error sta stats anevase mia ta stats na ta ftia3w..
  13. Φίλε ακολούθησε τα παρακάτω και θα δουλέψει .. Δεν είναι τίποτα δύσκολο.. Όπου σου λέει find θα βρίσκεις αυτό που σου ζητάει , όπου σου λέει add θα προσθέτεις (το below είναι απο κάτω) και για το create θα δημιουργείς class.. in com.l2jfrozen.gameserver.handler. open ItemHandler.java find this import com.l2jfrozen.gameserver.handler.itemhandlers.ChristmasTree; and add below this import com.l2jfrozen.gameserver.handler.itemhandlers.ClanRepsItem; then find this registerItemHandler(new ChestKey()); and add bellow this registerItemHandler(new ClanRepsItem()); save it and close it. in com.l2jfrozen.gameserver.handler.itemhandlers create new file Called ClanRepsItem.java open it and add this /* * 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 2, 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, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA * 02111-1307, USA. * * http://www.gnu.org/copyleft/gpl.html */ package com.l2jfrozen.gameserver.handler.itemhandlers; /** * * * @author Coyote * Adapted by Strike */ import com.l2jfrozen.Config; import com.l2jfrozen.gameserver.handler.IItemHandler; import com.l2jfrozen.gameserver.model.actor.instance.L2ItemInstance; import com.l2jfrozen.gameserver.model.actor.instance.L2PlayableInstance; import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance; import com.l2jfrozen.gameserver.network.serverpackets.MagicSkillUser; public class ClanRepsItem implements IItemHandler { private static final int ITEM_IDS[] = { Config.CR_ITEM_REPS_ITEM_ID }; public void useItem(L2PlayableInstance playable, L2ItemInstance item) { if (!(playable instanceof L2PcInstance)) { return; } L2PcInstance activeChar = (L2PcInstance)playable; if (!activeChar.isClanLeader()) { activeChar.sendMessage("This can be used only by Clan Leaders!"); return; } else if (!(activeChar.getClan().getLevel() >= Config.CR_ITEM_MIN_CLAN_LVL)) { activeChar.sendMessage("Your Clan Level is not big enough to use this item!"); return; } else { activeChar.getClan().setReputationScore(activeChar.getClan().getReputationScore()+Config.CR_ITEM_REPS_TO_BE_AWARDED, true); activeChar.sendMessage("Your clan has earned "+ Config.CR_ITEM_REPS_TO_BE_AWARDED +" rep points!"); MagicSkillUser MSU = new MagicSkillUser(activeChar, activeChar, 2024, 1, 1, 0); activeChar.broadcastPacket(MSU); playable.destroyItem("Consume", item.getObjectId(), 1, null, false); } } public int[] getItemIds() { return ITEM_IDS; } } save it and close it. then in com.l2jfrozen open Config.java and find this public static String PVP2_CUSTOM_MESSAGE; add bellow this /** * Clan Reputation Item * Adapted By Strike */ public static boolean USE_CR_ITEM; public static int CR_ITEM_MIN_CLAN_LVL; public static int CR_ITEM_REPS_TO_BE_AWARDED; public static int CR_ITEM_REPS_ITEM_ID; then find this PVP2_CUSTOM_MESSAGE = L2JFrozenSettings.getProperty("PvP2CustomMeesage", "You have been teleported to PvP Zone 2!"); and add bellow this /** Clan reputation Item**/ USE_CR_ITEM = Boolean.parseBoolean(L2JFrozenSettings.getProperty("EnableTheClanRepPointsItem", "False")); CR_ITEM_MIN_CLAN_LVL = Integer.parseInt(L2JFrozenSettings.getProperty("ClanLevelNeededForCR", "5")); CR_ITEM_REPS_TO_BE_AWARDED = Integer.parseInt(L2JFrozenSettings.getProperty("HowManyClanRepsToGive", "500")); CR_ITEM_REPS_ITEM_ID = Integer.parseInt(L2JFrozenSettings.getProperty("CRItemID", "6673")); save it and close it. then to config/fuctions/l2jfrozen.prop find # ----------------------------------------------------- # Hero Custom Item Configuration - # ----------------------------------------------------- # When ActiveChar will use this item will gain Hero Status. EnableHeroCustomItem = False # Id Itemn Need's HeroCustomItemId = 3481 # Hero for X days, 0 forever. HeroCustomDay = 0 And Below Add This # ------------------------------------------------------- # Clan Reputation Custom Item Configuration # ------------------------------------------------------- # Would you like to enable the Clan Reputation points item? # Default: False EnableTheClanRepPointsItem = False # What's the Min Level in which clan leaders will be able to use the item? # Default 5 MinClanLevelNeededForCR = 5 # How many rep points will be rewarded to the clan? # Default 500 HowManyClanRepsToGive = 500 # Set the ID of the Clan Rep Points Item # Default = 6673 (Festival Adena) CRItemID = 6673
  14. Αν έχεις frozen και σου βγάζει error στο navicat θα φταίει το material δηλαδη wood , mithril , adamantine και τέτοια .. Είναι πάντα δίπλα απο το grade του weapon αφαιρείς αυτά και τα custom περνιούνται κανονικά.. Αν δεν κατάλαβες στείλε σε μήνυμα το skype σου να σε help..
  15. Αν κατάλαβα καλά όταν ανοίγεις την console σου βγάζει error στα stats της armor και του weapon.. Δες ποιο είναι το error απο τα log και ανέβασε το εδώ να σου πω τι να κάνεις..
×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..

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