이해도 | 초보자 |
---|---|
게임버전 (JE) | 1.19 |
게임버전 (BE) | 관련없음 |
스크립트 버전 | 2.8.0 |
스크립트 애드온 | skellett, skrayfall, skutilities |
command /메뉴:
trigger:
set {_gui} to chest with 1 rows named "&a메뉴"
set slot 4 of {_gui} to diamond named "&a야생으로 이동하기" with lore "가격: 15000" and ""
set slot 2 of {_gui} to wooden axe named "&a광장으로 이동하기" with lore "" and "&6클릭하면 광장으로 이동합니다" and ""
open {_gui} to player
on inventory click:
if inventory name is "&a메뉴":
cancel event
if click type is left mouse:
if clicked slot is 4:
set {_ lore} to uncolored line 1 of lore of clicked item
replace all "가격:" and " " with "" in {_lore}
if {돈::%uuid of player%} < {_lore}:
send "&c돈이 부족합니다"
else:
subtract {_lore} from { 돈::%uuid of player%}
teleport player to location(2.5,105,2.5,world("overworld"))
if clicked slot is 2:
execute player command "광장"
이렇게 입력하고 /메뉴 치고 다이아몬드를 클릭하면 순간이동만되고 돈은 안빠져나갑니다. 어떻게 해야할까요?
슈퍼레몬
2024.02.02변수명 앞에 띄어쓰기가 있습니다.