ili
대표칭호 없음
이해도 | 초보자 |
---|---|
게임버전 (JE) | 관련없음 |
게임버전 (BE) | 관련없음 |
어떤 개인 변수를 충족하면 체력이 증가하게 하고 싶은데
every 1 seconds:
>if {hide.%player%} is true:
>>add 10 to loop-player's max health
여기서
there's no world in a periodic event
이런 오류가 발생합니다
어떤식으로 구문을 바꿔야 잘 작동할까요?
그렇다고 loop를 쓰면 {hide.%player} 이 개인변수를 설정해주는 구문에 loop가 없어서 오류가 납니다
세찐찐
2024.04.22loop player는 loop구문에서만 사용 가능합니다
수정 코드 :
every 1 seconds:
>loop all players:
>>if {hide.%loop-player%} is true:
>>>add 10 to loop-player's max health
ili
2024.04.22감사합니다