musunwow
대표칭호 없음
이해도 | 초보자(스크립트 구성요소나 기본문법은 알아요) |
---|---|
게임버전 (JE) | 1.17.1 |
게임버전 (BE) | 관련없음 |
유튭보며 환전 스크립트를 만들고 있습니다.
on rightclick on entity:
if entity's name is "&2아이템을 돈으로 환전":
if player's tool is iron ingot:
message "[환전내역]:&f철을 &21000원으로 환전했습니다." to player
add 1000 to {돈.%uuid of player%}
remove 1 of player's tool from player's tool
else:
message "&4이 아이템은 환전이 불가능합니다." to player
여기 스크립트에서 철 1개 만 들었을때 잘 작동하는데 들고있는 철이 1개를 초과하면 작동이 안되더라구요. 그래서 철 1개씩 들고 환전하기에는
너무 귀찮고...
해결 방안이 없을까요?
서재형
2021.12.14remove 1 from item amount of player's tool 로 해보세요
+ 또한 player's tool is iron ingot을 player's tool's type is iron ingot 으로 바꾸세요
musunwow
2021.12.14왘ㅋㅋ 감사해요!!