Well, i'm having a problem with Fizz
Whenever i use 'MakePlayer' the screen turns completly blue, only showing the player(like you paste an image without turning of the backdrop).
The strange thing is(well, for me it is :p), i only have this problem with MakePlayer, all the create physics options work ....
Here's my code : offcourse without fizz.dba and media, since you don't need my images to compile the project :p
`///Configuration///
StartFizz()
set image colorkey 255,0,255
set display mode 640,480,32
blokjes#=22
playerxpos#=64
playerypos#=340
`\\\\\\\\\\\\\\\\\\
`///Loading///
load image "sky.bmp",1
load image "brick.bmp",2
load image "water.bmp",3
load image "bloke40.bmp",4
`\\\\\\\\\\\\\
`\\\Map Building\\\
dim map(20,15)
for IndexY = 1 to 15
for IndexX = 1 to 20
read map(IndexX,IndexY)
if map(IndexX,IndexY)=0
paste image 1, IndexX * 32 - 32, IndexY * 32 - 32
endif
if map(IndexX,IndexY)=1
MakeStaticBox(32,32,IndexX * 32 - 32,IndexY * 32 - 32,0)
paste image 2, IndexX * 32 - 32, IndexY * 32 - 32
endif
next IndexX
next IndexY
`//////////////////
`\\\Map Data\\\
data 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
data 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
data 0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
data 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
data 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
data 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
data 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
data 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
data 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
data 0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0
data 0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0
data 0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0
data 0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0
data 1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1
data 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
`//////////////
`\\\\Movement,Positioning & Physics\\\
MakePlayer( 1, 39, 79,64,340,0,0,1337 )
do
Players#( 1, 5 ) = 4
Players#( 1, 1 ) = 0
if rightkey() = 1 then Players#( 1, 1 ) = 5
if leftkey() = 1 then Players#( 1, 1 ) = -5
if upkey() = 1 and Players#( 1, 3 ) = 0 then Players#( 1, 2 ) = 400
UpdateFizz()
loop
`//////////////////////////////
BTW , i also have a problem with jumping, can someone help me with that too ?