mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04:00
implemented sendpacket and speed commands
- fixed data race on logging in - todo: implement reloadzones, reloaditems, property, property2
This commit is contained in:
@@ -35,25 +35,6 @@ namespace FFXIVClassic_Map_Server
|
||||
mConnectedPlayerList = playerList;
|
||||
}
|
||||
|
||||
public void SendPacket(ConnectedPlayer client, string path)
|
||||
{
|
||||
BasePacket packet = new BasePacket(path);
|
||||
|
||||
if (client != null)
|
||||
{
|
||||
packet.ReplaceActorID(client.actorID);
|
||||
client.QueuePacket(packet);
|
||||
}
|
||||
else
|
||||
{
|
||||
foreach (KeyValuePair<uint, ConnectedPlayer> entry in mConnectedPlayerList)
|
||||
{
|
||||
packet.ReplaceActorID(entry.Value.actorID);
|
||||
entry.Value.QueuePacket(packet);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public void ChangeProperty(uint id, uint value, string target)
|
||||
{
|
||||
SetActorPropetyPacket ChangeProperty = new SetActorPropetyPacket(target);
|
||||
@@ -87,7 +68,7 @@ namespace FFXIVClassic_Map_Server
|
||||
|
||||
internal bool DoCommand(string input, ConnectedPlayer client)
|
||||
{
|
||||
if (!input.Any())
|
||||
if (!input.Any() || input.Equals(""))
|
||||
return false;
|
||||
|
||||
input.Trim();
|
||||
@@ -102,7 +83,7 @@ namespace FFXIVClassic_Map_Server
|
||||
|
||||
split = split.Select(temp => temp.ToLower()).ToArray(); // Ignore case on commands
|
||||
|
||||
var cmd = split?.ElementAt(0);
|
||||
var cmd = split[0];
|
||||
|
||||
if (cmd.Any())
|
||||
{
|
||||
@@ -138,6 +119,8 @@ namespace FFXIVClassic_Map_Server
|
||||
if (split.Length >= 1)
|
||||
{
|
||||
|
||||
// TODO: reloadzones
|
||||
|
||||
#region !reloaditems
|
||||
if (split[0].Equals("reloaditems"))
|
||||
{
|
||||
@@ -151,24 +134,6 @@ namespace FFXIVClassic_Map_Server
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region !sendpacket
|
||||
else if (split[0].Equals("sendpacket"))
|
||||
{
|
||||
if (split.Length < 2)
|
||||
return false;
|
||||
|
||||
try
|
||||
{
|
||||
SendPacket(client, "./packets/" + split[1]);
|
||||
return true;
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
Program.Log.Error("Could not load packet: " + e);
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region !property
|
||||
else if (split[0].Equals("property"))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user