Difference for random_maps/special.c from version 1.7 to 1.8


version 1.7 version 1.8
Line 1
 
Line 1
 /*  /*
  * static char *rcsid_special_c =   * static char *rcsid_special_c =
  *   "$Id: special.c,v 1.7 2000/06/19 01:34:31 cvs Exp $";   *   "$Id: special.c,v 1.8 2000/06/21 04:54:57 peterm Exp $";
  */   */
   
 /*  /*
Line 39
 
Line 39
 #define SPECIAL_EXIT 3  #define SPECIAL_EXIT 3
   
 #define GLORY_HOLE 1  #define GLORY_HOLE 1
 #define NR_OF_HOLE_TYPES 1  #define ORC_ZONE 2
   #define MINING_ZONE 3
   #define NR_OF_HOLE_TYPES 3
   
 /* clear map completely of all objects:  a rectangular area of xsize, ysize  /* clear map completely of all objects:  a rectangular area of xsize, ysize
 is cleared with the top left corner at xstart, ystart */  is cleared with the top left corner at xstart, ystart */
Line 198
 
Line 200
  the_exit->msg = add_string(buf);   the_exit->msg = add_string(buf);
  break;   break;
  }   }
     case ORC_ZONE:  /* hole with orcs in it. */
    {
    int g_xsize,g_ysize;
    g_xsize = RANDOM() %3 + 4 + difficulty/4;
    g_ysize = RANDOM() %3 + 4 + difficulty/4;
    write_parameters_to_string(buf, g_xsize, g_ysize,wallstyle,floorstyle,"orc",
    "none","onion","wealth2","none",exitstyle,0,0,
    OPT_WALLS_ONLY,0,0,1,dungeon_level,dungeon_level,
    difficulty,difficulty,-1,1,0,0,0,0);
    the_exit->slaying = add_string("/!");
    the_exit->msg = add_string(buf);
    break;
    }
     case MINING_ZONE:  /* hole with orcs in it. */
    {
    int g_xsize,g_ysize;
    g_xsize = RANDOM() %9 + 4 + difficulty/4;
    g_ysize = RANDOM() %9 + 4 + difficulty/4;
    write_parameters_to_string(buf, g_xsize, g_ysize,wallstyle,floorstyle,"none",
    "none","maze","minerals2","none",exitstyle,0,0,
    OPT_WALLS_ONLY,0,0,1,dungeon_level,dungeon_level,
    difficulty,difficulty,-1,1,0,0,0,0);
    the_exit->slaying = add_string("/!");
    the_exit->msg = add_string(buf);
    break;
    }
   
    
   }    }


Legend:
line(s) removed in v.1.7 
line(s) changed
 line(s) added in v.1.8

File made using version 1.98 of cvs2html by leaf at 2011-07-21 17:57