Hello Iam ΉΛDΣS_PЯO[DΣV],
DroneFormation.cs Code :)
Thanks..
Netty Emulator: Shock[DEV]
Edited and Updated: ΉΛDΣS_PЯO[DΣV] :D
NOTE: This emulator (NeetyBase) created by Shock and edited by ΉΛDΣS_PЯO[DΣV].
Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NettyBase.Net.netty.commands
{
class DroneFormationCommand
{
public static byte[] CMD(List<int> availableFormations)
{
ByteArray enc = new ByteArray(4479);
enc.Integer(availableFormations.Count);
foreach(int f in availableFormations)
{
enc.Integer(f);
}
return enc.ToByteArray();
}
}
}