Slot Max & Wind Walk fix + reviewed scripted portals

Fixed slotMax function caching up dirtied player data.
Fixed many portals not supposed to warp players to "random spawnpoints".
Fixed Wind Walk not being cancellable by attacking.
This commit is contained in:
ronancpl
2017-11-03 17:06:48 -02:00
parent 64af2cfa00
commit 1fead59c57
145 changed files with 3139 additions and 2726 deletions

View File

@@ -28,5 +28,5 @@ function act() {
if (Math.random() > 0.7)
rm.dropItems();
else
rm.warp(105090200);
rm.warp(105090200, 0);
}

View File

@@ -27,5 +27,5 @@
function act(){
rm.playerMessage(5, "An unknown force has returned you to the starting point.");
rm.warp(280010000);
rm.warp(280010000, 0);
}

View File

@@ -22,7 +22,7 @@
/* @Author Lerk
*
* 2200000.js: Fake Dollhouse: Returns player to Eos Tower 100th Floor [221023200]
* 2200000.js: Fake Dollhouse: Returns player to Eos Tower 74th Floor [221023200]
*/
function act(){

View File

@@ -28,7 +28,7 @@
function act(){
if(rm.isQuestActive(3238)) {
rm.warp(922000020);
rm.warp(922000020, 0);
}
else rm.warp(922000009);
else rm.warp(922000009, 0);
}