Difference between revisions of "Mohawk/Bugs"

Jump to navigation Jump to search
920 bytes added ,  06:01, 24 January 2011
add details on the bug with the bspit-gspit maglev
(add a Mohawk Bugs page with a Riven original interpreter bug)
 
(add details on the bug with the bspit-gspit maglev)
Line 3: Line 3:
= Riven =
= Riven =
* The maglev on Temple Island has no proper ambient sounds. When you board it on Temple Island, the wind sound will play. When you ride it back from Jungle Island, no sound will play.
* The maglev on Temple Island has no proper ambient sounds. When you board it on Temple Island, the wind sound will play. When you ride it back from Jungle Island, no sound will play.
* The maglev between Book Making Island and Garden Island will always be on Garden Island (even if you just took it to Book Making Island). It seems the developers forgot to do an animation of the summoning of the tram from either side and just made it always appear instead (by setting the tram to be on Garden Island as you use it to go to Book Making Island). Strangely, they added some code just in case the tram is not present to just make it appear with no animation. Here's a script decompilation snippet of the maglev call button, with the relevant part being case 0 (taken from gspit card 31):
<pre>
Hotspot 3:
Stream Type 2:
playMovieBlocking(2);
switch (gnmagcar) {
case 0:
gnmagcar = 1;
gnmagrot = 0;
refreshCard();
break;
default:
switch (gnmagrot) {
case 1:
playMovieBlocking(1);
gnmagrot = 0;
refreshCard();
break;
}
break;
}
</pre>
2,051

edits

Navigation menu