[FSOD]
How to block unnamed players from joining server?
in the hello packet handler or load packet handler or w/e just add a few lines of coding looking like
if (!player.namechosen)
{
player.SendFailure("Choose a name first");
return;
}
capitalization might be wrong bc im not writing it in VS to test but it will look like that^.^