Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

Golden book script

Christian Dimanovic
Registered User
Join date: 2 Jul 2009
Posts: 5
11-30-2009 17:45
I builded a museum, I would like to put a golden book. Where visitor can write down some comments but I would like that other visitors can also read them. Does someone can help me ?
Winter Ventura
Eclectic Randomness
Join date: 18 Jul 2006
Posts: 2,579
12-01-2009 01:31
The easiest way would be to just go on the web, and get yourself a nice guestbook page. They're free usually. Then just make a simple script inworld that takes people to that webpage when they click the book.

CODE

string url = "http://www.smartgb.com/";
string text = "Click here to view our guest book!";

default
{
touch_start(integer total_number)
{
llSetColor(<0.5, 0.5, 0.5>, ALL_SIDES);
llLoadURL(llDetectedKey(0), text, url);
llSetColor(<1, 1, 1>, ALL_SIDES);
}
}
_____________________

● Inworld Store: http://slurl.eclectic-randomness.com
● Website: http://www.eclectic-randomness.com
● Twitter: @WinterVentura
Christian Dimanovic
Registered User
Join date: 2 Jul 2009
Posts: 5
Good idea
12-02-2009 20:28
Seem to be the simplest way, Thank you