Jump to content

Prestige skript


pnguin

Recommended Posts

Hi there! Im looking if someone could make me a Prestige skript like if you reach level 50 you are able to prestige

Level variable {level::%player's uuid%}

Prestige variable should be {prestiges::%player's uuid%}

I used to play Minehut I guess?
Yeah, I still watch the forums for some reason. (15/5/2023)
Link to comment
Share on other sites

  1. command /prestige:
  2.    trigger:
  3.       {level::%player‘s uuid%} >= 100: 
  4.           broadcast "%player% has prestiged!"
  5.           set {level::%player‘s uuid%} to 0
  6.           add 1 to {prestige::%player‘s uuid%}
  7.           stop
  8.       {level::%player‘s uuid%} < 100:
  9.           message "&7You need 100 levels to prestige!" to player
#maybe this helps 😄
 
Link to comment
Share on other sites

4 hours ago, Jockerlight said:
  1. command /prestige:
  2.    trigger:
  3.       {level::%player‘s uuid%} >= 100: 
  4.           broadcast "%player% has prestiged!"
  5.           set {level::%player‘s uuid%} to 0
  6.           add 1 to {prestige::%player‘s uuid%}
  7.           stop
  8.       {level::%player‘s uuid%} < 100:
  9.           message "&7You need 100 levels to prestige!" to player
#maybe this helps 😄
 

It works but it doesnt send a message if you dont have enough prestiges

I used to play Minehut I guess?
Yeah, I still watch the forums for some reason. (15/5/2023)
Link to comment
Share on other sites

  1. command /prestige:
  2.    trigger:
  3.      if {level::%player‘s uuid%} >= 100:
  4.        broadcast "%player% has prestiged!"
  5.        set {level::%player‘s uuid%} to 0
  6.        add 1 to {prestige::%player‘s uuid%}
  7.        stop
  8.       {level::%player‘s uuid%} < 100:
  9.        message "&7You need 100 levels to prestige!" to player
  10. #Give this a go 🙂

Twitch Affiliate, YouTuber and Minehut Content Creator

(100,000+ Combined Views, 1,100+ Combined Followers & Subs, 20,000+ Combined Unique Players)

IGN:
[YOUTUBE] Centrect

 Please don't DM me for support, go here or join Minehut's Discord if you need assistance.

 

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...