Jump to content

nortim

Members
  • Posts

    209
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by nortim

  1. Good Morning ! I'm trying to modify the donator enchant but I'm not finding the line you said .. Here is my RequestEnchantItem
  2. The error still persists .. could anyone else help? (I.e.
  3. So how could he complete it? I'm new to java, have patience. What would be missing, and how to implement?
  4. That's why I was intrigued, I get no console error, none at all
  5. I understood, then how can I solve the healers teleport bug
  6. They made this restriction and it worked out better, but so does not work for heal party skills, add it to use in heal party as well? Then I would use it. maybe now is better with the solomum code in heal.java final int[] supporters = { 15, 16, 29, 30, 42, 43, 97, 105, 112, 115, 136, 116 }; // support classes ID's for (int act : supporters) { if (activeChar.getActingPlayer().getClassId().getId() == act && ((L2PcInstance) target).isInsideZone(123123)) { activeChar.getActingPlayer().sendMessage("You can't heal in this zone.."); continue; } }
  7. But if I do not teleport the healers, it will siege, and I wanted to restrict only 1 area and not to teleport to all locations. Does anyone know how to fix this?
  8. Good morning, I am trying now not to find a forum needing help and I was very well attended. However, I am with a modless error that they have passed me .. The video will explain correctly what is happening, more is basically the following: I put the area in flagzone, there blocks the healers, but when he returns to city of this bug there. Can anyone help? My Codes PvP Area: Link Post Block Healers: http://www.maxcheaters.com/topic/213502-block-bs-in-flagzone/ Code: Video: https://youtu.be/d3vxJpvZT1g
  9. Solumon, you have to put the coordinates to be edited in an .ini / .properties file ..?
  10. I want to thank you sincerely for all my goodwill and patience with me, it worked perfectly! Thank you very much! ;D ;D ;D ;D ;D ;D ;D ;D
  11. Sorry for the lack of wisdom, I'm starting now, and thank you very much for the attention! I'm going to study java from now on. I am adding but I am with the following error (from the photo), I will post my request restart and if possible show me how to add.
  12. Could you tell me where to add and the line references?
  13. Could someone create the code for the char to be born in the same area without changing the respawns? Example, I hedge an area and in the .properties file I edit the coordinates of when the players die inside it .. Could someone please do?
  14. I thought the following option: Put a config in java to give spawn in the same area, example of Multifuctions, but I can not adapt to FlagZone, could you help me? + static int[][] spawn_loc; + Properties prop = new Properties(); + prop.load(new FileInputStream(new File("./config/MultiFunctionZone.properties"))); + pvp_enabled = Boolean.parseBoolean(prop.getProperty("EnablePvP", "False")); + spawn_loc = parseItemsList(prop.getProperty("SpawnLoc", "150111,144740,-12248")); + revive_delay = Integer.parseInt(prop.getProperty("ReviveDelay", "10")); + if(revive_delay != 0) + if (character instanceof L2PcInstance) + { + final L2PcInstance activeChar = ((L2PcInstance) character); + if(revive) + { + ThreadPoolManager.getInstance().scheduleGeneral(new Runnable() + { + @Override + public void run() + { + activeChar.doRevive(); + heal(activeChar); + int[] loc = spawn_loc[Rnd.get(spawn_loc.length)]; + activeChar.teleToLocation(loc[0]+Rnd.get(-radius,radius), loc[1]+Rnd.get(-radius,radius), loc[2]); + } + }
×
×
  • 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