mob/var/team
mob/verb/radio(t as team, s as text)
t << "[s]"
ID:267557
Jun 24 2003, 9:40 am
|
|
Well, I'm just thinking, is it possible to create some sort of a team var, and then have a radio command that only goes out to the team? In theory, would this work?
|
In response to Jon88
|
|
Well, wouldn't this work, also?
mob/var/team |
In response to Dragon of Ice
|
|
It needs to send the message to a list of players.
|
In response to Jon88
|
|
Ok, so....
var/global/list/redteam = list() |
In response to Dragon of Ice
|
|
var/global/list/redteam = list() will work, although there's a better way to do it. |
In response to Jon88
|
|
Thanks, I'm not using it for a game, just thinking about some things that might be helpful in the future!
|
mob/var/list/team = list("Jon88", "Dragon of Ice", "TheOtherKey")
mob/verb/radio(s as text)
team << "[s]"