Hello guys,Can somebody please tell me how to properly use submodels? I have a .mdl file with difernt submodels in it,like 10 or something but I do not know how to do it so it works.
I have tried
Code:
set_user_info(id, "model", PR_MDL_PLAYER);
set_pev(id, pev_body, 2);
set_pev(id, pev_skin, random_num(0, 2));
with this in precaches
Code:
new const PR_MDL_PLAYER[] = "JB_MODELJB3";
Code:
new static PrecacheModels[][] = {
"models/player/JB_MODELJB3/JB_MODELJB3.mdl",
};
but this does not work,when you try to see the model either your CS crashes or the server,can somebody please show me a proper way to do it?