Lucubratorius Loyal
❔ Does anyone want to show me how to make a few edits in C#?
}
private void CheckPlayerBeingDetached()
{
foreach (NetworkCommunicator networkPeer in GameNetwork.NetworkPeers)
{
if (networkPeer.IsSynchronized)
{
MissionPeer component = networkPeer.GetComponent<MissionPeer>();
if (this.PlayerDistanceToFormation(component) >= component.CaptainBeingDetachedThreshold)
this.MakePlayerFormationFollowPlayer(component.GetNetworkPeer());
}
}
}
30 replies
❔ Does anyone want to show me how to make a few edits in C#?
I have tried asking that community all week long, only a couple people have reached out, and they only gave me general advice. Im trying to fix bugs in the game. One bug is that some troop formations do not act properly. Another thing I would like to fix is the auto follow function. It makes your troops disobey your order and move onto your location if you move more than 50 feet away from them.
30 replies