Spam Reducer -- how to use it.

Spam reducer does 2 things:
1) prevent people from building REALLY REALLY tall towers
2) prevent builds from containing too many 1x1 or 1x1x5 bricks


First - install like any normal blockland addon.

TOWERS
======
The default values for tower prevention are 75 for normal user and 250 for admin.
This does not mean 75 or 250 bricks tall.  This is the actual in game height coordinate of the brick.  Each brick is 0.6 
units tall, so a tower starting at a height of 0 needs to be quite tall before it gets 75 units tall.

Some maps may need the height values adjusted for this addon to work properly.  If you get errors just placing bricks on 
the ground, then adjust the value of $Pref::Server::BrickHeight and $Pref::Server::AdminBrickHeight accordingly.


ANTI-SPAM
=========
Spam Reducer also helps prevent builds from using too many "spammy" bricks.  The defaults are the 1x1 and 1x1x5 bricks.  The numbers in the file are percentages - not absolute values.  A big build by an experienced builder will use 1x1 and 1x1x5 bricks.  The bigger the build the more bricks will be used, but the percentage of the total bricks used will be fairly low.

Scenario 1: a big build
-----------------------
player puts down a baseplate (brick count = 1)
player puts down 50 1x12x5 bricks (brick count = 51)
player puts down a 1x1 (brick count = 52)
a single 1x1 brick out of 52 total bricks is only 2% of the total, so no error is displayed

Scenario 2: a spammy build
--------------------------
player puts down a baseplate (brick count = 1)
player puts down a 1x1 (brick count = 2)
now, since the single 1x1 is half (50%) of the player's total build, they will see an error message: "Error: Too many brick1x1Data bricks.  Max % is 20 of total. You are at 50 Use other bricks instead"



CONFIGURING / SETUP
===================
To change the max tower height values, just edit your prefs.cs file and enter whatever you want

To change the percentages, look for the following in your prefs.cs file:
$Pref::Server::BrickPercentbrick1x1Data = 20;
$Pref::Server::BrickPercentbrick1x1x5Data = 25;

Edit the numbers to whatever you want.  anything 100 and above will disable the anti-spam checking for that brick.


To add NEW bricks to track, you need to know the brick datablock name.  Once you have that, just add new entries to your prefs.cs file in the format: $Pref::Server::BrickPercent[dataBlockName] = XX;

example:
$Pref::Server::BrickPercent[brickVehicleSpawnData] = 50;

this restricts vehicle spawners to no more than 50% of a player's total bricks. So players will have to place at least one other brick before dropping a vehicle spawner.  The [] characters are optional, and will dissapear when blockland saves your settings.  Note that additional bricks to track will not show up in the RTB settings gui

