• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Maximum number of players invited to house.

eduardoo.vieira

New Member
Joined
Jun 10, 2011
Messages
21
Reaction score
1
Hello, I'm looking some way to limit the number of invited players in house. I would like to set it to 20, instead of unlimited.

Does anyone got any idea?
 
house.cpp
[cpp]while(getline(listStream, line))[/cpp]
to
[cpp]for(uint8_t i = 0; i != 20 && getline(listStream, line); ++i)[/cpp]
 
Back
Top