Jump to content

Rafael Tower

Resident
  • Posts

    12
  • Joined

  • Last visited

Posts posted by Rafael Tower

  1. Bonsoir à tous,

    suite à des problèmes graphiques, j'ai désinstallé et réinstallé le viewer firestorm (version la plus récente). Depuis l'installation, des bannières pubs apparaissent sur ma barre de recherche (ce qui comme vous pouvez vous en douter, très agacant).

    Lorsque je clique sur un Surl, j'ai également une fenêtre pop qui apparait me renvoyant sur un lien Internet.

     

    Quelqu'un a t il déjà eu ce souci et surtout comment y palier ?

    Merci par avance.

  2. and when I use this

    // www.lsleditor.org  by Alphons van der Heijden (SL: Alphons Jano)integer listener;integer channel = 7;string msg = "play";string soundName = "sound";key        ownerid;default{	state_entry()	{		listener = llListen(channel, "", ownerid, "");		//listener = llListen(channel, "", llGetOwner(), "");// can do it this way also	}	listen(integer channel, string name, key id, string message)	{		llPlaySound(soundName,1.0);	}}

    It still plays a sound but from people's objects too.

  3. // www.lsleditor.org  by Alphons van der Heijden (SL: Alphons Jano)
    integer listener;
    
    integer channel = 7;
    string msg = "play";
    string soundName = "sound";
    
    default
    {
        state_entry()
        {
            listener = llListen(channel,"","",msg); 
        }
    
        listen(integer channel, string name, key id, string message)
        {
            llPlaySound(soundName,1.0);
        }
    }

    This is from the archive. But how to restric this script to owner only. (The sound will play only when something that belongs to owner emits the message.

×
×
  • Create New...