mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
35 lines
938 B
C#
35 lines
938 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using FFXIVClassic_Map_Server.Actors;
|
|
using FFXIVClassic_Map_Server.packets.send.actor;
|
|
|
|
namespace FFXIVClassic_Map_Server.actors.chara.ai.state
|
|
{
|
|
class DeathState : State
|
|
{
|
|
DateTime despawnTime;
|
|
public DeathState(Character owner, DateTime tick, uint timeToFadeOut)
|
|
: base(owner, null)
|
|
{
|
|
owner.ChangeState(SetActorStatePacket.MAIN_STATE_DEAD);
|
|
canInterrupt = false;
|
|
startTime = tick;
|
|
despawnTime = startTime.AddSeconds(timeToFadeOut);
|
|
}
|
|
|
|
public override bool Update(DateTime tick)
|
|
{
|
|
// todo: handle raise etc
|
|
if (tick >= despawnTime)
|
|
{
|
|
owner.Spawn(Program.Tick);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
}
|