Hello,
Im searching about what codec i need to put the time to cast recovery "mini heal" spell , i only want that "mini heal" spell has a cast recovery to cast "mini heal" again more slow than if you cast other spell, i dont want to change my base cast recovery shard.

I want to do that to avoid "mini heal" macros speed on my shard.

I know that if you put this codec in heal.cs you can change the cast time only in this spell i want to put something like this to cast recovery on heal.cs.
Code:
public override TimeSpan CastDelayBase { get { return TimeSpan.FromSeconds( 0.5 ); } }

Thank you.
 
Thank you for answer Po0ka, i have tried this but it dont works, it doesn't give any error but it is like if i didn't put nothing on the codec.
Do you have another one idea?
 
What did this number mean, faster cast recovery 1? When i back to my house i will check that you said
 
Try add this to your Heal.cs
Code:
public override TimeSpan GetCastRecovery()
{
	return TimeSpan.FromSeconds( 1.0 );
}
Where you can change the timespan to be what you want..

You might also try overriding CastDelayMinimum

Code:
public override TimeSpan CastDelayMinimum { get { return TimeSpan.FromSeconds( 1.0 ); } }
 
Back