Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

PLEASE HELP ... Menu list being hardheaded

TanyaR Auer
Registered User
Join date: 25 Jun 2007
Posts: 8
08-07-2009 16:18
I am trying to take out a few options in the OpenCollar - auth - 3.128 script from the OpenCollar system.

Primary Owner Button, Group Access Button, All access ..

I am trying to make a free roaming sub collar .. Yes i do know you dont have to add main owner to collar and can leave all the group and all access options set to default ... but they arent very (forgive the term) newb friendly... and this collar would allow new subs and pets to pick and choose when they want to "play". Any help with this would be greatly appreciated... im not trying to take it out of the script just merely take the options out of the menu...

thank you bunches
Jesse Barnett
500,000 scoville units
Join date: 21 May 2006
Posts: 4,160
08-07-2009 20:51
This is an easy one. Find the list that the buttons are generated from and just delete the ones you do not want to show. The rest of the script does not matter, if there is no button to push when the menu pops up, then the script can not process that missing command anyway.

Look specifically for the llDialog calls. Each will show the list that the menu uses and follow back to those lists to look for the names you wish to remove.
_____________________
I (who is a she not a he) reserve the right to exercise selective comprehension of the OP's question at anytime.
From: someone
I am still around, just no longer here. See you across the aisle. Hope LL burns in hell for archiving this forum
Jesse Barnett
500,000 scoville units
Join date: 21 May 2006
Posts: 4,160
08-07-2009 20:52
This is an easy one. Find the list that the buttons are generated from and just delete the ones you do not want to show. The rest of the script does not matter, if that button is not there to push when the menu pops up, then the script can not process that missing command anyway.

Look specifically for the llDialog calls. Each will show the list that the menu uses and follow back to those lists to look for the names you wish to remove.
_____________________
I (who is a she not a he) reserve the right to exercise selective comprehension of the OP's question at anytime.
From: someone
I am still around, just no longer here. See you across the aisle. Hope LL burns in hell for archiving this forum
TanyaR Auer
Registered User
Join date: 25 Jun 2007
Posts: 8
Thank you Jesse
08-08-2009 06:23
Thanks so much... life saver ...
Nandana Singh
Registered User
Join date: 24 Aug 2008
Posts: 19
10-03-2009 01:39
Note that in the current beta (3.331 and later) OpenCollar has been changed to send link messages to a dialog helper script instead of each script calling its own llDialog functions. Doing dialogs right is kind of ugly, with worries about closing listeners, setting timeouts, and handling long lists that have more than 12 entries. Now all of that is handled by the dialog script, so the rest of the plugins don't have to duplicate that code and dirty themselves with all that housekeeping.

Long story short: if you want to make these same changes in a more recent collar, look for the Dialog() wrapper script instead of llDialog as mentioned above.