Heh, if you want to display the already built map, just do something like
for(x=0; x <max_x ; x++ )
for(y = 0; y < max_y ; y++)
dislplay_cord(ch,x,y);Then have display_cord send them a character based on x and y. When you wanna limit this, or just customize the size, just change the for loop. Davion

