Jump to content

Belzebul

Members
  • Posts

    2,337
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Belzebul

  1. δεν μπορω να καταλάβω τι λες
  2. Όχι, να είσαι αρχημηχανικός στην nasa πρεπεί! Πήγαινε navicat, και εκεί που λεεί "body part" (στο table των weapons ofc) γράψε "lrhand"
  3. Probably yes, this is a home stated server.. so.
  4. http://www.maxcheaters.com/forum/index.php?topic=131018.0 He has leeched my server's website. I want you to delete the download link and lock his topic. thank you.
  5. και εγώ κάπως ετσί :P
  6. Ήταν πρωτόγνωρο γιαυτούς, δεν είχα ξαναδεί τέτοιους φιλάλθους. Μετα προσπαθούσαν να πιάσουνε και το ρυθμό των συνθημάτων.
  7. δεν θα σου βγάλει κάποιο prob.
  8. ok, now i have understand it. I also read a similar code. thank you very much coyo
  9. Ye, i understood what you told before. W/e now its fixed, thank you very much dudes.
  10. Till i do it, i will remove the message config thing, i will update it tomorrow, thank you dudes.
  11. Sorry, but i cant understand what you are saying, as i said im very newbie. Do you mean that i have to "apply" the message config like i did with the others?
  12. what do you mean? You are talking about the plus symbols? (+)
  13. Hello guys, this is my first java share. So please dont be strict :>. Since i dont know how to make a diff patch (and im sry for this), I will share it with an other way. Explanation: When you win a pvp, a custom message will comes only to your main chat (you choose this) and also you automatically do a winning social move. Go to ->> /L2_GameServer_it/java/config/other.properties #------------------------------------------ # Death Penalty chance if killed by mob (%) #------------------------------------------ DeathPenaltyChance = 20 +-------------------------- +# Custom PvP Win +-------------------------- +# PvP Win Message +AllowPvPWinMessage = True +Message = Your Message Here +AllowSocialWinMove = True Go to ->> L2_GameServer_it/java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java // Add karma to attacker and increase its PK counter setPvpKills(getPvpKills() + 1); - + if(Config.ALLOW_PVP_WIN_MESSAGE) + { + activeChar.sendMessage("Config.MESSAGE");; + } + if(Config.ALLOW_SOCIAL_WIN_MOVE) + { + activeChar.broadcastPacket(new SocialAction(activeChar.getObjectId(), 3)); + } Go to ->> L2_GameServer_it/java/net/sf/l2j/Config.java public static int MIN_PROTOCOL_REVISION; public static int MAX_PROTOCOL_REVISION; + + public static boolean ALLOW_PVP_WIN_MESSAGE; + public static String MESSAGE; + public static boolean ALLOW_SOCIAL_WIN_MOVE; STARTING_ADENA = Integer.parseInt(otherSettings.getProperty("StartingAdena", "100")); + ALLOW_PVP_WIN_MESSAGE = Boolean.parseBoolean(otherSettings.getProperty("AllowPvPWinMessage", "True")); + MESSAGE = otherSettings.getProperty("Message", "Your Message Here"); + ALLOW_SOCIAL_WIN_MOVE = Boolean.parseBoolean(otherSettings.getProperty("AllowSocialWinMove", "True")); That is all, if you have any questions, feel free to ask them. P.S: Is there a guide about how to make a diff patch? I surely need it. Thank you.
×
×
  • Create New...