Hi
I am sorry it looks a bit confusing it would be easier to correct the error in the c3d data 
Below i have listed the description from earlier and i have tried to add some more comments…
When reading your comments i feel that you have not fully understood the steps i proposed so i have taken the description from earlier and added some more information
[ul]
[li]Make a copy of the forceplate class you are having an issue with, copy the AAUHuman/TolBox/ForceplateType2Autodection.any file to AAUHuman/TolBox/ForceplateType2AutodectionModified.any
[/li][li]include the new class in the top of the main file next to line currently including the forceplate classes so include AAUHuman/TolBox/ForceplateType2AutodectionModified.any
[/li][li]You need to rename the class in the top so that the name is different than the original
[/li]This you need to do inside the file
AAUHuman/TolBox/ForceplateType2AutodectionModified.any
So first line to e.g.
#class_template ForcePlateType2AutoDetectionMyVersion (PlateName, Folder,AnySeg &Limb1,AnySeg &Limb2, No,VerticalDirection,HeightTolerance,VelThreshold, Fx, Fy, Fz, Mx,My,Mz,FootPresent){
[li]when you apply the class you need to swap the plate to the new one for the plate having the problem
[/li]So in Forceplate.any file write e.g.
ForcePlateAutoDetectionMyVersion Plate2(
PLATE_NO=2,
HeightTolerance = 0.07,
VelThreshold = 2.2,
FORCEPLATE_TYPE = 4
)
={ };
[li]now load the model … nothing is changed yet… error will be same but you now have possibility to modify the class
[/li][li]in the file AAUHuman/TolBox/ForceplateType2AutodectionModified.any , Manipulate the forceplate class corner section in the top of the class to comply with your data. It can be a little tricky to modify anyscript classes because the usual way to get you to the location of the error will take you only to the location where you have used the class and not to the location inside the class having the problem. So keep this in mind and make gradual changes in the class, so you always will know what could have caused a load error.
[/li]Maybe it will be enough to change the i below , so maybee corner c01 is not i=1 but i=3…in your case…;
AnyRefNode c01={
AnyInt i=0;
AnyInt plnr=No;
sRel=0.001*{Folder.Groups.FORCE_PLATFORM.CORNERS.Data[plnr][i][0],Folder.Groups.FORCE_PLATFORM.CORNERS.Data[No][i][1],Folder.Groups.FORCE_PLATFORM.CORNERS.Data[No][i][2]};
AnyDrawNode drw={ScaleXYZ=0.01*{1,1,1};RGB={1,0,0};};
AnyDrawVector DrawName = {
Vec = {0.0,0,0}; //use zero length
Line.Thickness = 0.025; //arbitary value
Text = "1"; //make reference to name
Line.RGB={1,0,0};//make reference to color
};
};
[/ul]