1. How to get a count of all deployables in the server?
    [DOUBLEPOST=1455858686,1455848876][/DOUBLEPOST]Solved.
     
  2. how did you solve it? ( code example )
     
  3. Code:
    var Deployed = UnityEngine.Object.FindObjectsOfType<Deployable>();
    Puts("Deployed Count: " + Deployed.Length);