// V2 //
 
string URL_Loader_Message = "\nCopy FREE scripts from an SL wiki page"; // Message to show on dialog.
 
string URL_To_Visit = "https://wiki.secondlife.com/wiki/User:Fred_Gandt"; // URL to visit.
 
vector Omega_Axis = <0.0,0.0,1.0>; // If you don't want spinning set this to <0.0,0.0,0.0>;
 
float Omega_Speed = 0.5; // Speed of spin.
 
float Omega_Gain = 1.0; // Strength of spin.
 
string Floating_Text = "FREE SCRIPTS!!\n \nTouch to visit web site.\n \n(Official SL wiki)\n \n "; // Floating text.
 
vector Float_Text_Color = <1.0,1.0,1.0>; // Color of floating text.
 
float Float_Text_Alpha = 1.0; // Transparency of floating text (1.0 is solid).
 
// FROM THIS POINT IT IS SCARY!! ARRGGGHHHH...!!! //
 
default
{
    state_entry()
    {
        llTargetOmega(Omega_Axis, Omega_Speed, Omega_Gain);
        llSetText(Floating_Text, Float_Text_Color, Float_Text_Alpha);
    }
    touch_start(integer nd)
    {
        while(nd)
        llLoadURL(llDetectedKey(--nd), URL_Loader_Message, URL_To_Visit);
    }
}