Adding new buildings in v3:
First, add the new building data to the end of the STOREDAT file. The format should be as follows:
Name (max 14 chars)
Description (max 22 chars)
Gain (cookies per second)
Price
Now we'll start editing the actual program. You will need to change the old max # of buildings to the new max # of buildings you want, minus one. This can be edited at the start of line 10. (the max # of building is represented as mb)
Next, look at line 2010. There are multiple ranges. These determine what building data will be displayed on each page. (a range of 0-4 will print data for buildings 0-4, and 5-9 for 5-9 and so on) I and J are the minimum and maximum values of a range, respectively. SS is the page number on which these values will be printed. Add/edit ranges as needed. Make sure you have ifss>{page #}theni.
(notes: page numbers start at 0, and ranges can be no bigger than 5)
Lastly, edit line 3095 to be ifss={max page #+1}thenss={max page #}.
If, after doing this, the screen becomes messed up, try changing the amount of {downs} in line 2555. Currently there isn't any code that selects the amount of {down}s needed depending on the number of items printed. (that may come later) Everything should now work. If you are experiencing any problems, try updating your CC64 version and repeating the steps.