force walking

dale_coop

Moderator
Staff member
Take a look at the script StartMovingPlayerRight.asm... (the script executed when you hold the right direction button).
Just copy paste... it should work ;)
 

Bucket Mouse

Active member
TubbieRanger said:
and i can just put that into a tile script?

Indeed -- it's that simple.

Though pushing the gamepad may cancel the movement -- I'm not sure. In that case you'd need a bit of extra code to shut off the gamepad. I just so happen to have that.....

Code:
		LDA gameHandler
		ORA #%00100000
		STA gameHandler

And to turn the controls back on:

Code:
	LDA gameHandler
	AND #%11011111
	STA gameHandler
 
Top Bottom