ID:266546
 
I need a code to allow you to enter a channel and when entered you can only talk to the people in the channel.
Here's a quick example just to show how easy it is.

var/channel = 1

mob/verb/ChangeChannel(num as num)
usr.channel = num

mob/verb/Say(msg as text)
for(var/mob/M in world)
if(M.channel == usr.channel)
M << "[usr] says: [msg]"
In response to Foomer
thnx