Made CWKPQ fully-functional, using the Expedition system (won't work with the lobby system).
14 lines
308 B
JavaScript
14 lines
308 B
JavaScript
function enter(pi) {
|
|
var eim = pi.getEventInstance();
|
|
if (eim != null) {
|
|
if (eim.getIntProperty("glpq5") < 5){
|
|
pi.playerMessage(5, "The portal is not opened yet.");
|
|
return false;
|
|
} else {
|
|
pi.warp(610030600, 0);
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
} |