View Single Post
  #7  
Old 05-09-2007, 04:19 PM
theHAWKER theHAWKER is offline
**FLIP OUT**
theHAWKER's Avatar
Join Date: Mar 2006
Location: canada, vancouver
Posts: 768
theHAWKER is an unknown quantity at this point
so if i wanted it to set somthing down that was 4 tiles by 4 tiles would i do:
PHP Code:
0;
  for (
tx pxtx px 4tx++) {
    for (
ty pyty py 4ty++) {
      
tiles[tx,ty] = bushtiles[i];
      
i++;
    }
  } 
or like:
PHP Code:
0;
  for (
tx pxtx px 2tx++) {
    for (
ty pyty py 2ty++) {
      for (
ty pyty py 2ty++) {
          
tiles[tx,ty] = bushtiles[i];
          
i++;
    }
  } 
__________________
**FLIP OUT**
Reply With Quote