Advertisement
Guest User

Bodygroup

a guest
May 28th, 2016
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.14 KB | None | 0 0
  1. skins = {4,5,6}, -- Exemple
  2.    bodygroups = {
  3.       ["torso"] = {0,2,3}, -- Tu les trouvent In-Game
  4.       ["legs"] = {0,1,2,3,4,5},
  5.       ["beanies"] = {0,1,2},
  6.       ["glasses"] = {0,1}, --
  7.    }
  8.  
  9. })
  10.  
  11. -- รงa marche avec ces players models:
  12.  
  13.    -- http://steamcommunity.com/sharedfiles/filedetails/?id=280384240 -- Enhanced Citizens Playermodels [Zelpa]
  14.    -- http://steamcommunity.com/sharedfiles/filedetails/?id=283815805 -- Halo 3 Spartan Playermodels [Vipes]
  15.    -- http://steamcommunity.com/sharedfiles/filedetails/?id=104491619 -- Metropolice Pack [DPotatoMan]
  16.  
  17.  
  18.  
  19.  
  20. -- C'est dans le Job.lua
  21.  
  22. TEAM_CITIZEN = DarkRP.createJob("Citoyen", {
  23.    color = Color(20, 150, 20, 255),
  24.    model = {
  25.       "models/player/zelpa/male_04.mdl",
  26.    },
  27.    description = [[ Blabla]],
  28.    weapons = {},
  29.    command = "cit",
  30.    max = 0,
  31.    salary = GAMEMODE.Config.normalsalary,
  32.    admin = 0,
  33.    vote = false,
  34.    hasLicense = false,
  35.    candemote = false,
  36.  
  37.    -- C'est lร  --
  38.  
  39.    skins = {4,5,6},
  40.    bodygroups = {
  41.       ["torso"] = {0,2,3},
  42.       ["legs"] = {0,1,2,3,4,5},
  43.       ["beanies"] = {0,1,2},
  44.       ["glasses"] = {0,1},
  45.    }
  46.  
  47. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement