Jump to content

Trance

Global Moderator
  • Posts

    3,896
  • Credits

  • Joined

  • Last visited

  • Days Won

    61
  • Feedback

    0%

Everything posted by Trance

  1. Somehow you read my mind. Gold-style vibes, but it will have to hit 2020 expectations. If you could also please post it on our forum so we can have further discussion.
  2. Lineage 2 Classic: Zaken client.
  3. Hi everyone! I'll be leading the development for https://www.lineage2.gold I believe we'll be building this server together! There is no such a thing like a bad suggestion. You're free to create your own topic in this section sharing your vision with us about gold-style servers. We'll be using an Lineage 2 Classic client and the options we have are almost endless. You can share with us the following, but not limited to: What do you expect from a gold-style server in 2020 What will not like you to see What would you like to see What are the mistakes you've seen on other servers What you always hoped for but never happened and much more! We can't wait to see this massive project come to life. Create your own topic here: https://forum.lineage2.gold/index.php?/topic/11-share-your-l2gold-vision-with-us/ We're also looking for partnerships and more people to be part of our team! See you around!
  4. I'll be leading the development of http://www.lineage2.gold

    A revolutionary L2Gold Server on the Classic client.

  5. That is more than enough for L2J. I sent you a pm about it.
  6. If you're making something based on listeners, you don't need any approval from aCis because you won't share the source. And again, what's the point to make another L2J fork, when you can join them and do a better job together.
  7. @xFranky, and yet, you haven't answered my reply. @Sido, good to see you.
  8. Hi @xFranky, You need someone like @Tryskell (or himself) to have a good understanding of the project and not to rush on committing 2 lines suggested by a random guy. Everything has to be organized in order to success. If you don't control the changes/commits, the project will end up like any other L2J fork from 2009 when everyone was having one. You really need to think it thru when doing a commit what is it fixing what else may that affect how can you improve it how can you make sure you're following a coding style and testing it in every possible way Adding customs is definitely easier. But how will this project of yours save the community? Server owners can pay several (if not one) developers to code whatever he/she wants. Perhaps it will only help the community if server owners would be more open minded and cooperative. I'm reading every single new reply on aCis forums weekly. I'm not opening a server, but I'm very attached to the project. I'm occasionally helping people (so called "L2 buddies") with their servers, for free. If I were you, I'd make a separated project, self-styled "engine" with listeners, like we/I used to be working on aCis, thanks to Seth that opened my eyes many years ago. If you do this, you'll have one file for each feature/custom. I will c/p one example below for you. You and your developers that wanna join you will be more satisfied with this. Maybe you can join an existing community, such as aCis with your engine -separated categories on the forum. Try to talk to @Tryskell, @Sido and @SweeTs about it. # True or false. OlympiadSkillsSystem = False # Skill level set to 0 will auto select max skill level. # [classId: = skillId-skillLv]; OlympiadSkills = [101:92: = 7100-1]; public class OlympiadSkills implements EventListener { private static final Logger LOG = Logger.getLogger(OlympiadSkills.class.getName()); protected static final HashMap<Integer, L2Skill[]> olympiadSkills = new HashMap<>(); public OlympiadSkills() { CorvusConfig config = Corax.config(); String data = config.getProperty("OlympiadSkills", ""); String[] dataHash = data.split(";"); for (String data2 : dataHash) { String[] skillIds = data2.split("=")[1].split(","); L2Skill[] leIds = new L2Skill[skillIds.length]; SkillTable table = SkillTable.getInstance(); for (int i = 0; i < skillIds.length; i++) { String[] defs = skillIds[i].split("-"); String skillIdValue = defs[0].replaceAll("[^\\p{L}\\p{N}]", ""); String skillLevelValue = defs[1].replaceAll("[^\\p{L}\\p{N}]", ""); int skillId = Integer.parseInt(skillIdValue); int level = Integer.parseInt(skillLevelValue); boolean max = level <= 0; L2Skill skill = table.getInfo(skillId, max ? table.getMaxLevel(skillId) : level); if (skill != null) leIds[i] = skill; else LOG.warning(getClass().getSimpleName() + ": Failed loading skill: " + skillId + " level: " + (max ? table.getMaxLevel(skillId) : level) + ". Skill dose not exist!"); } String[] dataHash2 = data2.split("=")[0].split(":"); for (int i = 0; i < dataHash2.length; i++) { String classIdValue = dataHash2[i].replaceAll("[^\\p{L}\\p{N}]", ""); int classId = -1; if (classIdValue.isEmpty()) continue; try { classId = Integer.parseInt(classIdValue); olympiadSkills.put(classId, leIds); } catch (Exception e) { e.printStackTrace(); } } } LOG.info(getClass().getSimpleName() + ": Loaded " + olympiadSkills.size() + " balance entry(s)."); } @Override public void listen(Event event, Object... params) { switch (event.eventId) { case EventKeys.Olympiad.portPlayerToArena: { Player player = (Player) params[0]; L2Skill[] skills = olympiadSkills.get(player.getClassId().getId()); if (skills != null) { for (L2Skill skill : skills) player.addSkill(skill, false); } else LOG.warning(getClass().getSimpleName() + ": Missing skill for classId: " + player.getClassId().getId()); break; } case EventKeys.Olympiad.portPlayerBack: case EventKeys.Cleanup: { Player player = (Player) params[0]; L2Skill[] skills = olympiadSkills.get(player.getClassId().getId()); if (skills != null) { for (L2Skill skill : skills) player.removeSkill(skill.getId(), true); } break; } } } }
  9. If server owners know nothing about networking, let em' pay hundreds for something simple. :)
  10. They can't make something they haven't played.
  11. I've seen a free share with it.
  12. Hi weirdos and weirdos replies,
  13. We had so many discussions on this.
  14. Those could be rumors. If the job opening is real, I just hope that remake won't take forever and we'll see an official announcement and/or preview soon.
  15. MxC is not a "get a cheat" website. You may ask for opinions, suggestions and such ,still.
  16. Their only goal was to rip off every single project and put it together. Never focused on quality.
  17. Have anybody thought to use pfsense?
  18. You need to provide information about YOU in the first place.
  19. oi
  20. Do not be an ass sharing other people's IRL pictures, and judging them.
×
×
  • Create New...