Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

How to create/locate store support tools?

Mya Janus
Registered User
Join date: 6 Apr 2007
Posts: 3
07-18-2008 09:56
Hi

I need two things for a store and I'm not sure if I have to buy them or if I can make them myself.

I need one of those items that gives a customer an information card when an object is clicked. I also need a way to allow people to join a group when they click on an object.

Can anyone help?

Thanks
Ghosty Kips
Elora's Llama
Join date: 2 May 2008
Posts: 2,386
07-18-2008 10:01
From: Mya Janus
Hi

I need two things for a store and I'm not sure if I have to buy them or if I can make them myself.

I need one of those items that gives a customer an information card when an object is clicked. I also need a way to allow people to join a group when they click on an object.

Can anyone help?

Thanks


If I was inworld I'd give you the scripts. Search for "free script library", you should be able to find a place where you can get sripts for objects to do those very things for $L0.
_____________________
--
Why aren't you doing something more useful, like playing WoW?
Amaranthim Talon
Voyager, Seeker, Curious
Join date: 14 Nov 2006
Posts: 12,032
07-18-2008 10:07
Ghosty, do you know off hand the name of the scripts? I would love the join the group thing- thanks.
_____________________
"Yield to temptation. It may not pass your way again. "
Robert A. Heinlein




http://talonfaire.blogspot.com/

Visit Talon Faire Main:
http://slurl.com/secondlife/Misto%20Presto/216/21/155- Main Store

XStreets: http://tinyurl.com/6r7ayn
CCTV Giant
Registered User
Join date: 2 Nov 2006
Posts: 469
07-18-2008 10:15
Am -- hit me up in world later - I got a bunch of that stuff
Salvador Nakamura
http://www.sl-index.com
Join date: 16 Jan 2007
Posts: 557
07-18-2008 10:35
hi, im not inworld either, but pretty sure if you type "group profile script" in All search, you will find those scripts

.
_____________________
SL-Index , providing an easy and affordable start in secondlife
Rentals, Easy Setup Scripts, Freebies & Value Boxes

www: http://sl-index.com

HQ: http://slurl.com/secondlife/Immintel/212/14/100
Amaranthim Talon
Voyager, Seeker, Curious
Join date: 14 Nov 2006
Posts: 12,032
07-18-2008 10:36
From: CCTV Giant
Am -- hit me up in world later - I got a bunch of that stuff

Thanks CC! I sure will :)
_____________________
"Yield to temptation. It may not pass your way again. "
Robert A. Heinlein




http://talonfaire.blogspot.com/

Visit Talon Faire Main:
http://slurl.com/secondlife/Misto%20Presto/216/21/155- Main Store

XStreets: http://tinyurl.com/6r7ayn
Mya Janus
Registered User
Join date: 6 Apr 2007
Posts: 3
Thanks!
07-18-2008 11:29
Thanks!! I found them using search. The Script Shop carries the group invite script for 1L and ScriptStore #1 carries teh note card giver for 0L.

Thanks again.
Tali Rosca
Plywood Whisperer
Join date: 6 Feb 2007
Posts: 767
07-18-2008 12:03
At it's simplest, the first is
default
{
touch_start(integer i)
{
llGiveInventory(llDetectedKey(0), llGetInventoryName(INVENTORY_NOTECARD, 0));
}
}
That hands out the first notecard in inventory to somebody who touches the object. It'll bitch and fail if there is no notecard. Lots of ways to funk it up, if you really want, by detecting duplicates and things like that, but there's usually no need for any more than this.

The second... cannot be done, unless you license a system with an external server keeping bots online. There's no way to control group membership from normal, inworld LSL scripts. Best you can do without that is having a script IM/email you, and then invite the person by hand.
Again, to KISS:
default
{
touch_start(integer i)
{
llInstantMessage(llGetOwner(), llDetectedName(0) + " would like to join your group.";);
llEmail("MyName@MyServer.com", "Group request by " + llDetectedName(0), llDetectedName(0) + " clicked on the inviter object to join the group.";);
}
}
Skell Dagger
Smitten
Join date: 26 Jun 2007
Posts: 1,885
07-18-2008 12:11
I can't help with the whereabouts of scripts, but I've noticed a new trend among groups lately, and that's when you click a group invite panel in a store (for example), it gives a link in chat that you can then click in chat history, which then brings up the group's main info page. I'm guessing that's scripted with a simple llSay, but how does one get the info page link?
_____________________
It always ends in chickens...

Store blog - http://primflints.wordpress.com/
Inworld - http://slurl.com/secondlife/Jindalrae/21/25/442
XStreet - http://tinyurl.com/primflints
Photos - http://www.flickr.com/photos/skelldagger/
Tali Rosca
Plywood Whisperer
Join date: 6 Feb 2007
Posts: 767
07-18-2008 12:17
That would be
default
{
touch_start(integer i)
{
llInstantMessage(llDetectedKey(0), "Click here to see the group: secondlife:///app/group/65f9ba7a-fb47-c807-f495-ad446cc0bc45/about";);
}
}

One way to get the group ID is to view it in the new search. At the bottom of the page there'll be a link like
"Link to this page: http://world.secondlife.com/group/65f9ba7a-fb47-c807-f495-ad446cc0bc45"

I am not sure if you need the RC for the link in IM to be active, though, but it's just about to go official anyway.
Skell Dagger
Smitten
Join date: 26 Jun 2007
Posts: 1,885
07-18-2008 12:20
Ah, thanks, Tali! I'm using Nicholaz's Eye Candy EC-f, so the RC isn't necessary for the link to show up. I've seen it several times in the past couple of weeks.

Again, thanks!

/me goes off to copy that into a new script.
_____________________
It always ends in chickens...

Store blog - http://primflints.wordpress.com/
Inworld - http://slurl.com/secondlife/Jindalrae/21/25/442
XStreet - http://tinyurl.com/primflints
Photos - http://www.flickr.com/photos/skelldagger/