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토큰에 마우스오버하면 사전에 설정한 정보를 보여주는 모듈임
마스터는 구체적인 체력값이 툴팁으로 뜨지만
플레이어는 이렇게 일정 구간만을 볼 수 있도록 설정할 수 있음
토큰 이동속도나 뭐 기타 등등도 나오게 할 수 있긴 한데 그냥 체력만 보는 게 제일 깔끔하더라
내가 쓰는 설정값은 이거
{
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까지 바뀐 게 없어서 구버전에서도 사용할 수 있을 것
댓글 0