Jump to content

'Baggos'

Legendary Member
  • Posts

    3,875
  • Credits

  • Joined

  • Last visited

  • Days Won

    28
  • Feedback

    100%

Everything posted by 'Baggos'

  1. But the monsters are champion? Did you try the monsters if they are champion? What's your project base? l2jfrozen? acis? l2jserver? h5?
  2. So, if you enable the champion system, some monsters are champion, right? I mean, the champion system it work? Monsters become champion?
  3. The monsters are champion? I mean the drop or HP of monsters work like champion? This champion system it's yours? or just the project have champion system and you want only the aura?
  4. Σβήσε αυτό και θα μετράει το pvp. Δεν χρειάζεσαι τίποτα άλλο μετά.
  5. Player.java // If in pvp zone, do nothing. if (isInsideZone(ZoneId.PVP) && targetPlayer.isInsideZone(ZoneId.PVP))
  6. Τίποτα, να'σαι καλά.
  7. Κατέβασε το παρακάτω και θα είσαι οκ.. Φτιάξε το l2.ini με την IP που ανοίγεις τον server(αν το έχεις σε dedicated/άλλο pc τον server που τρέχει) ή 127.0.0.1 αν το έχεις στο δικό σου pc. http://www.mediafire.com/file/5zyy3a51tlhw8k5/C6_System_Win10Supported.rar
  8. Title and link fixed.
  9. Δοκίμασες με άλλο patch? Κατέβασε ένα clean, και κάνε edit το l2.ini σου.
  10. public static boolean not private buddy..
  11. Even if this is still working, the think is, tower/adrenaline works. Owner cannot do something else, smartguard or sguard the only option for him.. True, the euro for br people is too expensive, but if you plan something good, you will get your money back.
  12. If you still have problem with the day of sieges, compile from svn the acis files, go to Siege.java at method setNextSiegeDate and try to c/p the method and make it work for frozen.. (That's what I did for someone before some months. Also with this way you can set all castles with the day you want).
  13. setNextSiegeDate Siege.java getCastle().getSiegeDate().add(Calendar.DAY_OF_WEEK, Calendar.SATURDAY);
  14. Giran/Aden/Dion SiegeDate: https://www.epochconverter.com/
  15. For other castles, SiegeDate: 1700000000000 (siege starts at 2023) and your problem solved. About errors on delete records, try to delete the Castle you want, and then remove it from xml/zones in your datapack. If it work good, if not, just let it start in 2023. Giran/Aden/Dipn SiegeDate: https://www.epochconverter.com/
  16. Ofc Isn't wonna work.. You need the core side code. Contact with @Rootware. He sell something like this here.
  17. You should re-write your code buddy.. Your logic about packets/unequip and then enchant and again equip it's totally wrong.. This can be done with only 1/7 of this code. example like: item.setEnchantLevel(enchant); item.updateDatabase(); player.sendPacket(new ItemList(player, false)); player.broadcastUserInfo(); player.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.S1_S2_SUCCESSFULLY_ENCHANTED).addNumber(item.getEnchantLevel()).addItemName(item.getItemId())); Make your method: public static void Enchant(L2PcInstance player, int enchant, int type) { L2ItemInstance item = player.getInventory().getPaperdollItem(type); if (item != null) { if (item.getEnchantLevel() < 150) player.sendMessage("Move to another enchant npc!"); else if (item.getEnchantLevel() == 300) player.sendMessage("Your " + item.getItemName() + " is already on maximun enchant!"); else if (item.getItem().getCrystalType().getId() == 0) player.sendMessage("You can't Enchant under " + item.getItem().getCrystalType() + " Grade Items!"); else if (item.isHeroItem()) player.sendMessage("You Cannot be Enchant On " + item.getItemName() + " !"); else if (player.destroyItemByItemId("Consume", 57, 100, player, true)) { item.setEnchantLevel(enchant); item.updateDatabase(); player.sendPacket(new ItemList(player, false)); player.broadcastUserInfo(); player.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.S1_S2_SUCCESSFULLY_ENCHANTED).addNumber(item.getEnchantLevel()).addItemName(item.getItemId())); } else player.sendMessage("You do not have enough adena."); } else player.sendMessage("That item doesn't exist in your inventory."); } if (command.startsWith("enchant")) { StringTokenizer st = new StringTokenizer(command); st.nextToken(); try { String type = st.nextToken(); switch (type) { case "Weapon": Enchant(player, 300, Inventory.PAPERDOLL_RHAND); break; } } catch (Exception e) { } } That's all you need.. Create a html, name the bypass "enchant" and done.. Your wep from +150 to +300.
  18. Next time press the BUMP button.
  19. Each player play different style.. If I wanted to play oly with Phoenix, I would use Wit +4 Int -4. About +/- STR | CON, it's your choice.. If you drop STR bad for the stun, if you drop CON bad for you..
  20. Youtube.com Search < class olympiad interlude >. Video better than words.
  21. Free no.. Open a topic in marketplace section, and ask for someone who have the files for some days or something.. Maybe you will get a better offer. But, that's bad because if your license ends, players cannot join anymore.. The option B, let it free bot and just code a anti-bot system for your server. After x mobs or x time.
  22. I cannot understand you my friend.. Sorry.. Can you upload a video? Or post a reply on your language and I will try to translate it.
  23. Let's remember the old good times.. Glad to see this server online again. I wish you the best..
  24. I don't know what you mean.. But take a look on file gameserver\handler\itemhandlers\SoulShots.java | BlessedSpiritShot.java | SpiritShot.java
×
×
  • Create New...