Jump to content

Kara

Banned
  • Posts

    2,100
  • Joined

  • Last visited

  • Days Won

    46
  • Feedback

    100%

Everything posted by Kara

  1. Follow xxdem's advice if you want use Virtual Machine else you can use https://technitium.com/tmac/ which i used to erase my Mac Address for teamviewer usage.
  2. 1st of all ignore Melron, he is in love lately and he don't know what he is talking about. Last code he did contained hearts, kisses and bdsm. 2nd without source simply, close the server, close the maxcheaters, close the computer and go out for a coffee cause you can't do a shit. Now if you decide to get a source you simply can create a new Instance (Copy paste an existed template) and inside at showHtmlWindow(player) write a code like: private static int[] RAID = { }; private static String getColor(int i) { if (i==0) return "FFFFFF"; if (i==1) return "55555"; return "00000"; } @Override public void showChatWindow(final L2PcInstance player) { StringBuilder st = new StringBuilder(); st.append("<html><body><title>Raid Info</title>"); st.append("<table width=420>"); int index = 0; st.append("<tr>"); st.append("<td width=30>Pos.</td>"); st.append("<td width=30>Name</td>"); st.append("</tr>"); for (final int boss : RAID) { index ++; String name = NpcTable.getInstance().getTemplate(boss).getName(); int status = GrandBossManager.getInstance().getBossStatus(boss); st.append("<tr>"); st.append("<td width=30>" + index + "</td>"); st.append("<td width=30><font color= "+ getColor(status) + ">" + name + "</font></td>"); st.append("</tr>"); } st.append("</table>"); NpcHtmlMessage html = new NpcHtmlMessage(getObjectId()); html.setHtml(tb.toString()); player.sendPacket(html); } Don't bother just copy paste the code without adjusting i wrote it in Sublime and i dont even know if syntax is ok. (especially for html part)... Just to give you the idea of how to make your code.
  3. the method destroyItem you use simply destroy all count out of your inventory. Use the player.getInventory().destroyItemByItemId("RequestRefine", refinerItem.getItemId(), 1, player, player); Also you don't have to send me also in private the same paste you did here...
  4. Dear god your english.. anyway. In clientpackets package find the RequestRefine.java and scroll until you see something like: if (!activeChar.destroyItem("RequestRefine", refinerItem, 1, null, false)) or similar and paste it here.
  5. Explore what? It's just pride-like pack. If by "explore" you mean leech content for your server then download Gracia Final Pride source. It's shared.
  6. Consider Lineage 2 back in 2004 was hosting in 512 Ram & 1 Core with 100 Mbps network, you don't need any of them (Depends the geodata, addons e.t.c afcourse). Also as i mentioned, Linux - Windows im actualy against linux cause it tend to attract Apple-Like boys who think they are "Hackers" cause they work in different enviroment and present Linux as something super light for Game usage. As if with the technology we have in our days we need light softwares. Unless you stack with i5 processor and 2010 PC then okay i give up :3 Windows is just fine.
  7. Depend which one you're familiar with? I don't believe really into ubuntu, i mean sure it's lighter but in 2k18 with processors reaching 128 physical cores even with a heavy software you won't understand the difference. So i vote for W-Server 2012
  8. Wait, i don't get it, what you mean without Javolution and what you mean L2JFROZEN core?
  9. Custom zones? Καποιο shader δεν φορτωνει σωστα.
  10. None of what you said is valid. The google translation doesnt altering any of your data it just makes the " as ' this is my result in google translation: <phrase type = 'TELL' text = 'Wait I'm Busy' /> <phrase type = 'TELL' text = 'I'm behind I'm busy' /> Simply open the translated text into Notepad++ and press Control + A (Select all) then Control + F (Search) then swich to REPLACE tab and in the 1st box (top) write ' and the beneath box write " and click Replace All. It will make all ' -> " So what is the problem after all?
  11. Bad graphical example. I ended up with cookies inside cheese rolled with pizza dough and tomatoes..
  12. Provide us the damn cute files you download. If is .java then you need eclipse (source)
  13. I'm legend.

    1. Show previous comments  7 more
    2. camenomat0

      camenomat0

      a true legacy, a true legend

       

                         TOP!

       

       

    3. Kara

      Kara

      Thank you my beloved person. 

    4. camenomat0

      camenomat0

      only a legend can say 'thanks' that way.

       Top!

  14. Do you have WAMP or XAMP installed in your PC along with MySQL v?
  15. Hello, yesterday i tried make cookies with smarties inside but i failed. Do you know any other recipes i can follow? Thanks. See what you did there? You do not specify your problem at all. What exactly you mean "none didnt work for me"? I'm pretty sure all works fine you just don't know how to setup them.
  16. He don't need any java services, he need client developer (to bring animations, maps) from other client to C4. Also don't bother talk to him if you dont speak spanish.
  17. <-- but how much will you pay me?
  18. Hello, my name is Frye, i'm here to offer you the best and most effective cookies in forum. Welcome!
  19. @Dan7E2 @tazerman2 You both need to grow up. Reduce reputation for no reason? What are you both, 8 ?
  20. Let's all speak in our language. Good idea. So nobody know what the heck is goin on.
  21. 1. Open your chrome or Mozzila. 2. Type in this incredible cute and sexy bar the following: 3. L2j how to add NPC 4. Profit.
  22. Add a handler on Lifestone like Potion (check ex. Mana potions). And then create a new ItemHandler with name LifeStone.java and inside you must write the proper code. Do the checks 1. If player's weapon (Base on PaperItemDoll - RHAND) is null L2ItemInstance item = player.getInventory().getPaperdollItem(Inventory.PAPERDOLL_RHAND); if (item == null) { } 2. If player's weapon is augmented or can be augment if (item.isAugmented() || item.isHeroItem() || item.getItem().getCrystalType() == 0 || item.getItem().getCrystalType() == 1 || item.getItem().getCrystalType() == 2) { return; } 3. Remove the augment stats. 4. Generate new augment stats and apply them. L2Augmentation augmentation = new L2Augmentation(attributes, idaugment, levelaugment); augmentation.applyBonus(player); item.setAugmentation(augmentation); L2ItemInstance[] unequipped = player.getInventory().unEquipItemInBodySlotAndRecord(item.getItem().getBodyPart()); InventoryUpdate iu = new InventoryUpdate(); for (L2ItemInstance itm : unequipped) { iu.addModifiedItem(itm); } player.sendPacket(iu); 5. Destroy the lifestone (Item that pressed) player.getInventory().destroyItemById("Destroy", item.getItemId(), 1, player, true); Also don't forget to run this SQL REPLACE INTO item_attributes VALUES(?,?,?,?) so it can be saved in Database also.
  23. I know it sucks :P but its the best option you have if someone does not give u direct answer.
×
×
  • 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