Here is a section from the config.cpp of a terminator addon; shows how to create a super-strong soldier. Full credit to the author.
//
// SKYNET T-800 :: VERSION 1.30
// M27-Plasma Riffle :: VERSION 1.30
//
// - - made by Black Baron (blackbaron@chello.at) c March. 2002
//
class CfgVehicles
{
class All{};
class AllVehicles : All{};
class Land : AllVehicles{};
class Man : Land{};
class Soldier : Man{};
class SoldierWB : Soldier{};
class T800 : SoldierWB{
armor=60;
armorStructural=17.500000;
armorHead=14.700000;
armorBody=14.800000;
armorHands=18.500000;
armorLegs=18.500000;
cost=1600000;
canHideBodies=1;
canFloat=1;
side=1;
type=2;
scope=2;
minGunElev=-300;
maxGunElev=300;
minGunTurn=-20;
maxGunTurn=20;
irTarget=0;
lasertarget=0;
airTarget=0;
irLock=0;
airLock=0;
laserLock=0;
irscanner=1;
irScanRange = 5000;
irScanGround = 1;
laserScanner=1;
midspeed=180
maxspeed=180
unitInfoType="UNITINFOAIRPLANE";
displayName="T-800 (M27)";
model="\T800\T800";
weapons[]={StrokeGun,Throw,Put,M27Plasma,NVGoggles,};
magazines[]={StrokeGun,M27Grenade,M27Grenade,M27Grenade,M27,M27,M27,M27};
};
};
The relevant bits pertainingt to strength are:
armor=60;
armorStructural=17.500000;
armorHead=14.700000;
armorBody=14.800000;
armorHands=18.500000;
armorLegs=18.500000;
I'm not too sure what 'cost' and one or two other things mean, but there are some tutes in the addons depot that will explain all this.