PDA

View Full Version : original cod2 models height



feanor
15th November 2017, 09:53
what is the height of original cod2 models ? (british , german , russian , american) 70 ?

kubislav23
15th November 2017, 12:54
http://killtube.org/showthread.php?2679

feanor
16th November 2017, 08:09
may i ask why he specified also 183.6 cm ? i am trying to fix silent aim cheat (editing serthy's script) he specified player's height is 64 but i realized its wrong.thats why i asked. also i shot a laid player from his legs , it showed me length from his legs to head was 70.6(as i remember maybe 70.2). does height is changing when player lying on the ground ?

kung foo man
16th November 2017, 11:16
One inch is 2.54 cm, 183.60 cm / 2.54 = ~72.28 inches

Also this might help you:

https://github.com/kungfooman/cod2_std/blob/master/utils.gsc#L184



getRealEye()
{
player = self;

stance = player getStance();

offset = 0;
switch (stance)
{
case "stand": offset = 20; break;
case "duck": offset = 0; break;
case "lie": offset = -30; break;
//default: offset = getcvarint("offset");
}

realEye = player getEye() + (0,0,offset);
return realEye;
}

YuriJurek
16th November 2017, 11:16
If I am doing the visual overview correctly it looks like it should be something slightly above radiant 72 units, asserting that one smallest grid box is 2 radiant units.

1379