Resource centre for ZX Spectrum games
using Manic Miner and Jet Set Willy game engines
Archive of the
Manic Miner & Jet Set Willy Yahoo! Group
messages
|
|
||
|
|
Message: 4755
Author: john_elliott_uk
Date: 01/04/2005
Subject: Re: I've finally remembered
--- In manicminerandjetsetwilly@yahoogroups.com, dm_boozefreek
>
JSWED automatically sets this to match the number of items in the
> I remembered what I was going to ask....Is there any way to set the
> number of items required to finish the game with JSWED? I know the
> speccy based editors have exploited this. Just wondering.
game. If you really want not to have to collect all the items, then
the place to patch the code is at 8802h (all versions). It currently
reads:
LD A,(address) ; 256 minus number of items to collect.
LD L,A
and you would have to patch this to
LD L,256_minus_item_count
LD A,256_minus_items_to_collect
