jminjm
대표칭호 없음
이해도 | 입문자 |
---|---|
게임버전 (JE) | 1.19.2 |
게임버전 (BE) | 1.19.x |
스크립트 버전 | 2.8.2 |
스크립트 애드온 | skrayfall 1.9.28/skutilities 0.9.2/skquery 4.1.10 |
아무것도 모르는 생초짜
npc에 gui만들어서 멀티월드를 이동하는 걸 만드려고 하는데 곡괭이도 막 움직이고 텔포가 안됩니다 ㅠ
도와주세요
on rightclick on entity:
if entity's name is "&a야생 &4지옥":
open chest with 5 rows named "&a야생 &4지옥" to player
set slot 21 of current inventory of player to diamond pickaxe named "야생" with lore "클릭"
on inventory click:
if inventory name is "야생":
if clicked raw slot is between 0 and 200:
cancel event
execute player command "/mv tp world2"
세찐찐
2024.02.28execute player command를 쓰면 유저가 해당 명령어 권한ㅇ
또한 필요하므로 아래의 코드로 교체해보세요
teleport player to location(x,y,z, world "world2")
(X, y, z에 알맞은 위치를 지정해주시면 됩니다
슈퍼레몬
2024.02.28if clicked raw slot is between 0 and 200:
> 굳이 between을 사용할 필요가 없습니다.
execute player command "/mv tp world2"
> 권한이 없습니다.
> execute console command 를 사용하시거나 skutility의 make player 를 사용하세요
jminjm
2024.03.03감사합니다