How to add custom character models to jobs

Post Reply
gtrival
New to forums
New to forums
Posts: 6
https://www.youtube.com/channel/UC40BgXanDqOYoVCYFDSTfHA
Joined: Sat May 03, 2014 3:12 pm

How to add custom character models to jobs

Post by gtrival »

Sorry guys for competitive threads I just have a hard time coding these jobs for some reason...
How would u add custom characters for jobs? Thanks.
User avatar
Sir Nipah
This is my homepage
This is my homepage
Posts: 76
Joined: Mon Jul 08, 2013 3:38 am
Location: Australia/Melbourne
Contact:

Re: How to add custom character models to jobs

Post by Sir Nipah »

You will need to find the model/models .mdl file on the server.
Then all you need to do is quote the the location into your job.

Code: Select all

TEAM_TEST = DarkRP.createJob("Test", {
	color = Color(20, 150, 20, 255),
	model = {
		"models/player/Group01/Female_01.mdl",
		"models/player/Group01/Female_02.mdl",
		"models/player/Group01/Female_03.mdl",
		"models/player/Group01/Female_04.mdl",
		"models/player/Group01/Female_06.mdl",
		"models/player/group01/male_01.mdl",
		"models/player/Group01/Male_02.mdl",
		"models/player/Group01/male_03.mdl",
		"models/player/Group01/Male_04.mdl",
		"models/player/Group01/Male_05.mdl",
		"models/player/Group01/Male_06.mdl",
		"models/player/Group01/Male_07.mdl",
		"models/player/Group01/Male_08.mdl",
		"models/player/Group01/Male_09.mdl"
	},
	description = [[This is the description.]],
	weapons = {},
	command = "test",
	max = 0,
	salary = 0,
	admin = 0,
	vote = false,
	hasLicense = false,
	candemote = false
})
Image Garry's Mod veteran.
Post Reply