Cxnnors Posted July 29, 2021 Share Posted July 29, 2021 (edited) SO basically I want a basic rank up feature. If I have $250, I can rankup to B. Once I get the permissions for B, I want to rankup to mine C for $500. The problem is that the B skript interrupts the C skript and if I have $250, it takes it and ranks me up to B. Code: command /rankup: trigger: If player has permission "Default": If player's balance is greater than or equal to 250: execute console command "/lp user %player% permission set essentials.warp.mine2 true" send "&6Rankup &7» &6You ranked up to &eB" remove 250 from player's balance else: send "&6Rankup &7» &cYou don't have enough money!" if player has permission "essentials.warp.mine2": if player's balance is greater than or equal to 500: execute console command "/lp user %player% permission set essentials.warp.mine3 true" send "&6Rankup &7» &6You ranked up to &eC" remove 500 from player's balance stop else: send "&6Rankup &7» &cYou don't have enough money!" command /derankup: trigger: if player has permission "Default": execute console command "lp user %player% permission set essentials.warp.mine2 false" if player has permission "essentials.warp.mine2": execute console command "lp user %player% permission set essentials.warp.mine3 false" Edited July 29, 2021 by Cxnnors edit Certified Minehut OG since George Washington was alive. Beginner at Skripting. Already re-making Hypixel. Link to comment Share on other sites More sharing options...
axtaria Posted July 29, 2021 Share Posted July 29, 2021 make a variable where when it ranks up to "B", set the variable to "2", and for the "B" script add if that variable is equal to 2, rank up to "c". I hope you understand Link to comment Share on other sites More sharing options...
Cxnnors Posted July 29, 2021 Author Share Posted July 29, 2021 thanks for helping! Certified Minehut OG since George Washington was alive. Beginner at Skripting. Already re-making Hypixel. Link to comment Share on other sites More sharing options...
Cxnnors Posted July 29, 2021 Author Share Posted July 29, 2021 im having some trouble, could you send a example? Certified Minehut OG since George Washington was alive. Beginner at Skripting. Already re-making Hypixel. Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now