Do you think I could just leave this part blank and it'd be okay? We're just going to replace the whole thing with a header image anyway, right?
You are not logged in.
Pages: 1
Topic closed
It sees when they are red. But when they are green. It doesn't do anything...
case "team":
{
Player p = PlayerData[m.GetInt(0)];
if(m.GetInt(1) == 1)
{
p.isPlaying = false;
isPlaying.Remove(p.ToString());
conn.Send("say", "Players have turned RED.");
}
if(m.GetInt(1) == 3)
{
p.isPlaying = true;
isPlaying.Add(p.ToString());
conn.Send("say", "Players have turned GREEN.");
}
}
break;
Offline
Have you debugged the team message and see if green really executes at all?
Offline
Pages: 1
Topic closed
[ Started around 1732460674.7374 - Generated in 0.029 seconds, 10 queries executed - Memory usage: 1.35 MiB (Peak: 1.43 MiB) ]