Jump to content
  • 0

interlude Some Questions About L2J Interlude Projects


#Hellson

Question

Hi to all, first of all i try use search in google and MxC forum  :D . I try find l2j free interlude project and chose l2jacis but have some problems what i cant fix because of n00bie. I check last sources 340 all good at first sight, but skills don't work like in other free projects or on curently working server. Mage cast speed good, but skills cast time slow. If somebody know how fix it, pls answer. 

P.S. I try correct reuseDelay and other parametters in xml files, but don't help...

P.S. If u know other projects what i can pick for base of my x10-50 server, pls answer. :lol:  Sry for bad english, i'm not a native speaker.

Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0

For your second PS:

 

Whatever project you choose you will have to work on it, there is nothing ready.
BUT acis project is the only currently active project, so you will have their support (And it worth to purchase it).
 

Link to comment
Share on other sites

  • 0

I know about that, and i try learn java and fix some bugs alone, but for now can't understand what the problem with cast time in l2jacis. I try answer in Acis forum but not received normal response from developers/administration or players who use l2jacis.

Link to comment
Share on other sites

  • 0

Its working fine, you get used to crappy packs, except skills with hitTime < 500 there is a problem. You can always lower the hitTime and more or less its gonna be fine.

Edited by SweeTs
Link to comment
Share on other sites

  • 0

I guess you should edit Formulas.java

	/**
	 * Calculate delay (in milliseconds) for skills cast.
	 * @param attacker
	 * @param skill used to know if skill is magic or no.
	 * @param skillTime
	 * @return delay in ms.
	 */
	public static final int calcAtkSpd(L2Character attacker, L2Skill skill, double skillTime)
	{
		if (skill.isMagic())
			return (int) (skillTime * 333 / attacker.getMAtkSpd());
		
		return (int) (skillTime * 333 / attacker.getPAtkSpd());
	}

P.S. Do not listen SweeTs. Working on something different than aCis is time wasting. If you really want to learn something start working on aCis. If you get a customer rank you can receive better support and a lot of codes (for examples or ready to use).

Link to comment
Share on other sites

  • 0

Thx raF but i check Formulas.java in acis frozen l2jserver and other projects, same like in acis except changed calcAtkSpd =>calcMAtkSpd, maybe problem in other java files? I'm still trying to find a solution to this problem, if someone can help or say where is the problem post pls.

Link to comment
Share on other sites

  • 0

Offtopic: You want transform Lineage 2 to Counter-Strike 1.6? First you changed cast time and after add new weapons AK-47, M-16?  :happyforever:

 

You forgot about client side. skillgrp.dat contains cast time all skills. Edit only server side not enough. If you change something in skill variables on the server side, then you need change it in client side. Actually for skills aswell.

Link to comment
Share on other sites

  • 0

Root thx for answer, but i think its not client problem, pls check video and u understand me better.

https://www.youtube.com/watch?v=IsouC14P8bI

 

Problem only with Aura Burn and other toggle skills (auras).

Edited by #Hellson
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...