Jump to content

Too many listens


Lord Derryth
 Share

You are about to reply to a thread that has been inactive for 3280 days.

Please take a moment to consider if this thread is worth bumping.

Recommended Posts

Open up the script in the hud.

Change the first line from

integer CHANNEL; // dialog channel

to

integer CHANNEL = -5042566; // dialog channel

then right under that line add this line

integer listenHandle;

now find this bit in the script.

 

setup_listen()
{
   llListenRemove(1);
   CHANNEL = -50000 -llRound(llFrand(1) * 100000);
   integer x = llListen(CHANNEL, "", "", ""); // listen for dialog answers
}

 

and change it to

 

setup_listen()
{
   llListenRemove(listenHandle);
   listenHandle = llListen(CHANNEL, "", llGetOwner(), "");
}

 

I think that will fix it. If you edit the script while you are wearing the hud you will have to detach it and then ware it again.

 

 

 

 

Link to comment
Share on other sites

You are about to reply to a thread that has been inactive for 3280 days.

Please take a moment to consider if this thread is worth bumping.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
 Share

×
×
  • Create New...