Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.13 KB | None | 0 0
  1.     if (self:IsCombineFaction(faction)) then
  2. -- Combine RCT-06 Skin
  3.         if (self:IsPlayerCombineRank(player, "RCT")) then
  4.             return "models/dpfilms/metropolice/hdpolice.mdl";
  5. -- Combine UNION 05 Skin
  6.         elseif (self:IsPlayerCombineRank(player, "UNION-05")) then
  7.             return "models/dpfilms/metropolice/hl2concept.mdl";
  8. -- Combine JURY 05 Skin
  9.         elseif (self:IsPlayerCombineRank(player, "JURY-05")) then
  10.             return "models/dpfilms/metropolice/policetrench.mdl";
  11. -- Combine GRID 05 Skin
  12.         elseif (self:IsPlayerCombineRank(player, "GRID-05")) then
  13.             return "models/dpfilms/metropolice/hl2beta_police.mdl";
  14. -- Combine HELIX 05 Skin
  15.         elseif (self:IsPlayerCombineRank(player, "HELIX-05")) then
  16.             return "models/dpfilms/metropolice/civil_medic.mdl";
  17. -- Combine RAZOR 05 Skin
  18.         elseif (self:IsPlayerCombineRank(player, "RAZOR-05")) then
  19.             return "models/dpfilms/metropolice/arctic_police.mdl";
  20. -- Combine GHOST 05 Skin
  21.         elseif (self:IsPlayerCombineRank(player, "GHOST-05")) then
  22.             return "models/dpfilms/metropolice/urban_police.mdl";
  23. -- Combine BLADE/UNION EpU Skin
  24.         elseif (self:IsPlayerCombineRank(player, "BLADE-EpU")) then
  25.             return "models/dpfilms/metropolice/retrocop.mdl";
  26. -- Combine APEX/HELIX EpU Skin
  27.         elseif (self:IsPlayerCombineRank(player, "APEX-EpU")) then
  28.             return "models/dpfilms/metropolice/elite_police.mdl";
  29. -- Combine JUDGE/JURY EpU Skin
  30.         elseif (self:IsPlayerCombineRank(player, "JUDGE-EpU")) then
  31.             return "models/dpfilms/metropolice/playermodels/pm_rtb_police.mdl";
  32. -- Combine SPEAR/RAZOR EpU Skin
  33.         elseif (self:IsPlayerCombineRank(player, "SPEAR-EpU")) then
  34.             return "models/dpfilms/metropolice/arctic_police.mdl";
  35. -- Combine ANVIL/GRID EpU Skin
  36.         elseif (self:IsPlayerCombineRank(player, "ANVIL-EpU")) then
  37.             return "models/dpfilms/metropolice/retrocop.mdl";
  38. -- Combine WRAITH/GHOST EpU Skin
  39.         elseif (self:IsPlayerCombineRank(player, "WRAITH-EpU")) then
  40.             return "models/dpfilms/metropolice/tron_police.mdl";
  41. -- Combine BLADE/UNION DvL Skin    
  42.         elseif (self:IsPlayerCombineRank(player, "BLADE-DvL")) then
  43.             return "models/dpfilms/metropolice/hunter_police.mdl";
  44. -- Combine APEX/HELIX DvL Skin
  45.         elseif (self:IsPlayerCombineRank(player, "APEX-DvL")) then
  46.             return "models/dpfilms/metropolice/playermodels/pm_police_bt.mdl";
  47. -- Combine JUDGE/JURY DvL Skin
  48.         elseif (self:IsPlayerCombineRank(player, "JUDGE-DvL")) then
  49.             return "models/dpfilms/metropolice/blacop.mdl";
  50. -- Combine SPEAR/RAZOR DvL Skin
  51.         elseif (self:IsPlayerCombineRank(player, "SPEAR-DvL")) then
  52.             return "models/dpfilms/metropolice/arctic_police.mdl";
  53. -- Combine ANVIL/GRID DvL Skin
  54.         elseif (self:IsPlayerCombineRank(player, "ANVIL-DvL")) then
  55.             return " models/dpfilms/metropolice/tron_police.mdl";
  56. -- Combine WRAITH/GHOST DvL Skin
  57.         elseif (self:IsPlayerCombineRank(player, "WRAITH-DvL")) then
  58.             return "models/dpfilms/metropolice/tron_police.mdl";
  59. -- Combine CmD Skin
  60.         elseif (self:IsPlayerCombineRank(player, "CmD")) then
  61.             return "models/dpfilms/metropolice/hunter_police.mdl";
  62. -- Combine SeC Skin
  63.         elseif (self:IsPlayerCombineRank(player, "SeC")) then
  64.             return "models/dpfilms/metropolice/phoenix_police.mdl";
  65.         end;
  66.     end;
  67. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement