AOC_PRC8/_module/nss/player_leave.nss

9 lines
150 B
Plaintext
Raw Permalink Normal View History

2025-04-03 11:24:16 -04:00
void main()
{
object oMod = GetModule();
int oNum;
int oPlayers = GetLocalInt(oMod, "num_players");
--oNum;
SetLocalInt(oMod, "num_players", oNum);
}