스크립트개발자초보
대표칭호 없음
이해도 | 입문자 |
---|---|
게임버전 (JE) | 1.17.1 |
게임버전 (BE) | 1.7.x |
스크립트 버전 | 2.8.2 |
command /수리:
trigger:
# 손에 들고 있는 아이템 가져오기
set {_item} to item in player's tool
# 아이템이 존재하면 내구도를 최대값으로 설정
if {_item} is not air:
# 내구도가 있는지, 수리 가능한지 확인
if {_item} has durability and {_item} can be repaired:
set durability of {_item} to max durability of {_item}
send "아이템이 수리되었습니다!"
else:
send "이 아이템은 수리할 수 없거나 구도가 없습니다."
else:
send "손에 아이템을 들고 있지 않습니다."
빨간 글씨에서 오류가 나는데 이유를 잘 모르겠습니다.. ㅠㅠ
오류 내용
1. Can't understand this condition: if {_item} has durability and {_item} can be repaired:
2. 'else' has to be placed just after another 'if' or 'else if' section
2가지 오류인데 무슨 뭐가 문제일까요.. ㅠㅠ
슈퍼레몬
2024.02.20if {_item} has durability and {_item} can be repaired: 라는 조건문은 스크립트에 없습니다. 비슷한 것으로는 https://skripthub.net/docs/?id=10286 를 쓰시거나 그냥 내구도가 있는지만 비교를 하시면 될듯 합니다
스크립트개발자초보
2024.02.22답변 감사합니다. ^^