Jump to content

Thug!!

Banned
  • Posts

    265
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Thug!!

  1. all work's fine but change the javolution and FastMap with haskMap inside Trivia.java :)
  2. Ok guys thanks, when u will be home i will chech it!! :)
  3. Hello everyone:) i search about cloaks from gracia+++ for Interlude if some one know something let me give the answer. Thanks
  4. meta omws 9elei kai stin database :) na ta kaneis stackable magkes min mperdeveste... navicat > db > etcitems table .... vres to ID apo ta scroll pou 9eleis na kollane... kanta Stackable ... kai sto system 9eleis edit sta etcitemrgp.dat ! :) sto telos ta manual prepei na einai 0 0 0 ... esu 9a to kaneis 1 0 0
  5. κάνε με add στο Skype: Stathis.Sakidis
  6. post here your html code inside "code" "/code" but with [ ] no " " βάλε εδω το html σου αλλα μέσα σε "code" "/code" αλλά μέσα σε [ ] όχι " "
  7. corrupted.... add me on skype stathis.sakidis i will help you
  8. all skill's fixed:) try again
  9. just try from other browser:) or try to download from other links :) http://l2ruby.eu/forum/index.php?/topic/5-how-to-connect/
  10. jsut started!!!! EDIT: and if you dont make the start, other dont make the start why ( 7 players online ) server allways will be with low player's :) for that ... join with your friends and wake up the server!!!
  11. Hello guys:) no many speak from me:) New Pvp Server!. Website: http://www.L2Ruby.eu Forum: http://www.L2Ruby.eu/forum E-mail: support@L2Ruby.eu How to Connect: http://l2ruby.eu/forum/index.php?/topic/5-how-to-connect/ Server Rate's: Xp: 1.000 Sp: 1.000 Adena: 1.000 Drop: 50 Enchant Rate's: Safe: 5 Max 15 Normal Scroll: 50% Npc Enchanter: 90% ( 10 Feaher "Farm Item" per one Enchant ) Custom Info's: Npc's Farm Mob's And Some Unique Bosses ( not ready yet ) We have only One Custom Armor H/L/R :) for more fun and some balance. Website: http://www.L2Ruby.eu Forum: http://www.L2Ruby.eu/forum E-mail: support@L2Ruby.eu How to Connect: http://l2ruby.eu/forum/index.php?/topic/5-how-to-connect/
  12. add me <removed> Warning: You're not allowed to sell aCis. based l2j-acis last revision, full retail+fixed :)
  13. before this post .. you have said so you doesnt know good english, and again talk English ? :P nvm..
  14. θέλει να πει πως σκότωσες 5 λεπτά χρονο απο την ζωή σου... και δεν του το ειπες ακριβως
  15. www.L2jhellas.info :) here its your solvution.
  16. yeap :) you have to change someting about "mozilla/4.76" i dont rememeber it to solve you:) with "l2topzone" edit: com/l2jfrozen/gameserver/handler/AutoVoteRewardHandler.java replace this .... con.addRequestProperty("User-Agent", "Mozilla/4.76"); with this con.addRequestProperty("User-Agent", "L2TopZone");
  17. 327Rev> not tested ( i just fix the build error about -import net.sf.l2j.gameserver.templates.chars.L2NpcTemplate; with that +import net.sf.l2j.gameserver.model.actor.template.NpcTemplate; and that - public L2ClanManagerInstance(int objectId, L2NpcTemplate template) with that + public L2ClanManagerInstance(int objectId, NpcTemplate template) /* * 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 net.sf.l2j.gameserver.model.actor.instance; import net.sf.l2j.gameserver.datatables.SkillTable; import net.sf.l2j.gameserver.model.L2Skill; import net.sf.l2j.gameserver.network.serverpackets.ActionFailed; import net.sf.l2j.gameserver.network.serverpackets.NpcHtmlMessage; import net.sf.l2j.gameserver.model.actor.template.NpcTemplate; /** * @author Devlin * */ public class L2ClanManagerInstance extends L2NpcInstance { public L2ClanManagerInstance(int objectId, NpcTemplate template) { super(objectId, template); } @Override public void showChatWindow(L2PcInstance player, int val) { player.sendPacket(ActionFailed.STATIC_PACKET); String filename = "data/html/mods/clanManager.htm"; NpcHtmlMessage html = new NpcHtmlMessage(getObjectId()); html.setFile(filename); html.replace("%objectId%", String.valueOf(getObjectId())); player.sendPacket(html); } public int itemId = 57; public int itemCountLevelUp = 15; public int itemCountReputationPoints = 15; public int itemCountClanSkills = 20; public int clanLevel = 8; public int clanReputationScore = 30000; public int[] clanSkills = { 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391 }; @Override public void onBypassFeedback(L2PcInstance player, String command) { if (command.equals("clanLevelUp")) { if (player.getClan() != null) { player.sendMessage("You don't have a clan."); return; } if (!player.isClanLeader()) { player.sendMessage("You aren't the leader of your clan."); return; } if (player.getInventory().getItemByItemId(itemId).getCount() > itemCountLevelUp) { player.sendMessage("You don't have enough items."); return; } player.getClan().changeLevel(player.getClan().getLevel() + clanLevel); player.getClan().broadcastClanStatus(); player.getInventory().destroyItemByItemId("Init.", itemId, itemCountLevelUp, player, player); player.sendMessage("Your clan's level has been changed to "+player.getClan().getLevel()); } else if (command.equals("clanReputationPoints")) { if (player.getClan() != null) { player.sendMessage("You don't have a clan."); return; } if (!player.isClanLeader()) { player.sendMessage("You aren't the leader of your clan."); return; } if (player.getInventory().getItemByItemId(itemId).getCount() > itemCountReputationPoints) { player.sendMessage("You don't have enough items."); return; } player.getClan().addReputationScore(clanReputationScore); player.getClan().broadcastClanStatus(); player.getInventory().destroyItemByItemId("Init.", itemId, itemCountReputationPoints, player, player); player.sendMessage("Your clan's reputation score has been changed to "+player.getClan().getReputationScore()); } else if (command.equals("clanSkills")) { if (player.getClan() != null) { player.sendMessage("You don't have a clan."); return; } if (!player.isClanLeader()) { player.sendMessage("You aren't the leader of your clan."); return; } if (player.getInventory().getItemByItemId(itemId).getCount() > itemCountClanSkills) { player.sendMessage("You don't have enough items."); return; } for (int s : clanSkills) { L2Skill clanSkill = SkillTable.getInstance().getInfo(s, SkillTable.getInstance().getMaxLevel(s)); player.getClan().addNewSkill(clanSkill); player.getClan().broadcastClanStatus(); player.getInventory().destroyItemByItemId("Init.", itemId, itemCountClanSkills, player, player); player.sendMessage("Your clan has learned all clan skills."); } } } }
  18. delete old build :) and try again... if something post it
  19. can some one give me zone.xml ( Antharas Lair be the multi faction zone ? ) i put some loc's but some places its out from MultiFactionZone :/ .. more from 50% out of multi..
×
×
  • 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