Jump to content

Rafael Tower

Resident
  • Posts

    12
  • Joined

  • Last visited

Everything 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. Thank you very much for your help Steph !!!
  3. And now works like a charm ! What is the difference between Playsound and triggersound ?
  4. 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.
  5. It doesn't play any sound now. I'm confused ...
  6. // 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.
  7. Yes I know a script can listen but it wasn't really my question. My question was, when the script hears something specific, can it reacts and do an action like click on something (another hud). Thank you very much Roling
  8. Hello everyone ! I was wondering if I it is possible to command an action when a hud attachment sends a message on local chat. For example: When it says the hud says "Hello" My script will "click" on it or emites a sound. I hope I was clear enough in my request O.O Thank you very much !!
×
×
  • Create New...