mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-09 05:54:50 +02:00
Fixed music packet, no longer hard coded. Added setTarget, lockOn, and startScript packets. Console window has quieted down woo!
This commit is contained in:
parent
a4d050b3be
commit
29f030eddb
8 changed files with 161 additions and 11 deletions
|
@ -17,8 +17,11 @@ namespace FFXIVClassic_Map_Server.dataobjects
|
|||
|
||||
public uint characterID = 0;
|
||||
public uint actorID = 0;
|
||||
|
||||
uint currentZoneID = 0;
|
||||
|
||||
private uint currentTarget = 0;
|
||||
private uint currentLockedTarget = 0;
|
||||
|
||||
private uint currentZoneID = 0;
|
||||
|
||||
List<Actor> actorInstanceList = new List<Actor>();
|
||||
|
||||
|
@ -109,5 +112,14 @@ namespace FFXIVClassic_Map_Server.dataobjects
|
|||
|
||||
}
|
||||
|
||||
public void setTarget(uint actorID)
|
||||
{
|
||||
currentTarget = actorID;
|
||||
}
|
||||
|
||||
public void setLockedTarget(uint actorID)
|
||||
{
|
||||
currentLockedTarget = actorID;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue