tooltip link bug?

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the community!

    Now, what are you waiting for? Join the community now!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.

퀵플레이

New Member
Jul 21, 2022
8
0
1
Code:
broadcast "%nl%[✦] <tooltip:click><link:https://mylink.com>&6click to join our discord server!%nl%"
...
but it dosen't work!
i can't click tooltip button :<

if i not use "%nl%", it's work!

please help me <3

I use skript 2.6.4 and lasted skript addons
I use 1.19.3 minecraft server
 
Last edited:
You probably forgot a trigger
The code needs to be told when to run
Example:
If you want it to run every 10 minutes:
Code:
every 10 minutes:
    broadcast "%nl%[✦] <tooltip:click><link:https://mylink.com>&6click to join our discord server!%nl%"
If you want it to run every time a player joins:
Code:
on join:
    broadcast "%nl%[✦] <tooltip:click><link:https://mylink.com>&6click to join our discord server!%nl%"
If you want an admin to run it:
Code:
command /announcediscord:
    permission: op
    trigger:
        broadcast "%nl%[✦] <tooltip:click><link:https://mylink.com>&6click to join our discord server!%nl%"

etc.
Understand?
 
Status
Not open for further replies.