• Hands for cutsom playermodels
    2 replies, posted
Hi everyone I have downloaded a custom combine playermodel. But it only shows me the normal civilian hands and i want to change that. I already found this code: player_manager.AddValidHands( "css_arctic", "models/weapons/c_arms_cstrike.mdl", 0, "00000000" ) But i dont know where i need to add this line of code and how to edit the code in such a way that it will use the combine hands in stead of the civilian hands. Sorry for my bad english.
You make a lua file in lua/autorun, name it whateveryouwant.lua and put this into that file: [code] AddCSLuaFile() player_manager.AddValidHands( "css_arctic", "models/weapons/c_arms_combine.mdl", 0, "00000000" ) [/code] and replace "css_arctic" with whatever your cl_playermodel is set to when you have your player model selected.
[QUOTE=Robotboy655;44006163]You make a lua file in lua/autorun, name it whateveryouwant.lua and put this into that file: [code] AddCSLuaFile() player_manager.AddValidHands( "css_arctic", "models/weapons/c_arms_combine.mdl", 0, "00000000" ) [/code] and replace "css_arctic" with whatever your cl_playermodel is set to when you have your player model selected.[/QUOTE] Thanks for the help
Sorry, you need to Log In to post a reply to this thread.