Aura.Channel.Skills.Life.WebSpinning.Prepare C# (CSharp) Метод

Prepare() публичный Метод

Prepares skill, goes straight to use to skip readying and using it.
The client will take a moment to send the Complete packet, as if it would cast the skill first.
public Prepare ( Creature creature, Skill skill, Aura.Shared.Network.Packet packet ) : bool
creature Aura.Channel.World.Entities.Creature
skill Skill
packet Aura.Shared.Network.Packet
Результат bool
		public bool Prepare(Creature creature, Skill skill, Packet packet)
		{
			Send.SkillUse(creature, skill.Info.Id, 0);
			skill.State = SkillState.Used;

			return true;
		}