Difference for Info/update_exits.pl from version 1.1 to 1.2


version 1.1 version 1.2
Line 11
 
Line 11
   
 # Name of the old map that we update exits on  # Name of the old map that we update exits on
 # Note that this can be a regexp.  # Note that this can be a regexp.
 $OLD_MAP_NAME="(/city/city|../city|../../city)";  $OLD_MAP_NAME="(/santo_dominion/town|../town|../../town)";
   
 # OLD_MAP_STARTX/Y and OLD_MAP_ENDX/Y determine the range for the   # OLD_MAP_STARTX/Y and OLD_MAP_ENDX/Y determine the range for the
 # updates.  For example, scorn/city was broken up on two of the  # updates.  For example, scorn/city was broken up on two of the
 # map tiles, so this gets used to correspond that properly.  # map tiles, so this gets used to correspond that properly.
 # you can use very large END values just to make sure the entire  # you can use very large END values just to make sure the entire
 # map is covered  # map is covered
 $OLD_MAP_STARTX=10;  $OLD_MAP_STARTX=3;
 $OLD_MAP_STARTY=0;  $OLD_MAP_STARTY=12;
 $OLD_MAP_ENDX=100;  $OLD_MAP_ENDX=27;
 $OLD_MAP_ENDY=100;  $OLD_MAP_ENDY=100;
   
 # New map names.  OFFX/Y is the offset compared to the old values - these  # New map names.  OFFX/Y is the offset compared to the old values - these
 # can be negative provided that STARTX above is positive (eg, the  # can be negative provided that STARTX above is positive (eg, the
 # map is being shifted.)  # map is being shifted.)
   
 $NEW_MAP_NAME="/world/world_105_115";  $NEW_MAP_NAME="/world/world_102_108";
 $NEW_MAP_OFFX=-10;  $NEW_MAP_OFFX=0;
 $NEW_MAP_OFFY=18;  $NEW_MAP_OFFY=-9;
   
 $VERBOSE=0;  $VERBOSE=0;
   
Line 41
 
Line 41
 }  }
   
   
   
 &maplist(".");  &maplist(".");
   
   
Line 164
 
Line 163
     }      }
     closedir (DIR);      closedir (DIR);
   
     # recurcive handle sub-dirs too      # recursive handle sub-dirs too
     while ($_ = shift @dirs) {      while ($_ = shift @dirs) {
  &maplist ($_);   &maplist ($_);
     }      }


Legend:
line(s) removed in v.1.1 
line(s) changed
 line(s) added in v.1.2

File made using version 1.96 of cvs2html by leaf at 2006-02-15 14:17