Doodle 10 Posted February 13, 2014 Wonder if anyone can help Currently using This && player == s1; in editor placed Radio Triggers to limit radio commands to certain players - all works fine Anyone any idea how I would sepcify TWO or more players by name I think its something like This && player == s1 or s2;. thanks in advance Share this post Link to post Share on other sites
Zenophon 108 Posted February 13, 2014 Something like: this && (player in [s1, s2]) 'in' returns true if the player is given in the array. Share this post Link to post Share on other sites