Hello I have a whole bunch of models that I want to add to my own common that im making...
I can code everything els and I know i've got to Precache it so i want to add:
Do i have to also Precache them with like this:
because my common was from a friend and like the Default models are only Preacache and the like vending machine are Preache again but with Shader... Like so:
basicly do I need to add them again with the shader thing?
Thanks
BUMP

I can code everything els and I know i've got to Precache it so i want to add:
Code:
PrecacheModel("zombie_vending_jugg_on");
PrecacheModel("zombie_treasure_box");
Do i have to also Precache them with like this:
Code:
PrecacheShader
because my common was from a friend and like the Default models are only Preacache and the like vending machine are Preache again but with Shader... Like so:
Code:
precachemodel( "defaultvehicle" );
PrecacheModel( "default_static_model" );
PrecacheShader( "specialty_juggernaut_zombies" );
PrecacheShader( "specialty_fastreload_zombies" );
PrecacheShader( "specialty_doubletap_zombies" );
PrecacheShader( "specialty_quickrevive_zombies" );
PrecacheModel("zombie_vending_jugg_on"); // < HERE ARE MINE
PrecacheModel("zombie_treasure_box"); // < HERE ARE MINe
PreacheModel( "zombie_bomb" ); // < HERE ARE MINE
PrecacheModel("zombie_vending_doubletap_on");
PrecacheModel("zombie_vending_revive_on");
PrecacheModel("zombie_vending_sleight_on");
precachemodel("zombie_vending_packapunch_on");
basicly do I need to add them again with the shader thing?
Thanks
BUMP