Hello everyone,

05/22/2021 02:24 maboyja#1
Hello everyone,
I would like to know what I should do to make me use the skill faster, where should I go and modify it? Who knows, please tell me.


[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
Thank you.
Thank you.
Thank you.
Thank you.
05/25/2021 15:23 Lee Ki-Hwan#2
Im not sure but I think that's the calculation they made to prevent spamming skills.

You can go to GameServer/Skill.cpp and look for the function isReady(), you should see this:
Code:
 reusetime = reusetime * ( 150.00 / (150 + prob )) * (100.00 / (100 + prob));
Delete that line and add this:
Code:
 reusetime -= reusetime * prob / 100;

			if(reusetime < 0)
				reusetime = 0;
I think that should solve your issue, but im not really sure, tell me if its working or not.