Hey all, im curently working on a solo fallout with fonline engine and i want change npc to 3D model but i haven't found any guide on :/ (sorry for my poor english) Thanks
Is this with TLA or 2238 SDK? Anyhow, you need to modify the critter proto files located in proto/critters/
Let's say you want to change all brahmins to use 3D model, you need to open the protos and replace the line:
ST_BASE_CRTYPE=15
with
ST_BASE_CRTYPE=306
These so called basetypes are defined in data/CritterTypes.cfg
@   15    mabrom     15   0  0  1  0  0  0  1   1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0   1000    0   8  0  0  0     -
@  306    VbCow              -    0   1    1    0    0    0    1      1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0    600  200    GenericM
Of course 3D needs to be enabled too with this like
__Enable3dRendering     = true; 
in scripts\config.fos 
Hope that helps a bit.