トピック
Lizards XplodingTomato

How do load maps?

How do you load maps made with the SBMAP tool, into your programs? I knew how to do it in petit computer, but now that they changed the file type stuff I can't figure it out.
1そうだね
プレイ済み
返信[1]
親投稿
T.J. Gamer zagg17
Dim L0[0] DIM L1[0] DIM L2[0] DIM L3[0] LOAD "DAT:SC_MAPNAME_L0",0 L1,0 L2,0 L3,0 BGLOAD 0,0,0,64,64,L0 L1 L2 L3
1そうだね
未プレイ
返信[2]
親投稿
T.J. Gamer zagg17
So DIM times 4 LOAD times 4 and BGLOAD times 4
0そうだね
未プレイ
返信[3]
親投稿
Lizards XplodingTomato
It didn't work It said that the LOAD was an illegal function
0そうだね
プレイ済み
返信[4]
親投稿
Zee Storybookten9
Okay, 2 problems: 1. Using multiple layers is a waste of space 2. You need to use the array in the LOAD function. I do it like this: DIM MAP[0] FOR I=0 TO 3 BGSCREEN I,64,64 LOAD "SC_MAPNAME_L"+STR$(I),0,MAP BGLOAD I,MAP NEXT
1そうだね
プレイ済み
返信[5]
親投稿
Lizards XplodingTomato
It still didn't work
0そうだね
プレイ済み
返信[6]
親投稿
Zee Storybookten9
Any specific problems? Any errors?
0そうだね
プレイ済み
返信[7]
親投稿
Lizards XplodingTomato
It still says illegal function call on the load
0そうだね
プレイ済み
返信[8]
親投稿
Zee Storybookten9
Whoops, it's DAT:SC(etc.). I forgot to include the DAT:
0そうだね
プレイ済み