mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-29 15:43:17 +02:00
Refactored Demo's battle action code and cleaned things up.
This commit is contained in:
parent
71d5bbc9ff
commit
7ad40f625a
14 changed files with 217 additions and 122 deletions
|
@ -109,6 +109,16 @@ namespace FFXIVClassic_Map_Server.packets.send.actor.battle
|
|||
/// <summary>
|
||||
/// this field is not actually part of the packet struct
|
||||
/// </summary>
|
||||
public uint animation;
|
||||
//public uint animation;
|
||||
|
||||
public BattleAction(uint targetId, ushort worldMasterTextId, uint effectId, ushort amount = 0, byte param = 0, byte unknown = 0)
|
||||
{
|
||||
this.targetId = targetId;
|
||||
this.worldMasterTextId = worldMasterTextId;
|
||||
this.effectId = effectId;
|
||||
this.amount = amount;
|
||||
this.param = param;
|
||||
this.unknown = unknown;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue