개인 자료란 (JE)

  서버 커뮤니티

Profile S_code 대표칭호 없음
Profile

질문하기 스크립트

인챈트 스크립트 질문

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

command /강화 [<text>] [<integer>]:
	trigger:
		if player is op:
			enchant the player's tool with arg 1 arg 2

리로드 할때 enchant the player's tool with arg 1 arg 2에서 오류가 나서 잘못된 점이 있다면 알려주세요.

1개의 댓글

스크립터브혼
2021.04.23

[Enchant] 이펙트의 패턴은 enchat %item types% with %enchantment types% 입니다.

text와 integer로 enchamtent type을 대신 할수 없습니다.


[Enchantment Type] 타입은 %encantment% %integer% 형태로 사용됩니다.

> sharpness 5

> waterbreathing 1


[Enchantment] 타입은 문서의 패턴을 확인해보시기 바랍니다.


command /ench <enchantment type>:
    trigger:
        enchant tool with arg-enchantment type

이렇게 작성되어야 합니다.