개인 자료란 (JE)

  서버 커뮤니티

Profile 탄부 대표칭호 없음
Profile

질문하기 스크립트

랜덤상자 스크립트 질문

2023.01.29 조회 수 276 추천 수 0
이해도 입문자 
게임버전 (JE) 1.19.2 
게임버전 (BE) 관련없음 
스크립트 버전 2.6.4 

command /랜덤상자받기:

    trigger:

        give 1 diamond named "&e랜덤 뽑기 상자" with lore "&a&l바닥에 설치하면 다이아가 램덤으로 지급!" to player

        

        

on place of chest:

    if name of player's tool is "&e다이아랜덤상자":

        cancel event

        remove 1 of player's tool from player's tool

        set {랜덤뽑기} to random integer between 1 and 10

        if {랜덤뽑기} is 1:

            give 1 diamond to player

            message "다이아몬드 1개 획득!"

        if {랜덤뽑기} is 2:

            give 1 diamond to player

            message "다이아몬드 5개 획득!"

        if {랜덤뽑기} is 3:

            give 1 diamond to player

            message "다이아몬드 10개 획득!"

        if {랜덤뽑기} is 4:

            give 1 diamond to player

            message "다이아몬드 15개 획득!"

        if {랜덤뽑기} is 5:

            give 1 diamond to player

            message "다이아몬드 5개 획득!"

        if {랜덤뽑기} is 6:

            give 1 diamond to player

            message "다이아몬드 5개 획득!"

        if {랜덤뽑기} is 7:

            give 1 diamond to player

            message "다이아몬드 1개 획득!"

        if {랜덤뽑기} is 8:

            give 1 diamond to player

            message "다이아몬드 1개 획득!"

        if {랜덤뽑기} is 9:

            give 1 diamond to player

            message "다이아몬드 1개 획득!"

        if {랜덤뽑기} is 10:

            give 1 diamond to player

            message "다이아몬드 1개 획득!"




 이렇게 뜨는거 어떻게해야할까요?
영상보고 그대로했는데 안되요....

2개의 댓글

세찐찐
2023.01.29

message “(내용)” to player 으로 하셔야합니다

탄부
2023.01.29
@세찐찐

감사합니다!