Portal sound effects + Improved skillbook drops

Added portal crossing sound effect on several scripted portals which were missing it.
Added a few more scrolls on Spindle.
Added several skill/mastery book drops, making "4th job skill questing" somewhat more viable.
This commit is contained in:
ronancpl
2018-02-14 18:25:49 -02:00
parent 10dc1f03e7
commit 278b5e8140
43 changed files with 1876 additions and 1284 deletions

View File

@@ -9,21 +9,21 @@ function enter(pi) {
pi.warp(130000100, 4); //or 130000101
break;
case 140010100:
pi.warp(140010110, 0); //or 140010111
break;
pi.warp(140010110, 0); //or 140010111
break;
case 120000101:
pi.warp(120000105, 0);
break;
pi.warp(120000105, 0);
break;
case 103000003:
pi.warp(103000008, 0); //or 103000009
break;
pi.warp(103000008, 0); //or 103000009
break;
case 100000201:
pi.warp(100000204, 0); //or 100000205
break;
pi.warp(100000204, 0); //or 100000205
break;
default:
pi.warp(pi.getMapId() + 1, 0); //or + 2
break;
pi.warp(pi.getMapId() + 1, 0); //or + 2
break;
}
return true;
return true;
}