Hi my english speaking friends,
I've made a simpel Isomap.
I hope anyone need this, or was looking for.
Screenshot:

Tile "ground.png": (save as PNG):

// --------------------------------- //
// Project: Iso
// Start: Thursday, April 05, 2007
// IDE Version: 4.142
LOADSPRITE "ground.png",1 // Load Isosprite
DIM tile[20][20] // Set Array
WHILE TRUE
//-----Set Locals----------
w=72 // Tile width
h=36 // Tile hight
w2=w/2 // Half Tile width
h2=h/2 // Half Tile hight
//-------------------------
FOR x = 0 TO 19
FOR y = 0 TO 19
xpos = w2*(x-y)-w2 // calculate xpos
ypos = h2*(x+y) // calculate ypos
DRAWSPRITE 1,xpos-ScrollX,ypos-ScrollY // Draw sprite
NEXT
NEXT
//--------Scroll-----------------------
IF KEY(200) THEN ScrollY = ScrollY -3
IF KEY(208) THEN ScrollY = ScrollY +3
IF KEY(203) THEN ScrollX = ScrollX -3
IF KEY(205) THEN ScrollX = ScrollX +3
//---------------------------------------
SHOWSCREEN
WEND
END
Download :
Click me[attachment deleted by admin]