개인 자료란 (JE)

  서버 커뮤니티

Profile 월지 일반인
Profile

질문하기 스크립트

멀티버스 플러그인을 이용한 스크립트 질문

2024.07.19 조회 수 132 추천 수 1
이해도 중급자 
게임버전 (JE) 1.20.1 
게임버전 (BE) 관련없음 
스크립트 버전 2.8.7 

버전 : 1.20.1

스크립트 버전 : 2.8.7

버킷 : 최신 Paper 버킷

======================

Multiverse-Core 플러그인을 이용해 스크립트를 짤건데

1. 서버에 처음 들어왔을때 "tutorial" 이름의 월드로 이동

2. 죽었을때는 항상 "spawn" 이름의 월드로 이동

하는 방법 어떻게 하나요?




4개의 댓글

고구기
2024.07.19

on first join:

    execute victim command "/mvtp tutorial"

on death:

    execute victim command "/mvtp spawn"

 

windy_wind
2024.07.20

teleport player to location(x좌표,y좌표,z좌표,world "월드이름")

 

#응용

on respawn:

@wait 1 tick

@teleport player to location(x좌표,y좌표,z좌표,world "world")

월지
2024.07.20
@windy_wind

엇 그러면 "특정 월드에 있을때 게임모드 변경"은 어떤 식으로 하면 될까요,...?

windy_wind
2024.07.24
@월지

command /test:

@trigger:

@@if player's world is world "world_nether":

@@@send "당신은 네더에 있군요!" to player

@@else:

@@@send "당신은 %player's world%에 있군요!" to player