천칭
대표칭호 없음
이해도 | 초보자 |
---|---|
게임버전 (JE) | 관련없음 |
게임버전 (BE) | 관련없음 |
스크립트 버전 | 2.6.4 |
제가 바라보고 있는 플레이어에게 쉬프트 우클릭을 했을 때 플레이어의 정보가 뜨려면 어떻게 해야 하나요?
밑에 스크립트를 작성하니까 바라보고 있는 플레이어가 아니라 제 정보가 뜨네요 ㅠㅠㅠ
on sneak toggle:
@player is not sneaking
@set {shift.%player%} to true
on sneak toggle:
@player is sneaking
@set {shift.%player%} to false
on rightclick on player:
@if {shift.%player%} is true:
@@execute player command "/정보 %player%"
슈퍼레몬
2024.05.15targeted
슈퍼레몬
2024.05.15그리고 코드는 하나로 쓰세요
```
on right click:
if player is sneaking:
if targeted entity is player:
~구문
```
천칭
2024.05.15target으로 하니까 되네요! 감사합니다!