|
audio Zenith
Registered User
Join date: 18 May 2006
Posts: 16
|
07-06-2006 10:24
I would like to get this to operate on group land, currently it will not. Much appreciated.
key per; integer lis; default { on_rez(integer start_param) { llResetScript(); } touch_start(integer total_number) { per = llDetectedKey(0); lis = llListen(0,"",per,""); llSay(0, llKey2Name(per) + ", please enter the url through chat."); } listen(integer channel,string name, key id, string message) { llSetParcelMusicURL(message); llSay(0,"Parcel URL set to: " + message); llListenRemove(lis); } }
|
|
Jesse Malthus
OMG HAX!
Join date: 21 Apr 2006
Posts: 649
|
07-06-2006 11:17
Get a group officer to deed it to the group.
|
|
audio Zenith
Registered User
Join date: 18 May 2006
Posts: 16
|
Edit
07-06-2006 11:26
How can the code be edited to operate on group land? Is that possible?
|
|
Morgana Aubret
Damaged Beyond Repair
Join date: 12 Jul 2005
Posts: 139
|
07-06-2006 12:56
The code looks fine. As Jesse said, the object with the script in it must be deeded to group to work on group owned land.
|
|
Athena Sterling
Voided Earthing
Join date: 1 May 2006
Posts: 186
|
07-06-2006 13:05
script must belong to the same owner the land is.
if the land is owned by an avatar then the script must run as avatar..
if the land is deeded to the group, script must run as group, so deed the script [prim] to the group (as noted above) and it should work.
_____________________
Solo Junkies Skybox ( secondlife://Solo Junkies/192/192/ ) : The oldest and largest solo based gaming arcade for a reason, pure and simple honesty...
|
|
audio Zenith
Registered User
Join date: 18 May 2006
Posts: 16
|
Charmed
07-06-2006 14:09
Superb, many thanks, worked like a charm.
|