Panini
대표칭호 없음
이해도 | 초보자 |
---|---|
게임버전 (JE) | 1.20.1 |
게임버전 (BE) | 관련없음 |
안녕하세요, 1.20.1 버전에서 사용가능한 플러그인중 일정 지역에 들어갔을때 지정한 bgm이 나오게 할 수 있는 플러그인이 있을까요? 페이퍼 버킷을 사용중인데 페이퍼에는 없는 것 같습니다, 혹은 스크립트로 제작이 가능하다면
제작해주실 수 있는 분이 계신가요?
사례금은 충분하게 드리겠습니다.
windy_wind
2024.07.16간단히 만들어보면
function isEnter(loc: location) :: boolean:
@x location of {_loc} between 50 and 100
@y location of {_loc} between 5 and 10
@z location of {_loc} between -500 and -400
return true
on player move:
@if isEnter(player) is true:
@@{join::%player%} is not set
@@play sound "사운드이름" with volume 1 00and pitch 1 at player for player
@@set {join::%player%} to true
@else if {join::%player%} is set:
@@stop playing sound "사운드이름" to player
@@delete {join::%player%}
이런식? (@는 텝)