DarkRP certain jobs on my server are stuck in the T pose for some reason..
9 replies, posted
Okay so i was adding custom player models to jobs on my server and now they are a T pose all the time, i have 2 jobs that have kleiner and security which are already in gmod and they are also a T pose.. Anyone know any solutions to this problem?
https://files.facepunch.com/forum/upload/273425/96d78c18-1fce-4c39-a434-22ba034b4df4/image.png
Please help me with my problem!
give them playermodels, not npc models
The model path must not include human, but instead player
Yeah i have the playermodels not npc models, it is really weird why this is happening :/
What is the model you have assigned to the jobs that T-pose?
show us the path you give for the model
Here are some of the jobs that T-pose
TEAM_MINE = DarkRP.createJob("Miner", {
color = Color(0, 0, 0, 255),
model = {"models/Eli.mdl"},
description = [[
As miner you mine long hour shifts just to be able to feed your family.
- Cannot raid
- Cannot mug
- Cannot steal
- Cannot base]],
weapons = {},
command = "miner",
max = 4,
salary = 1500,
admin = 0,
vote = false,
hasLicense = false,
candemote = true,
category = "Citizens",
sortOrder = 4,
})
TEAM_WOOD = DarkRP.createJob("Lumberjack", {
color = Color(117, 77, 0, 255),
model = {"models/odessa.mdl"},
description = [[As lumberjack it is your job to cut trees and use the saw to cut the wood into planks so you get paid.
- Cannot raid
- Cannot mug
- Cannot steal
- Cannot base]],
weapons = {"swm_chopping_axe"},
command = "lumber",
max = 2,
salary = 850,
admin = 0,
vote = false,
hasLicense = false,
candemote = true,
category = "Citizens",
sortOrder = 5,
})
TEAM_FUEL = DarkRP.createJob("Fuel Refiner", {
color = Color(0, 0, 0, 255),
model = {
"models/Kleiner.mdl",
"models/Characters/Hostage_01.mdl",
"models/Characters/Hostage_02.mdl",
"models/Characters/hostage_03.mdl",
"models/Characters/hostage_04.mdl"
},
description = [[As oil refiner it is your job to refine oil and sell it to make a living.
- Cannot raid
- Cannot mug
- Cannot steal
- Cannot base]],
weapons = {},
command = "refiner",
max = 4,
salary = 2000,
admin = 0,
vote = false,
hasLicense = false,
candemote = true,
category = "Citizens",
sortOrder = 6,
})
They are not player models, the player model versions for default source games will usually have '/player/' in the model path. You should be able to find the player model versions in the spawnmenu or online.
Those are not playermodels, they are HL2 NPC models. Use GCFScape, enter garrysmod_dir.vpk, then find the playermodels you want to use and link them.
told you these are noit playermodels. just open the Q menu, type in the left top search bar "player", and it will give you alot of playermodels. probably all of them that are installed (use the one installed on the server of course and not the one you have installed only. It would be a ERROR then of course)
Oh my bad i totally forgot about the /player/ part damn, thank you so much everyone!
Sorry, you need to Log In to post a reply to this thread.