G0=Top screen during game
G1=Bottom screen during game
G2=Use for anything
G3=Use for anything
G4=Sprites (Use for anything)
G5=BG Sprites (Use for anything)
also do you have a code for (i think its) BGscroll, so the sprite stays at middle, or mid bottom screen, to walk around the map instead of just out of the screen.
Mhm
Each graphics page is 512x512 pixels
The editor hides pages 2 and 3 for some reason
In the game, the top screen can use sprites from a graphics page of your choice, and the bottom page can have its own as well
That may be hard to comprehend, but its kindof a limitation
DISPLAY 0:SPPAGE 4
DISPLAY 1:SPPAGE 5
will set the top screen to page 5 sprites and the bottom screen to page 4 sprites
Oh I mixed that around
DISPLAY 0:SPPAGE 4
DISPLAY 1:SPPAGE 5
top screen: page 4
bottom screen: page 5
Then you would do this
'SPSET ID,X,Y,X2,Y2
SPSET 42,0,0,32,32 'create new sprite
SPHOME 42,16,16 'center origin
SPOFS 42,200,120 'move to center of screen
ah, i knew i spelled that wrong...
anyways, for me probably if the ai sees me, it would attack me, or fire a weapon at me.
but just a code that would make it move around and follow me when it sees me for now.