9 lines
150 B
Plaintext
9 lines
150 B
Plaintext
void main()
|
|
{
|
|
object oMod = GetModule();
|
|
int oNum;
|
|
int oPlayers = GetLocalInt(oMod, "num_players");
|
|
--oNum;
|
|
SetLocalInt(oMod, "num_players", oNum);
|
|
}
|