개인 자료란 (JE)

  서버 커뮤니티

Profile JJAB 대표칭호 없음

JJAB33 cce57d3b75314118a40eee4e3b1ff83c

Profile

질문하기 스크립트

별개의 스크립트의 command 명령어를 사용하는 법

2024.06.03 조회 수 75 추천 수 0
이해도 입문자 
게임버전 (JE) 1.20.1 
게임버전 (BE) 관련없음 
스크립트 버전 2.8.3 

command /가챠 [<player>] [<integer>]:

    trigger:

        if player is op:

            if arg 1 and arg 2 is set:

                give arg 2 of paper named "&e포켓몬 가챠권" with lore "&a이번에 나올 포켓몬은 뭘까~용?" and "&b*이 가챠권은 스폰월드에서만 사용가능합니다!" to arg 1

                message "랜덤 가챠권이 지급되었습니다!" to player


제가 이런 구문을 짰는데요, 여기서 사용된 '/가챠' 커맨드를 다른 스크립트에서 execute console command "/가챠 %player% 10" 이런 식으로 쓸 수 있는 방법은 없을까요? 답변주시면 감사하겠습니다!





3개의 댓글

windy_wind
2024.06.06

function으로 만들고 쓸 수 있습니다.

 

function 가챠(p: player, int: integer, target: player):

@give {_int} of paper named "&e포켓몬 가챠권" with lore "&a이번에 나올 포켓몬은 뭘까~용?" and "&b*이 가챠권은 스폰월드에서만 사용가능합니다!" to {_target}

@message "랜덤 가챠권이 지급되었습니다!" to {_p}

 

command /가챠 [] []:

@trigger:

@@가챠(player, arg 2, arg 1)

 

 

(다른 스크립트에서)

command /가챠2 [] []:

@trigger:

@@가챠(player, arg 2, arg 1)

JJAB
2024.06.12
@windy_wind

오 지금 봤네요 늦었지만 감사합니다!

슈퍼레몬
2024.06.07

그냥 쓰시면 되는데;;