mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-07-31 14:56:20 +02:00
effect timers now display (<3 ion)
- added source/target to effects - todo: send battle packet crap
This commit is contained in:
parent
8bebba64b3
commit
c7b87c0d89
6 changed files with 82 additions and 25 deletions
|
@ -128,6 +128,18 @@ namespace FFXIVClassic_Map_Server.Actors
|
|||
|
||||
}
|
||||
|
||||
public List<SubPacket> GetActorStatusPackets()
|
||||
{
|
||||
var propPacketUtil = new ActorPropertyPacketUtil("charaWork/status", this);
|
||||
var i = 0;
|
||||
foreach (var effect in statusEffects.GetStatusEffects())
|
||||
{
|
||||
propPacketUtil.AddProperty($"charaWork.statusShownTime[{i}]");
|
||||
i++;
|
||||
}
|
||||
return propPacketUtil.Done();
|
||||
}
|
||||
|
||||
public void PlayAnimation(uint animId, bool onlySelf = false)
|
||||
{
|
||||
if (onlySelf)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue