Once again how to know if game is a multiplayer game?

Basically i want to do that if it’s singleplayer do some tutorialistic stuff, how was it to know if the game was standalone or multiplayer?

WorldInfo.NetMode

bTeamGame is in defaultproperties in the gametypes



if (WorldInfo.NetMode != NM_Standalone) {
    //It's mp
}


gamepainters: bTeamGame can be true in single player and false in multiplayer :rolleyes: