개인 자료란 (JE)

  서버 커뮤니티

Profile 프토름 대표칭호 없음

ZIGUN_ eac1f9126b9744eda6d1271357e68c17

Profile

질문하기 스크립트

이 오류를 고쳐주세요

2021.09.05 조회 수 56 추천 수 0
이해도 중급자(필요한 애드온을 찾아서 만들 수 있어요) 
게임버전 (JE) 1.16.5 
스크립트 버전 2.5.3 
스크립트 애드온 2.5.3 

on rightclick:

    if event-block is stone button:

        if event-block is not air:

            if event-block's location is (126, 75, 95, world):

                message "d" to player


이게 메세지가 안오네요




1개의 댓글

스크립터브혼
2021.09.06

각 조건문이 올바른 값을 비교하는지 확인해보세요.

보아하니 오류가 있을 것 같은데 로그에 표시되는 오류도 번역기로 해석해보시고요.


on rightclick:
    send "[1] %event-block% = stone button" to console
    if event-block is stone button:
        send "[2] %event-block% = not air" to console
        if event-block is not air:
            send "[3] %event-block's location% = (126, 75, 95, world)" to console
            if event-block's location is (126, 75, 95, world):
                message "d" to player

이런식으로 각각의 조건문 전에 맞는 값을 비교하는지, 어떤 조건문을 통과하지 못하는지 찾고 해당 조건문을 수정하시면 됩니다.