The clue's in the .fpf file: SPEED:30 ft. Ranged masterwork longbow (composite/+4) +11/+6 (1d8+4/x3)
This shows that it's having a problem around the speed and ranged sections of the Offense section. Looking at this section:
The two things here are:Code:OFFENSe
Speed 30 ft.
Ranged masterwork longbow (composite/+4) +11/+6 (1d8+4/x3)
Melee battleaxe +1 +13/+8 (1d8+6/x3)
Melee shield +1 (heavy/wooden) +11/+6 (1d4+5)
- Melee should come before ranged.
- There should only be one melee entry per statblock, not two (or more).
Change the above 4 lines to the following 3:
These changes will allow the NPC to parse.Code:OFFENSE
Speed 30 ft.
Melee battleaxe +1 +13/+8 (1d8+6/x3) or shield +1 (heavy/wooden) +11/+6 (1d4+5)
Ranged masterwork longbow (composite/+4) +11/+6 (1d8+4/x3)
However... When you come to open this NPC in Fantasy Grounds you will get a "Database Error: A XML parse error occurred processing file..." error raised and the NPC won't open. The most common cause of this is the format of the special abilities section (the second most common is the spell list format). FG does some nice formatting in the special abilities section - separating each one into it's own paragraph and bold highlighting the ability name. This relies on two things:
- The special ability headings having (sp), (su) or (ex) after the title.
- The paragraph preceeding the new special ability heading ends in a full stop (period).
Looking at the special abilities section of the statblock, the Favored Terrain (Plains) (Ex) line doesn't end in a period - add one in. Also remove the and duplicate line for "Wild Empathy" you should be able to open this NPC in FG without an issue.

