An action once executed in most case will not want to run again until it is ready. By default, every action has the ability to cool down.

Simply override the CooldownTime Property

using SGOAP;

public class FooAction : Action
{
	public override CooldownTime => 5;
}