Inviting to group?
|
|
Aniam Ingmann
llOwnage(float pwnage);
Join date: 22 Oct 2005
Posts: 206
|
11-14-2007 13:38
Is there any possible way to invite someone to a group using LSL? Because I have renters that need invites to build on my land but I have to invite them personally to give them an invite.
_____________________
From: someone Don't worry, Aniam is here! - Noob
|
|
Nika Talaj
now you see her ...
Join date: 2 Jan 2007
Posts: 5,449
|
11-14-2007 14:04
No, there is no LSL command to invite to groups, only avatars can do that. There are two possible solutions:
1. Use a script that, when touched, creates a list of people who would like to join your group. You can then send them invites at your leisure. I have such a script that: -- Allows a "group manager" (which can be either you or someone else) to manage group invites -- In addition to compiling a list of people touching the Group Invite object, sends the "group manager" an IM letting them know the person wants to join. -- Prunes the list if the script runs out of memory (so it never stops working) -- Is controlled by chat commands on a channel of your choosing.
Let me know if you want this. You can also buy these -- there are a few on SLX, I think.
2. Buy a system that includes a bot that does the invites automatically when it gets notification from an object like that above.
|
|
Starfire Desade
Can I play with YOUR mind
Join date: 10 Jul 2006
Posts: 404
|
11-14-2007 14:05
LSL can not invite someone to a group. You can have it send you a message when they need added though, and I have heard (not seen or used) that a bot can be created that can do that for you - but not with LSL.
|
|
Void Singer
Int vSelf = Sing(void);
Join date: 24 Sep 2005
Posts: 6,973
|
11-14-2007 22:19
I think if you search products for sale, there's a few people offering group invite bots... the caveat being that the bot has to be in the group too
_____________________
| | . "Cat-Like Typing Detected" | . This post may contain errors in logic, spelling, and | . grammar known to the SL populace to cause confusion | | - Please Use PHP tags when posting scripts/code, Thanks. | - Can't See PHP or URL Tags Correctly? Check Out This Link... | - 
|
|
Wisp Jinn
Registered User
Join date: 31 Jul 2007
Posts: 5
|
script to open group info?
11-29-2007 21:26
What is there is a group with open membership, and you simply want a script to open your group profile when they touch the object, so that they can join themselves quickly?
|
|
Void Singer
Int vSelf = Sing(void);
Join date: 24 Sep 2005
Posts: 6,973
|
11-30-2007 00:39
AFAIK the only window you can open for a user on touch is the map window, you can't even work around it by deeding the object to the group and going through inspect...
_____________________
| | . "Cat-Like Typing Detected" | . This post may contain errors in logic, spelling, and | . grammar known to the SL populace to cause confusion | | - Please Use PHP tags when posting scripts/code, Thanks. | - Can't See PHP or URL Tags Correctly? Check Out This Link... | - 
|
|
CCTV Giant
Registered User
Join date: 2 Nov 2006
Posts: 469
|
11-30-2007 09:31
Actually, there is a script in world that auto adds to a group. It's 5000L and you have to have an alt on 24/7 for it to operate. The alt is given group add privileges. Check out detail at Cassini Creations or do a search for the finished version Subscribomatic.
Cheers
|
|
Jesse Barnett
500,000 scoville units
Join date: 21 May 2006
Posts: 4,160
|
11-30-2007 09:37
From: CCTV Giant Actually, there is a script in world that auto adds to a group. That isn't a script. It is a bot.
_____________________
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
|
|
Bobbyb30 Zohari
SL Mentor Coach
Join date: 11 Nov 2006
Posts: 466
|
11-30-2007 09:40
From: Aniam Ingmann Is there any possible way to invite someone to a group using LSL? Because I have renters that need invites to build on my land but I have to invite them personally to give them an invite. Nope, you can't invite people to a group nor check what their group role is using LSL. For that, you'll need a bot, some of which are available on onrez.com
|
|
CCTV Giant
Registered User
Join date: 2 Nov 2006
Posts: 469
|
11-30-2007 10:07
From: Jesse Barnett That isn't a script. It is a bot. Its a script and a bot.
|
|
Marylou Lane
Registered User
Join date: 3 Mar 2007
Posts: 60
|
11-30-2007 10:25
I use a simple script in a prim that sends a msg in chat when someone touches it, so that he knows his request was sent, and it sends me too a private msg in chat to know who touched this prim, so when i see the msg, i send him or her the group tag. If I'm not online, requests are saved and I get all the group demands when I come back online. It works good, if you are interested in, please contact me inworld  bye Marylou
|
|
Zena Juran
Registered User
Join date: 21 Jul 2007
Posts: 473
|
11-30-2007 17:27
Just something I use for group invites. Sends an email to wherever I want and then once a day I can add new members. You can also set it for IMs. Works great.  string addy = "youraddress@abc.net";
default { state_entry() { llSetText("Touch to Join........", <1.0,1.0,1.0>, 1); }
on_rez(integer start_param) { llResetScript(); } touch_start(integer num) { llSay(0, llDetectedName(0) + ", your request to join.... has been accepted. You will receive an invite within 24 hours. Have a great SL day!");
//llInstantMessage(llGetOwner(), llDetectedName(0) + " would like to join.......Group.");
llEmail(addy,"........Group Invitation", llDetectedName(0) + " would like to join......."); } }
|
|
Ordinal Malaprop
really very ordinary
Join date: 9 Sep 2005
Posts: 4,607
|
11-30-2007 17:34
From: CCTV Giant Its a script and a bot. So it isn't a script that auto adds to a group.
_____________________
http://ordinalmalaprop.com/forum/ - visit Ordinal's Scripting Colloquium for scripting discussion with actual working BBCode!
http://ordinalmalaprop.com/engine/ - An Engine Fit For My Proceeding, my Aethernet Journal
http://www.flickr.com/groups/slgriefbuild/ - Second Life Griefbuild Digest, pictures of horrible ad griefing and land spam, and the naming of names
|
|
Summer Serra
Registered User
Join date: 26 Aug 2006
Posts: 7
|
11-30-2007 17:45
Now Zena, what needs changed in your script to be set to IM notification?
|
|
Nyoko Salome
kittytailmeowmeow
Join date: 18 Jul 2005
Posts: 1,378
|
11-30-2007 18:40
From: Ordinal Malaprop So it isn't a script that auto adds to a group. hey you got your bot in my chocolate!!  (ordinal, i love you, and i never got back to the other thread long ago - i know you were just postulating  ) good for you, and good to remind me  )  would be nice to have more 'group' hooks, looks like there are things cooking up for that, i think... i keep coming across things in lsl wiki and forums lately about the topic. so maybe not now, but soon 
_____________________
 Nyoko's Bodyoils @ Nyoko's Wears http://slurl.com/secondlife/Centaur/126/251/734/ http://home.comcast.net/~nyoko.salome2/nyokosWears/index.html "i don't spend nearly enough time on the holodeck. i should go there more often and relax." - deanna troi
