Jump to content

dymek1984

Members
  • Posts

    214
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by dymek1984

  1. Broadcast.toAllOnlinePlayers(new CreatureSay(1, Say2.CRITICAL_ANNOUNCE, "Notice: ","Message")); this code is from freya but i belive in interluide l2jfrozen u have something similar. it will write announcment in chat with other color (little darken blue ) Notice: Message
  2. iam interesed to buy this mod, but not for 40 :P if some one can help me pm me here.
  3. I give you one more chance, and will join if you changed farm to [Easy mode]. I see raid bosses working now, ( i hope :p ) And more events. Maybe you think a little after one fail start.
  4. I hope no more ultra farm like before, server was very good, i hope it will be better this time.
  5. insert into droplist (mobId, itemid, chance, min, max,category) select id, 4037, 1000000, 1, 1, 52 from npc where type='L2Monster' and level>='70'; try this
  6. paste this item here from item xml
  7. for this who have prblem when more tha2 player is registered to event. int rnd1=Rnd.get(players.size()); int rnd2=Rnd.get(players.size()); while(rnd2==rnd1) rnd2=Rnd.get(players.size()); // for(L2PcInstance player : players) // { // if(player != players.get(rnd1) && player != players.get(rnd2)) // players.remove(player); // } its work, but i dont check yet what happend with registered players not picked for fight. And there is one more bug, when teleported before start players can target each other and kill before fight start, is needed to add or root (but mage can kill also if distance is too low) or disable target before fight start. when i done this i will post.
  8. its not better to change title in clan options?
  9. I thought i have what i want but i make mistake, is still not resolved. Maybe i try to explain better: one multisell for enchanted items, when u open u can see only items that u can buy ( same as in PvP merchant for Fame) in L2MerchantInstance is 2 bypasses _multisell and _exc_multisell . if i use _multisell as bypass for my multisell list i have all item visible in multisell window and ingredient is Eternal core sword +1 and prduction eternal core sword +2 if i have eternal core swoerd + 1 i can buy eternal core sword +2, this work perfectly. if i use _exc_multisell i can see only 1 item eternal core sword +1 as ingredient and prduction so ignore my " enchantmentLevel="2" " in production, as production i have +1 because i have item +1 in my inventory. so i want to do, if u have noe items from multisell list u see nothing in window, if u have u can see and exchange with "enchantmentLevel="2" " hope u undersand me.
  10. Already added this what you paste. But I ask for hide items like in _exc_multisell in bypass. Fame manager have hides items if u don't have ingrediento in your inventory. When I put enhancement level in fame manager it's completely ignored and give me weapon with same enchant.
  11. Hello. I have question how to do when i have item for example Eternal Core Sword +1 as ingredient and adena 500 also as ingerdien and it give me Eternal Core Sword +2 as production. but i want to show me in multisell only items where in ingredient enchant is same, here is example: <item> <ingredient count="1" id="15544" enchantmentLevel="1" /> <ingredient count="500" id="57" /> <production count="1" id="15544" enchantmentLevel="2" /> </item> ofc maintainEnchantment="true" in normal merchant is working but if i put all items possible for enchant, list will be very large. and also item augumentation and attributes should also be on new item. so i want to hide all other items that i cant buy like in famemanager. I search all MultiSellChose.java and found : product.setEnchantLevel(e.getEnchantLevel()); changet to: product.setEnchantLevel(e.getEnchantLevel()+1); but as return i had 2 items +0 ;/ dont know where to search now to resolve my problem. edit. i want to add, when i add this: <item> <ingredient count="1" id="15544" enchantmentLevel="1" /> <ingredient count="500" id="57" /> <production count="1" id="15544" enchantmentLevel="2" /> </item> to famemanager, no matter what i put in enchantmentLevel, always production have same enchant as ingredient. (famemanager i mean _exc_multisell )
  12. i was waiting for good freya server, features looks promising.
  13. maybe this help you: else if (event.startsWith("main.htm")) { sendCBHtml(player, HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "data/scripts/custom/something/main.htm")); }
  14. Always when i leave my char in this are for couple minutes i get stuck and cannot move, when i try to move or use skill i get disconected. i noticed this happend only after: " GlobalVariablesManager: Database updated. GlobalVariablesManager: Data updated successfully. " Maybe someone else have same bug?
  15. With talisman is that, if i equip talisman with same id it replace. but when id is different id, both talisman is equiped and stats also. It must be: when Talisma attack power lvl 1 is equiped and i want to equip telisman attack power lvl 2 it replace or take only stats from lvl 2 [grater]. I just test boss jevels and works perfect.
  16. DP rev. 8398 Core rev 4944 Freya L2jServer Hi i want to add custom boss jevels. example baium ring s84. and how to do that stats is taken only from 1 ring like is when two identical rings is equiped. And how make same thing with talismans, i have also custom talismans and 1st lvl give 1% patk, 2nd lvl give 2% how make if two talisamn is equiped stats is taken from grater one? Hope u understund me.
  17. yes true, i dont know how to do it, so i ask here, maybe some one can help me. maybe u can help me, if u know how.
  18. my knowledge of java is not impressive, so maybe can you explain me a little bit how to do it.
  19. acievement can done only once, and pvp reward can be obtained also when quest is not taken. So its needed to be only counted when quest is taken.
  20. Hi. Is possible to make daily quest where player need to kill, for example 20 players. Or maybe exist similar quest if yes pls some info. thx.
  21. hi, i have problem with broadcastPacket(new MagicSkillUse(this, 5103, 1, 1000, 0)); in L2PcInstance my files is l2jserver freya rev. 4944 I would like to for each kill, killer get effect that is mark him as killer little mess? if killer kill victim he get skilleffect as change subclass or change class. so i put broadcast in l2pcinstance after public void increasePvpKills(L2Character target) but no matter what i do the victim got effect not killer. i had this effect some time ago (couple years ;p) in gracia final and that was: L2PcInstance kill = (L2PcInstance) killer; killer.broadcastPacket(new MagicSkillUse(this, 5103, 1, 1000, 0)); sendMessage("You have earned 1 PvP for kill" + kill.getName() + " and u have " + killer.getPvpKills() + " PvP"); and works perfectly, but now is changed everything and i have problem, cn some one give me tip or help me?
  22. Deleted.
  23. hi i put this in my server H5 l2jserver and: when i buy some buffs and target mayself i see my buffs that i can buy ;p html appear when i target buffseller from far far far away ;p when i have enchanted buffs and want to sell buyer get not enchanted buffs and some other bugs ;] Sorry for my english, hope u understund me.
  24. i mean item broker Special NPC in game who have some items that everybody can bid for ADENA The bid cannot be cancelled until someone else outbids the original bid. After being outbid, you must talk to the NPC to get back the adena you deposited for the bid originally. A cancelled bid must be retrieved from the Item Broker NPC within a week, otherwise the returned bid amount will be lost after one week has passed. A highest-bidder icon will appear above the chat window if you are the highest bidder. The icon will disappear if you are outbid. If a bid is made by one person 10 minutes before the auction end time, the auction duration will be extended by 5 minutes. If two or more people bid during this extended time, the auction duration will be extended by another 8 minutes. After these two extension, the countdown is final. If you win an auction, the item will be stored in your Private Warehouse. and Ancient Adena i was only for example. i know how to put new item for auctions its easy. and player can bid and win auction. But every item is for Adena and here i want to change adena for other currency. and my question is, how to do that?
×
×
  • 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..