Jump to content

How do you put curly brackets in quotes


Personwhoskripts

Recommended Posts

I assume you meant this:

"How do I use Skript variables in quotation marks?"

 

This is how you do it:

command /cooltest:
    trigger:
        set {cool} to "%player% is really cool"
        send "%{cool}%" to player

 

Basically, if you want to use a variable in quotation marks, you surround the curly braces {} with %%

Like soo: "%{yayMyVariable}%"

Hello there! If you're reading this, hope you're having a wonderful day!

 

Feel free to contact me via Discord (CoolProgrammer#1920) for any help.

My DMs are always open for help.

You can also message via. forum messages for help.

1604908226_ScreenShot2021-01-28at10_32_28AM.png.2646ad6be239a9d0756a99e8e15602ab.png

Also, don't hesitate to leave a like on my post if I helped you in any way.

Link to comment
Share on other sites

20 hours ago, CoolProgrammer said:

I assume you meant this:

"How do I use Skript variables in quotation marks?"

 

This is how you do it:


command /cooltest:
    trigger:
        set {cool} to "%player% is really cool"
        send "%{cool}%" to player

 

Basically, if you want to use a variable in quotation marks, you surround the curly braces {} with %%

Like soo: "%{yayMyVariable}%"

Expanding on this:

If you don't actually want a variable to be represented, throw out the percentage signs. Skript only looks for a variable in a string if it is wrapped in percentage signs.

set {epic} to "honk"
send "%{epic}%"
# Resulting string: "honk"
set {epic} to "honk"
send "{epic}"
# Resulting string: "{epic}"

 

VIP since January 7th, 2020

Support since September 19th, 2020

Helper since November 3rd, 2020

Moderator since March 8th, 2021

unknown.png

5.png.e14b1bf83edf0ac2edc1bfb822177184.png

image.png.fe30b7b2c0be5a541ba4ed2187b23030.png

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...