|
|
Void Singer
Int vSelf = Sing(void);
Join date: 24 Sep 2005
Posts: 6,973
|
11-30-2007 22:52
From: CCTV Giant Its a script and a bot. correction, it's a script that tells the bot what to do, the bot does the inviting, since there is no way to invite via a script in LSL.... YET. I may have a way, but I'm still working out details... let's just call it an inspired hack....
_____________________
| | . "Cat-Like Typing Detected" | . This post may contain errors in logic, spelling, and | . grammar known to the SL populace to cause confusion | | - Please Use PHP tags when posting scripts/code, Thanks. | - Can't See PHP or URL Tags Correctly? Check Out This Link... | - 
|
|
Zena Juran
Registered User
Join date: 21 Jul 2007
Posts: 473
|
12-01-2007 00:36
From: Summer Serra Now Zena, what needs changed in your script to be set to IM notification? To change to an IM notification, simply uncomment the IM line and comment out the EMAIL line ( or leave both uncommented to have IM and EMAIL notification ). Here's just IM; string addy = "youraddress@abc.net";
default { state_entry() { llSetText("Touch to Join........", <1.0,1.0,1.0>, 1); }
on_rez(integer start_param) { llResetScript(); }
touch_start(integer num) { llSay(0, llDetectedName(0) + ", your request to join.... has been accepted. You will receive an invite within 24 hours. Have a great SL day!");
llInstantMessage(llGetOwner(), llDetectedName(0) + " would like to join.......Group.");
//llEmail(addy,"........Group Invitation", llDetectedName(0) + " would like to join......."); } }
|