CWKPQ inclusion

Added some CWKPQ imports for the server. Enabled basic mechanics for a
run, but still WIP.
This commit is contained in:
ronancpl
2017-06-26 01:34:56 -03:00
parent 6b2b3616d6
commit a7beff1bb4
101 changed files with 4455 additions and 3821 deletions

View File

@@ -0,0 +1,14 @@
function enter(pi) {
var eim = pi.getEventInstance();
if (eim != null) {
if (eim.getIntProperty("glpq6") < 3){
pi.playerMessage(5, "The portal is not opened yet.");
return false;
} else {
pi.warp(610030700, 0);
return true;
}
}
return false;
}