ID:145327
 
Code:
verb
Say(msg as text)
set category = "Communication"
Planet <<"[usr]: [msg]"


Problem description:my var is Planet = "Earth"
Now, when you change planets you make its own name
and i want other people who have the same planet name as me to hear me example: *Im on planet Vegeta* Hi everyone!
*No one hears me because their all on earth* that is the thing i want not like
*Im on planet vegeta* Hi everyone!
*Earth People* Sup?


The way you're storing planets is really not a good way to go about it. As it stands, you'll have to loop through every mob in the world and only output to the ones with the same planet as the speaker.

A far better way of representing rooms is to make them objects - areas, for example. You can then output to the object, and everything inside it will hear what you're saying.