ANEW
대표칭호 없음
ANEW_ 4be66e0573fe46f79942e54d78bd1e0c
이해도 | 1.15 |
---|
on rightclick on entity:
if entity's name is "경험차":
set {xp} to level progress of player
wait 1 tick
open chest with 1 rows named "경험치 교환" to player
set slot 5 of current inventory of player to book named "&6&l현재 경험치 량 :%{xp}%"
플레이어의 level 이 아닌 진짜 경험치 값을 표시하고 싶은데, 어떤 구문이 들어가야 하는지 감을 못잡겠습니다. ㅠㅠ
experience, xp point, level point 등등 해도 인식을 못하네요
도움 부탁드립니다...ㅠㅠ
스크립터브혼
2020.05.14set {_level.exp} to round calcExperience( round level of {_p} )
set {_exp} to round ( ( ( calcExperience( round level of {_p} + 1 ) ) - {_level.exp} ) * level progress of {_p} )
set {_total.exp} to round ( {_level.exp} + {_exp} )
return {_total.exp}
이 함수를 사용해 보세요.
trigger:
set {_exp} to ExprTotalExperience( player )
send "%{_exp}%" to console
이렇게 사용하시면 됩니다.
스크립터브혼
2020.05.15https://www.koreaminecraft.net/scriptqna/1696704
함수설명입니다.
ANEW
2020.05.15이런식으로 값을 내는게 가능하군요. 정말 많은 도움 되었습니다. 스크립트 세계가 많이 깊고 흥미롭네요! 공부 정진하겠습니다!