Rename MCRevive4.js to MCrevive4.js

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

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(980000401, portal);
pi.playPortalSound();
return true;
}