Posted June 19, 20223 yr Hello, I'm new the the modding community. I would like my mod(1.18.2) to only execute a block of code if the users total distance walked and total distance fallen has surpassed an amount. I am unsure of how to access the users stats and their values. How would I get those values? Edited June 19, 20223 yr by pogger165
June 19, 20223 yr Welcome to the forum! In ServerPlayerEntity there should be a method to return the stats. In 1.16.5 it's called getStats() and returns the ServerStatisticsManager, but it may be called something different in 1.18.2 Edited June 19, 20223 yr by urbanxx001
June 19, 20223 yr the 1.18.2 names are: ServerPlayer#getStats ServerStatsCounter you can then use ServerStatsCounter#getValue with to get the value of the Stat: Stats.CUSTOM.get(<the stat you want>)
February 2, 20241 yr the 1.18.2 names are: ServerPlayer#getStats ServerStatsCounter you can then use ServerStatsCounter#getValue with to get the value of the Stat: Stats.CUSTOM.get(<the stat you want>) How can i put in an int var the value of a stats of a player?
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.