its set up so only owner can access the menu.. and I would like it to be open access to anyone.. here are the lines Im seeing that call on owner and im thinking it should be a pretty simple fix.. but without knowing the syntax enough of lsl.. yes.. im noob at scripting but trying to learn, its causing me some problems.. any responce will be completely appreciated!
heres the code in questiong
key owner;
later it refers to owner again here..
init() {
llListenRemove(listen_handle);
owner = llGetOwner();
channel = llFloor(llFrand(2000000)); //random channel so multiple scripts don't interfere with each other
listen_handle = llListen(channel, "", owner, ""
;}
and again ..
llDialog(owner, "\n\nSelect a color", llList2ListStrided(sub_menu, 0, -1, 2), channel);
return;
and to complicate matters more.. continues to call upon owner
touch_start(integer s) {
if (llDetectedKey(0) == owner) {
llDialog(owner, "\n\nSelect a color group", main_menu, channel);
now.. Im wondering if theres a certain word that lsl will understand to change to any or all or if Im just gonna have to buck down and do my best to write the script over on my own... would seem a waste since I already have the script I want.. just need permissions changed..
please please any help would be again.. highly appreciated!!