I have been starting on this mini game ans iam Suck..
Problem :
mob/proc
Check()
for(var/mob/M in world)
if(M.point <= 0)
world.Repop()
M.point = 14
M.rounds += 1
Checkwins()
for(var/mob/M in world)
if(M.rounds == 2)
M.Boom()
M.joined = 0
world<<"<font size = -3>[M]<b><font color = Blue> Is The Champ!"
M.wins += 1
M.rounds = 1
M.point = 14
M.red = 0
M.green = 0
M.color = ""
M.invisibility = 100
M.loc=locate(1,16,1)
world<<"<center><font size = 3><b><font color = green> [M] has won (You need to Re-join) !!"
This is My Win Proc .. SCARY huh and as u can probly see its not built for 2 player which is the the point of my game. I thought That
for(var/mob/M)