https://깃헙.com/msprijatelj/token-tooltip-alt

GitHub - msprijatelj/token-tooltip-alt: A module that adds a tooltip next to the currently hovered token to show some useful information for players and DMs.A module that adds a tooltip next to the currently hovered token to show some useful information for players and DMs. - GitHub - msprijatelj/token-tooltip-alt: A module that adds a tooltip next t...github.com



토큰에 마우스오버하면 사전에 설정한 정보를 보여주는 모듈임



a15714ab041eb360be3335625683746f02534528d6a4ec89d63662f19d1ccd6edab8ca7f5d5f5cb33b4ea037377ae1



마스터는 구체적인 체력값이 툴팁으로 뜨지만 



a15714ab041eb360be3335625683746f02534528d6a4ec89d63662f19815cd6e6c01814b64fa5bc0c987df533b5d


a15714ab041eb360be3335625683746f02534528d6a4ec89d63662f09c14cd6ed65bd7985b4c624d8897cfee6a09


플레이어는 이렇게 일정 구간만을 볼 수 있도록 설정할 수 있음


토큰 이동속도나 뭐 기타 등등도 나오게 할 수 있긴 한데 그냥 체력만 보는 게 제일 깔끔하더라




내가 쓰는 설정값은 이거


{
hp=<attributes.hp.value>;
hpt=<attributes.hp.temp>;
hpm=<attributes.hp.max>;
compareText(typeOf(hpt),"null") == 0 ? concat(string(hp)," /",string(hpm)) : concat(string(hp),"+",string(hpt)," /",string(hpm))
}

마스터용

{
hp=<attributes.hp.value>;
hpm=<attributes.hp.max>;
hp <= (hpm*2)/10 ? "치명상" :
hp <= (hpm*4)/10 ? "중상" :
hp <= (hpm*6)/10 ? "부상" :
hp <= (hpm*8)/10 ? "경상" :
"온전"
}

이건 플레이어용




아마 v10부터 v13까지 바뀐 게 없어서 구버전에서도 사용할 수 있을 것