yes its possible, i've made two methods for this case:
See Code at
http://forum.1cpublishing.eu/showpos...8&postcount=41
usage:
sendScreenMessageTo(1, "test to red", null);
sendScreenMessageTo(2, "test to blue", null);
sendChatMessageTo(1,"test to red", null);
sendChatMessageTo(2,"test to blue", null);
to give additional Information for null you can use "new object[]{ object})
example:
int redpoints = 20;
sendScreenMessageTo(1, "Red has {0} Points", new object[]{ redpoints });