[Opensim-users] llOpenRemoteDataChannel

Clive Gould cliveg at gmail.com
Fri Oct 30 10:49:36 UTC 2009


Hi

Can anyone suggest why the followng script works fine in SL, (SL Chat:
Scanner - full perm: Channel 3d7c17b7-5761-bdbe-81f9-cf2e24521d10
established) but produces no output whatsoever in OpenSim?

I am running OpenSim 0.6.7 post-fixes in standalone mode, have
uncommented the remoteDataPort = 20800 parameter in OpenSim.ini and
restarted the simluator.

Thanks

Clive


default
{
    state_entry()
    {
        llOpenRemoteDataChannel();
    }


    on_rez(integer param)
    {
        llResetScript();
    }

    remote_data(integer type, key channel, key message_id, string
sender, integer ival, string sval)
    {
         if (type == REMOTE_DATA_CHANNEL)
         {
              llSay(0, "Channel "+ (string) channel + " established");
          }
    }

}



More information about the Opensim-users mailing list