Rename MCRevive3.js to MCrevive3.js

This commit is contained in:
Favouris
2023-05-14 19:17:03 +08:00
committed by GitHub
parent 2d6cf07a65
commit 1416cd432d

View File

@@ -0,0 +1,18 @@
/*
[CelticMS] Monster Carnival Reviving Field 1
*/
function enter(pi) {
var portal = 0;
switch (pi.getPlayer().getTeam()) {
case 0:
portal = 4;
break;
case 1:
portal = 3;
break;
}
pi.warp(980000301, portal);
pi.playPortalSound();
return true;
}