Jump to content

Matim

Legendary Member
  • Posts

    4,504
  • Credits

  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Everything posted by Matim

  1. Think, use brain a bit, I gave you simple examples. Simply chceck Say2.java class for more chat types.
  2. You can set one login server for example for 2 servers with different chronicles. It was explained plenty of times.
  3. You can create new channel but with existing colors from client.
  4. where type is, for example: Say2.CLAN, Say2.ANNOUNCEMENT and so on, your choice.
  5. In fact some codes are worth some ammount of money - even big. L2J chosen to be open source, so its not good example to compare it.
  6. Use their support forum instead of posting here.
  7. Creating stable faction engine isnt anything hard, the point is to make it valuable engine, something unique, impressive and so on. It looks like simple, common engine, which is surly not worth that money, especially without source, but its just my opinion.
  8. 1. Read forum and section rules before starting posting. 2. post in proper section 3. use brain 4. there are guides about this Locked.
  9. 200 euro for something without anything special in description. ..and without source :) ? Good luck selling it.
  10. I have here almost 2000 post with replys trying to help, so guess what - yes. And there are also other helpful members. And since author of this thread can not understand what we are saying, answer is obvious.
  11. By using brain, and some own effort (...) Create new type: ItemZone.java (inside zone/types package) public class ItemZone extends L2ZoneType { private int _item = 0; public ItemZone(int id) { super(id); } @Override public void setParameter(String name, String value) { if (name.equals("itemId")) _item = Integer.parseInt(value); else super.setParameter(name, value); } @Override protected void onEnter(L2Character character) { if (character instanceof L2PcInstance) { if(((L2PcInstance)character).getInventory().getItemsByItemId(_item).size() == 0) { character.sendMessage("You dont have required items to enter!"); character.getAI().setIntention(CtrlIntention.AI_INTENTION_IDLE); character.teleToLocation(MapRegionTable.TeleportWhereType.Town); } } } @Override protected void onExit(L2Character character) {} @Override public void onDieInside(L2Character character) {} @Override public void onReviveInside(L2Character character) {} } Then create new zone in zones.xml (datapack) - dont even dare to ask how to do it, it was explained plenty of times. Create new zone with this name, with special parametr. Done, 10 minutes of work - next time use search and put some own effort.
  12. Frequently Asked Question Its explained there, also was explained plenty of times in the past. Search does not hurt, topic locked.
  13. B1ggBoss asked you about fork, chronicle, revision, etc. Do you think that single information about chronicle is gonna change our view about your problem so much? No. Thats why you should understand that if you really expect any help, you should provide as much info as possible, also some own effort is required.
  14. Create new zone type, in onEnter add check if player inventory contains item with id X, if yes do nothing (allow him to enter) if not - teleport him to nearest village.
  15. Walker routes, explained xxx times, shared couple of times aswell, search doesnt hurt.
  16. Uh, you should provide some information first. It sounds a bit strange - you are saying you have coded it. Ok, but im here to help you, not to judge, so most likely you have created (or not) instance for your npc to handle event joining/leaving and so on. If yes, make sure you set proper instance in npc type (database)
  17. Simple way, on event start get current system miliseconds. System - class documentation. and then compare it with current whenever you want to show how many left. To display how many hours/minutes left, you will have to convert it aswell. But its really simple and fast to do, so you should not have any problems.
  18. Check this npc instance (L2ClassMasterInstance or how over its called) It may be included inside java code (mean html)
  19. There was similar thread few days ago, search doesnt hurt.
  20. I really cant understand what exactly do you mean. Thats why try to explain it more precisely.
  21. Rather not, im even mostly sure, only standard ones.
  22. Ohh, create simple multisell based npc - standard shop. I havent seen any npc shared here lately, which would contains materials for each thing. But, to save time, you can always use multisells from admin panel (there is section for craft materials)
  23. Exactly, login, enter world, couple of packets, senseless.
×
×
  • 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