Money format help plz

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

    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.

chimchambi

Member
Dec 4, 2019
30
0
0
29
Hi there. So i am trying to make money format but i really dont know where or how to. I have search and looked for help but found nothing.


Does anyone know how to make money format like, if a player have 10k it will say 10 thousand. If player has 10mil it will say 10 Million and etc

I want it in a variable too

plz can anyone help plz
 
Maybe that

Code:
command /money:
    trigger
        if {money.%player's uuid%} >= 10000:
            send "10 thousand"
            stop
        if {money.%player's uuid%} >= 1000000:
            send "1 million"
            stop
        else:
            send "%{money.%player's    uuid%}%" to player
            stop
 
Status
Not open for further replies.