8 lines
165 B
JavaScript
8 lines
165 B
JavaScript
function enter(pi) {
|
|
if ( pi.getPlayer().getTeam() == 0 ) {
|
|
pi.warp( pi.getMapId() - 100);
|
|
} else {
|
|
pi.warp( pi.getMapId() - 100);
|
|
}
|
|
return true;
|
|
} |