Thread: Got Codes?
View Single Post
  #3  
Old 10-20-2009, 06:37 AM
OSS OSS is offline
Approved Member
 
Join Date: Oct 2007
Posts: 113
Default

Quote:
Originally Posted by sniperspec View Post
How can I spawn a specific soviet soldiers uniform without all the extras like the hat and helmet morphed into each other at one time?
You could try manually change uniform with lua methods:

Actor.ChangeActorSkin( Level.GetPlayer(), "SovietSoldier" );

and then disable hats & helmets:

Actor.EnableMesh( Level.GetPlayer(), "grm_helmet" , false );

some tags you can try:

grm_helmet
grm_cap
grm_shoulder
grm_coat
sol_equipment_lo

to run lua methods from console, first use '$', ex. :

$ Actor.ChangeActorSkin( Level.GetPlayer()... );
Reply With Quote