Jump to content
Jet Set Willy & Manic Miner Community

IRF

Contributor
  • Posts

    5,112
  • Joined

  • Last visited

Everything posted by IRF

  1. By the way, I like the new rooms - there are some nice puzzles amongst them. :) However, I did notice an unfair Infinite Death Scenario which can occur if you jump rightwards from 'Tree Top', from a position as far right as Willy can walk on the rightmost Water cell on that screen. (Which is quite a reasonable manoeuvre for the player to attempt, since it's a 'leap into the unknown'.) But that could be solved easily, by raising up the leftmost Water cell in 'One Flew over the Cuckoo's Nest' by one cell-row.
  2. One easy way to resolve it would be to place an item in the right-hand half of 'A Bit of Tree'. That would force the player to climb up that way. It might also provide an opportunity to utilise one of the unused-but-defined-by-Matt Smith item patterns (if you haven't already used them all - I noticed some of them have been placed in the new rooms).
  3. It's a nice 'Forbidden Holy Ground' effect, Mickey!
  4. It might have been usable, with some optimisation, if I'd spotted it early enough in the development of WNM-SE. No matter!
  5. Interestingly, if you try the same jump as I demonstrated before, with the Water cell in place instead of the Earth block, Willy is killed at the end of his fall - even though he has fallen the same distance in both cases!
  6. There's a two-byte CP #00 at #8FE2, where a one-byte OR A command would achieve the same thing. (I can't believe we haven't spotted that one before, or have we?)
  7. It looks like all of the items in Conservatory Roof can be collected without dying, but you need to do a standing jump on the conveyor (you have to walk left (i.e. upstream), stop pressing the Left key for exactly one time-frame, and then press it again, and keep it pressed whilst you jump!) I've downloaded the file (thanks Mickey!) but I haven't had chance for more than a cursory glance yet. I will do as soon as I get a chance! EDIT: I've now double-checked those Conservatory Roof items - they can all be collected safely. On the other hand, it might now be too easy to acquire them - Willy can now jump through from the outside of the ramp to the inside and land on one of the green water cells - this means that there is now no need to climb up the Banyan Tree/A Bit of Tree in order to get there. P.S. The conveyor in there looks good - much better than the solid white affair that Matt Smith left in place!
  8. I suppose it's more in keeping with the original game design, even if the time constraint is extremely relaxed!
  9. IRF

    Pokes (Spectrum Version)

    Here - try changing the Air INK colour to white in Solar Power Generator and see what happens (apart from all the items getting auto-collected). Poor Willy - heh heh! :lol:
  10. Straight vrom ze horses mouth: http://www.jdawiseman.com/papers/games/jsw2/jsw2_programmer_comments.html#Derrick_Rowson_20130810 "a pseudo german influence"
  11. Are you referring to 'Drinking Vater'? I always assumed that was a deliberate play on words (adopting a 'cod-German accent'), rather than an accidental typo?
  12. I've had an idea which might facilitate the above; I'll do a bit of experimentation when I can find the time...
  13. Yes - I've come up with a fix which stops Willy from walking leftwards through an Earth cell at head-height, yet which still allows him to jump leftwards through an Earth cell at head-height (thus retaining some quirky manoeuvres, and also my patch doesn't prevent Willy from completing The Wine Cellar as the simple fix does). As a bonus, I've also enabled the same quirky features whilst jumping (but not walking) rightwards.
  14. Random observation: if you design a game such that Willy has no spare lives at the start of each game, then POKE 35899, 0 won't protect him!!
  15. There are two ways around that: (1) Simply replace the Earth cell in question with a Water cell; that would arguably be more in keeping with the aesthetics of the room than is the Earth cell (i.e. there are other instances of Water cells adjacent to the side walls of the room, whereas there is only a single random example of an Earth cell that protrudes beyond the perimeter walls/ceiling/floor); (2) Rely on the player being able to perform a well-timed jump through the Earth block as per the attached .rzx recording. You only get one shot at it though; if you don't make a pixel-perfect jump then the conveyor stops you going back to try again, and you'd have to wait for the green Monk to come along and extinguish a life before Willy is reincarnated at the bottom-left (with the item collected). Dr Andrew Broad's mirror-imaged version of JSW ("ylliW teS teJ") requires the player to make this very manoeuvre (either that or sacrifice a life). However, I don't think that it's something which you should expect the average player of the original JSW to be able to pull off, and so I would go for option (1) above. ****** Incidentally, after I performed the quirky jump in the recording, observe the way in which I got Willy to jump into the wall at the bottom-left via another quirky jump. (The fix only stops Willy from walking through an Earth cell at head height, but he can still jump through them!) However, you should also notice that he can't progress beyond a depth of one Earth cell into the wall, because of the implementation of the fix. Whereas in the original JSW, without the head-height Earth cell fix in place, after performing the same manoeuvre it is possible for Willy to carry on walking through the wall - emerging at the bottom-right of The Wine Cellar (where, if you don't keep walking, he gets stuck on the conveyor in that room, and you have to abandon the game!) Earth cell in Forgotten Abbey.rzx
  16. I think I should correct myself there - that doesn't sound right! If a cell's value in the attribute buffer is set to match the current room's Ramp attribute byte, then the pixel pattern for Ramp should also be drawn to the corresponding address in the screen buffer - at least initially. However, in subsequent time-frames, the first and third graphic bytes of the cell where the Ramp and Conveyor intersect, will be overwritten by the first and third pixel-row of the Conveyor's cell-graphic, due to the application of the 'Move the Conveyor' routine. Therefore the cell will take on a 'hybrid' appearance, assuming the Conveyor pattern in the first and third pixel-rows, but retaining the Ramp pattern in the second, and the fourth to eighth pixel-rows. The exception would be if the Ramp intersected at the leftmost cell of the Conveyor, in which case the entire Ramp should be visually unaffected (apart from displaying animation in the pertinent Ramp cell), but the first and third graphic byte of the Ramp will overwrite the first and third pixel-rows along the entire length of the Conveyor! (With all other pixel-rows of the Conveyor being unaffected.) That's because the 'Move the Conveyor' routine picks up the appropriate graphics from the cell at the pre-defined left-hand end of the Conveyor (even if that cell has since been overwritten, because Ramp attributes are distributed across the attribute buffer after Conveyor attributes), and then the routine copies those rotated graphic bytes rightwards across the rest of the predefined Conveyor length.
  17. I never thought of those possibilities - good thinking!
  18. Two bytes (#8EB4-5) can be freed up in the 'Move Willy(1)' routine by inserting a relative jump forward by four bytes at #8EB2 (destination #8EB8). Replace four bytes at #8D67-8D6A with three bytes: RET Z JR #8D4D EDIT: That's no more efficient in terms of total bytes used than replacing the absolute JP with a relative JR (an alternative which doesn't require the RET to be moved). Replace the LD A, (HL) at #943E with LD A, D and then NOP out #943F (frees up one byte). (Credit goes to J G Harston for that one.)
  19. I don't think this has been explicitly mentioned on Andrew Broad's list of quirky features, or in his Advanced JSW/MM Trainer documentation... In JSW, Willy cannot gain access to*, by jumping**, a platform that is located in cell-row 2 of a room. This is because whenever he jumps, he is raised up by two and a half cell-rows, so either he doesn't achieve a sufficient height if he jumps from a platform in cell-row 5, or else he breaches the top of the room and moves up into the next room if he jumps from a platform in cell-row 4. (*In order to be able to stand on it. **Of course, he can access such a platform by walking up a Ramp or climbing up a Rope, or dropping down onto it from the room above.) This could give rise to interesting Promised Land/Forbidden Holy Ground effects. e.g. if such a platform leads to an otherwise-inaccessible sideways exit from the top corner of a room, and the room above has a solid floor (so there's no possibility of falling down onto the high-level platform). However, it might be possible to access such a platform if the Superjump feature could be properly configured (over and above the fix which John Elliott devised to stop Willy from falling through floors once he has reached the natural end of his jump cycle, but which still allows him to fall through standonable cells during the early part of his descent from the apex of his jump).
  20. IRF

    Amstrad Cpc464 Version

    The split screen colour effect is weird, it's not even half and half (eight rows black, eight rows not) but 5 and 11.
  21. Some other minor things that we 'fixed' in TNE - the capitalisation and centralisation of some of the room names. Some of them seemed to have been a bit of a rushed job in the original JSW release (e.g. "A bit of tree" instead of "A Bit of Tree") We also moved the room names down a row on the status bar, which looks tidier. Arguably, the current room name should disappear before the Game Over screen is drawn too.
  22. We doubled the speed of the digital clock in The Nightmare Edition, it's quite easy once you know how. Answer below, with a spoiler box inserted in case you want to try and figure it out for yourself: :)
  23. One other minor bug (not documented by SkoolKid) - the very first note of the in-game tune is missed out at the start of the game. The program keeps track of where it's up to with the tune, via the Music Note Index (#85E1), which is incremented during every pass through the Main Loop (see #8B43). However, #85E1 is incremented before its value is used to determine which note to play, so the first note is missed out until one rendition of the whole tune has been played. The value of #85E1 is initialised to '00' at #87CE. If it is initialised to 'FF' instead, then the first note of the tune is picked up at the beginning of each game.
  24. Actually this is my final suggestion. I've scoured both the 'Bugs' and 'Trivia' lists in SkoolKid's disassembly and there is one more thing for which POKES are readily available - the 'Maria's dodgy depth perception': http://skoolkid.github.io/jetsetwilly/reference/facts.html#mariasDodgyDepthPerception Let us know if that's something you would like to fix, and I'll dig out the POKES (for which the credit goes to Stuart Brady of FUSE).
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.