이해도 | 입문자 |
---|---|
게임버전 (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개 획득!"
이렇게 뜨는거 어떻게해야할까요?
영상보고 그대로했는데 안되요....
세찐찐
2023.01.29message “(내용)” to player 으로 하셔야합니다
탄부
2023.01.29감사합니다!