Solved Search Engine with Skript

  • 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!

cdoxy

Member
Aug 9, 2024
43
2
8
I know this might sound a bit too outlandish, but is it possible to make a search engine or link a skript to like google or something so i can search things in minecraft?

thanks so much!
 
my idea was something like /search <text> and it would generate a link and paste the results into chat, not just generate a link.
but thanks for the help!
Code:
command /search <text>:
  trigger:
    set {_q} to replace all " " in arg 1 with "+"
    message "https://google.com/search?q=%{_q}%"
 
Code:
command /search <text>:
  trigger:
    set {_q} to replace all " " in arg 1 with "+"
    message "https://google.com/search?q=%{_q}%"
doesn't work
 

Attachments

  • image_2025-03-14_151346274.png
    image_2025-03-14_151346274.png
    12.1 KB · Views: 104