Jump to content

llOwnerSay & Clickable but Named URL's


Xeph Brunsen
 Share

You are about to reply to a thread that has been inactive for 1937 days.

Please take a moment to consider if this thread is worth bumping.

Recommended Posts

Forgive me for asking ... Iv'e been up and down the functions page and can't seem to find the function i'm seeking. It doesn't appear to be any of the URL functions or buried in HTTP functions.

Just as in a clickable URL on a website, I'm trying to output some links in llOwnerSay but mask them with other text. IE: "Click Here" ect

Is there a function for this? For the life of me I just can't find it lol

Link to comment
Share on other sites

What you need is not a function, but a specific way to write it into chat.

You can create clickable text by enclosing the link in square brackets, and including the name of the link after the url, like:

[https://www.google.com Click me!] becomes Click me!

Or in code..

default
{
    state_entry()
    {
        string url = "https://www.google.com/";
        llOwnerSay("You can find anything on [" + url + " Google!]");
    }
}

 

  • Like 6
Link to comment
Share on other sites

8 hours ago, Wulfie Reanimator said:

What you need is not a function, but a specific way to write it into chat.

You can create clickable text by enclosing the link in square brackets, and including the name of the link after the url, like:

[https://www.google.com Click me!] becomes Click me!

Or in code..


default
{
    state_entry()
    {
        string url = "https://www.google.com/";
        llOwnerSay("You can find anything on [" + url + " Google!]");
    }
}

 

Ty so much. To be honest I'm not sure If I would have ever found this lol

Link to comment
Share on other sites

You are about to reply to a thread that has been inactive for 1937 days.

Please take a moment to consider if this thread is worth bumping.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
 Share

×
×
  • Create New...