text pointers help

Request patches for Keens 4-6.
Post Reply
User avatar
Bubzrulz
Posts: 208
Joined: Thu Dec 22, 2016 12:37 pm
Location: N.S.W AUSTRAILA

text pointers help

Post by Bubzrulz »

need some pointers for these patches i think thats what i need to make them work right

k4

Code: Select all

%patch $337CD "REALLY LEAVE?" $00 
%patch $337DA "Y TOO LEAVE" $00
Image


and k6

Code: Select all

%patch $35107 "REALLY LEAVE?" $00
              "PRESS Y " $00
Image
levellass
Posts: 3001
Joined: Wed Oct 11, 2006 12:03 pm
Location: Ngaruawahia New Zealand

Re: text pointers help

Post by levellass »

The big problem you have here is that your second patch needs to be one byte further along, the way they're set up now they link together. The following patches move the text pointer one space:

(Also, it's 'to leave', with only one 'o'.)


Keen 4:

Code: Select all

#Press to quit +1
%patch $1AFD3 $496BW
%patch $337DB "Y TO LEAVE" $00

Keen 6:

Code: Select all

#Press to quit +1
%patch $1AC43 $43E5W
User avatar
Bubzrulz
Posts: 208
Joined: Thu Dec 22, 2016 12:37 pm
Location: N.S.W AUSTRAILA

Re: text pointers help

Post by Bubzrulz »

levellass wrote: Wed Mar 29, 2017 12:23 pm
(Also, it's 'to leave', with only one 'o'.)

yes i've already picked up that mistake
Post Reply