- BW1 coordinate generator
- Made by Jaden

This is a simple program made to calculate a number of coordinates in random parts of a circle.  Note that it only deals with integers now.  If I find some reason to include detailed coordinates like the map editors use, I'll change it.  That doesn't mean you have to make the coordinates whole numbers before using this, though.

- 'Before' string
	Adds the text here to the beginning of each coordinate.
- 'After' string
	Adds the text to the end of each coordinate.
- Number
	The amount of coordinates to be generated.
- Radius
	Size of the circle
- x Center
	The x coordinate to center the circle on.
- y Center
	The y coordinate to center the circle on.
- Generate Coordinates
	Puts it all together.

This should be enough to get it, but if not I'll include an example here.

Before string: CREATE_NEW_TREE(-1, 
After string: , 8, 0, 0, 0.9, 1.2)
Number: 5
Radius: 100
x Center: 2553.50
y Center: 2705.69

Would produce something like this:

rem Generation code
CREATE_NEW_TREE(-1, "2519, 2793", 8, 0, 0, 0.9, 1.2)
CREATE_NEW_TREE(-1, "2575, 2614", 8, 0, 0, 0.9, 1.2)
CREATE_NEW_TREE(-1, "2517, 2767", 8, 0, 0, 0.9, 1.2)
CREATE_NEW_TREE(-1, "2552, 2710", 8, 0, 0, 0.9, 1.2)
CREATE_NEW_TREE(-1, "2470, 2652", 8, 0, 0, 0.9, 1.2)