So I recently started my own trouble in terrorist town server and installed pointshop. I added a custom player model (deadpool) and for some reason when ever I spawn I die automaticly... it dosnt happen with any other model please help!!!
Notes: The Materials/Models are added to fastdl.
Post your pointshop code
[QUOTE=code_gs;42860225]Post your pointshop code[/QUOTE]
[code]ITEM.Name = 'Deadpool'
ITEM.Price = 10000
ITEM.Model = 'models/player/deadpool.mdl'
ITEM.AllowedUserGroups = { "bronze", "silver" }
function ITEM:OnEquip(ply, modifications)
if not ply._OldModel then
ply._OldModel = ply:GetModel()
end
timer.Simple(1, function() ply:SetModel(self.Model) end)
end
function ITEM:OnHolster(ply)
if ply._OldModel then
ply:SetModel(ply._OldModel)
end
end
function ITEM:PlayerSetModel(ply)
ply:SetModel(self.Model)
end
[/code]
This is odd I have one model in my point shop out of many that has this exact same problem and I am still yet to find a solution to it.
If anyone is having trouble with pointshop models add me on skype
Daniel Cimino
'Picture of Pillow Saying 'Rawr Im A Pillow''
Sorry, you need to Log In to post a reply to this thread.