Garry's Mod

Garry's Mod

Bleach SNPCs
 This topic has been pinned, so it's probably important
Cpt. Hazama  [developer] 26 Apr @ 10:41pm
Additional Costumes
[Please don't ask for help unless you're genuinely having problems and have experience with this stuff]

To add custom costumes for characters:
- Ensure that your new model does not override the original (change the model name/directory)
- Ensure that your new model is using $includemodel in the QC and pointing to the original model
- Your model shouldnt have any animations in it, only a "ref" or "reference" from the original. If you do include any animations, they will override whatever I have in the original for your model only (which if youre wanting to use custom animations, make sure they're setup correctly)
- Create a lua file in your addon folder (Example: lua/autorun/mycostumes.lua)
- Add this to the file:
timer.Simple(0.1,function() VJ_BSR_RegisterCostume("npc_vj_bsr_gin","models/cpthazama/bleach_sr/gin_captain.mdl") end)

The first string parameter is the NPC's class. The second string parameter is your model/costume.

Assuming all is done correctly, you can now view your costume in the character menu and spawn in with it equipped!

Here is an example additional costume all setup and ready to go:
https://github.com/Cpt-Hazama/Bleach-SNPCs-Costumes-Example
Last edited by Cpt. Hazama; 30 Apr @ 11:01pm