-------------------------------------------------------------------------------
ERROR: Map won't load
There could be a number of problems including :
- No Player spawn point
- Conflicting custom .pk3's
SOLUTION: Make sure you always have some kind of player spawn poin in your maps. Also remove all custom .pk3 files from your main directory because conflicts occur.
-------------------------------------------------------------------------------
ERROR: MAX_POINTS_ON_WINDING exceeded
There are too many vertices repeating themselves along a single axis (ie you have an extremely long single brush). It can also mean you have a "brush side polygon" somewhere with more than 64 corner points.
SOLUTION: Find the offending brush (edit -> find entity/brush, and enter the brush number.) and either delete it or cut it into smaller pieces.
-------------------------------------------------------------------------------
ERROR: MAX_SURFACE_INFO
There is too much shader data in the scripts folder.
SOLUTION: Remove custom pk3s
-------------------------------------------------------------------------------
ERROR: MAX_MAP_LIGHTING
One light affects too many surfaces.
SOLUTION: Improve vis design by using
vis_leafgroups, hint brushes and / or areaportals.
-------------------------------------------------------------------------------
ERROR: DOWNGRADING TO OLD ANIMATION FORMAT
You've used an old model in your map. Possibly the .skc file in
the /newanim folder is missing. These models will generally suffer
from severe LOD changes, causing them to look crap from far
away and at lower detail settings.
SOLUTION: Use an other model or don't mind.
-------------------------------------------------------------------------------
ERROR: LoadPortals: NumVisBytes xxxxxxx exceeds 2097152
The visdatasize has grown out of hand. This is caused by a too high number or poor layout of structural brushes.
SOLUTION: Turn some brushes into details to solve this problem.
Suggested reading: Vis for Dummies (by TheStorm).
-------------------------------------------------------------------------------
ERROR: Coudn't find 'models/xxx/xxx.map'
The model you're using doesn't have a model map in pak0.pk3. Therefore this model will be non-solid in game.
SOLUTION: Create your own model map by following the instructions of the Model Maps tutorial.
-------------------------------------------------------------------------------
ERROR: WARNING: Entity xxx of type 'xxxx' leaked
Not sure why the compiler complains about this. It seems to happen when you clone entities (space bar).
SOLUTION: Recreate the entities that cause the problem. Find them in Radiant by using the misc -> find entity / brush function.
-------------------------------------------------------------------------------
ERROR: Backwards tree volume
This error appears in multiple situations, if:
- Your map is not fully enclosed (it leaks).
Pantera wrote:You get a backwards tree volume error instead of a leak when the compiler can't plot a course from the first entity to the point of the error, to place in the point file. This probably means the entity was exposed to the void. If it had been inside a building and the compiler could plot a course through the building to the void, it would have valid point file data and a leak.
- You have a bad brush somewhere. Hard to trace, possibly it's the terrain if you have some.
SOLUTION: Make sure you have a structural skybox if you're working on an outside map. In general make sure there's no leaks. If the error persists, you can use Rogue's plug-in to purge bad polygons. Just extract the file to a /plugin folder within your Radiant directory.
-------------------------------------------------------------------------------
ERROR: MatchToken Error ({) failed at line xxx of xxx
You have an invalid .shader file in the scripts folder. If you haven't written a shader yourself, this is most likely caused by a custom shader. Otherwise, check your shader at the given line number. Make sure the number of {s equals the number of }s.
SOLUTION: Remove custom pk3s. If this doesn't help, check the shader that produced the error.
-------------------------------------------------------------------------------
ERROR: TIKI_InitTiki: could not find surface 'xxx' in 'models/xxx/xxx.tik' (check referenced skb/skd files).
This TIKI file contains errors. Even happens to certain original TIKIs.
SOLUTION: Ignore
-------------------------------------------------------------------------------
ERROR:
WARNING: node without a volume
node has x tiny portals
node reference point xxx xxx xxx
Another invalid brush error. Infinite brushes cause this error.
SOLUTION: Find the brush at the given reference point and remove it. Or use a plugin (e.g. Rogue's) to remove the brush.
-------------------------------------------------------------------------------
ERROR: FloatPlane: bad normal
Somehow you've created an invalid brush in your map. At least one face of this brush will be invisible in game. This usually is the result of careless vertex-editing.
SOLUTION: Use a plugin (e.g. Rogue's) to remove bad brushes. Be careful with vertex editing in the future
-------------------------------------------------------------------------------
ERROR: Entity xxx, Brush xxx: degenerate plane
A degenerate plane is created by using the vertex editing feature in a wrong way. This error can result in very weird glitches, including random faces all over your map and infinite brushes.
SOLUTION: Use a plugin (e.g. Rogue's) to remove the given brush. Be careful with vertex editing in the future.
-------------------------------------------------------------------------------
ERROR: Entity xxx, Brush xxx: duplicate plane
One brush has at least two identical faces, causing overdraw and thus lower framerates in game. This happens when you draw two edges over each other in the editor, for example to make a 3-sided brush out of a 4-sided one. If you want to do this, use the ctrl + 3 method instead.
SOLUTION: Recreate the brush or use a plugin (e.g. Rogue's) to remove it. Never draw two edges over each other anymore.
-------------------------------------------------------------------------------
ERROR: No such file or directory
Chances are that one of your MBuilder paths points to the wrong directory or is just wrong
SOLUTION: Check that all your MBuilder / batch file paths are correct.
-------------------------------------------------------------------------------
ERROR: max_patch_planes
theres too many patch meshes in the map, or too many faces on all the patch meshes.
SOLUTION: Delete some patches, or replace them with less complex ones [theres an option in the curve menu to decrease complexity i think]
-------------------------------------------------------------------------------
WARNING: Leaf portals saw into leaf:
This is a warning more than an actual error. It is caused by rounding errors in calculating the surface of non-axial planes. If you have a lot of brushes with sculpted surfaces (like Gensurf terrain), you are going to get a number of these errors. If you have little brushes with lots of clipping, you will get this error, too.
Where this error has some significance is when you know you didn't do any brush sculpting. It still won't hurt you, but means there's something going on you didn't know about.
Note: this error may also cause random disappearing of faces, i.e. brushes that are present in radiant do not show up in game. If this happens, try making the disappearing brushes and adjacent brushes detail.
SOLUTION: Often can be fixed by turning tiny or highly complex structural brushes into detail brushes. Unfortunately the compiler doesn't tell which brush caused the error. Look for structural brushes with odd shapes.

