개인 자료란 (JE)

  서버 커뮤니티

Profile illomantion 대표칭호 없음

katarinaSuki b6d59b089d6b4574bc18589c9000bf5c

Profile

질문하기 스크립트

스크립트 명령어 딜레이

2020.08.26 조회 수 2124 추천 수 0
이해도 1.12 
게임버전 (JE) 모드버킷 

on player world change:

    world is "world"

    execute player command "/effect @a minecraft:health_boost 999999 9 true"

    execute player command "/effect @a minecraft:regeneration 10 255"

    execute player command "/worldborder center -569 561"

    execute player command "/worldborder set 1000"

    execute player command "/worldborder add -999 2000"

    

여기서 execute player command "/effect @a minecraft:regeneration 10 255" 명령어가 실행된 다음 5초 후 다음 명령어:

execute player command "/worldborder center -569 561"

execute player command "/worldborder set 1000"

execute player command "/worldborder add -999 2000" 가 실행 되게 하려면 어떻게 해야하나요




4개의 댓글

oiso2019
2020.08.26

wait 5 seconds

스크립터브혼
2020.08.26

[Delay]이펙트로 동작을 지연시킬 수 있습니다.

illomantion
2020.08.26
@스크립터브혼

on player world change:

world is "world"

execute player command "/effect @a minecraft:health_boost 999999 9 true"

execute player command "/effect @a minecraft:regeneration 10 255"

wait 5 seconds

execute player command "/worldborder center -569 561"

execute player command "/worldborder set 1000"

execute player command "/worldborder add -999 2000"

이렇게 하면되나요?

스크립터브혼
2020.08.26
@illomantion

네 맞습니다.