Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

chat relay for forum

Sekker Thirroul
Registered User
Join date: 27 Aug 2006
Posts: 28
12-07-2007 09:40
Hi, probably not as hard an issue as it seems to me but I have a problem making something that basically lets the owner talk though an object to a group of people, i.e. addressing people though a big screen tv & camera sort of setup.

Problem I'm having is actually on the feedback side, since its a to address a forum I figured I'd use a senser to pick out the names of the people present np there, but how do I pickout who is saying what in the listen side I don't think someting like>>

if(name1 == TRUE)
{
llOwnerSay(name1 +" "+ message);
}

Would work and I don't think llDetectName(0) would work in a listen event. whats the way around this.
Pale Spectre
Registered User
Join date: 2 Sep 2005
Posts: 586
12-07-2007 09:58
listen(integer channel, string name, key id, string message)

...the 'string name' carries the name of the speaker.

...the 'key id' carries the id of the speaker.

Job done?
Sekker Thirroul
Registered User
Join date: 27 Aug 2006
Posts: 28
12-07-2007 10:12
great thanks