Ultimate solution is to create some sort of a webservice to make fleet mode available from different machines.
Fleet commander should send a message to other members that fleet was recreated. I use simple class to describe fleet now
Code: |
public class Fleet
{
public Int32 CreationTime; //property of a particular fleet
public bool FleetMemberJoined; //necessary flag if fleet commander is also a miner and need bonuses
public Int32 JoinTime; //member can compare his time with fleet creation time to understand that newer fleet exists
}
|
Any suggestions how to do this?