mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 21:53:46 +03:00
Upload
This commit is contained in:
55
gamemodes/darkrp/plugins/rebelsuits/sh_plugin.lua
Normal file
55
gamemodes/darkrp/plugins/rebelsuits/sh_plugin.lua
Normal file
@@ -0,0 +1,55 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
|
||||
local ix = ix
|
||||
local CAMI = CAMI
|
||||
local player_manager = player_manager
|
||||
local LocalPlayer = LocalPlayer
|
||||
local bit = bit
|
||||
local string = string
|
||||
local SetNetVar = SetNetVar
|
||||
local net = net
|
||||
local pairs = pairs
|
||||
|
||||
local PLUGIN = PLUGIN
|
||||
|
||||
PLUGIN.name = "Rebel Suits"
|
||||
PLUGIN.author = "Gr4Ss -- Modified by Hayden"
|
||||
PLUGIN.description = "Adds rebel suits and stuff."
|
||||
|
||||
-- Hand fixes by M!NT
|
||||
for i = 1, 9 do
|
||||
player_manager.AddValidModel("CPModel", "models/wn7new/metropolice/male_0"..i..".mdl")
|
||||
end
|
||||
for i = 1, 7 do
|
||||
player_manager.AddValidModel("CPModel", "models/wn7new/metropolice/female_0"..i..".mdl")
|
||||
end
|
||||
for i = 1, 9 do
|
||||
player_manager.AddValidModel("CPModel", "models/wn7new/metropolice_c8/male_0"..i..".mdl")
|
||||
end
|
||||
for i = 1, 7 do
|
||||
player_manager.AddValidModel("CPModel", "models/wn7new/metropolice_c8/female_0"..i..".mdl")
|
||||
end
|
||||
player_manager.AddValidModel("CPModel", "models/willardnetworks/combine/ordinal.mdl")
|
||||
player_manager.AddValidModel("CPModel", "models/willardnetworks/combine/soldier.mdl")
|
||||
player_manager.AddValidModel("CPModel", "models/willardnetworks/combine/suppressor.mdl")
|
||||
player_manager.AddValidModel("CPModel", "models/willardnetworks/combine/charger.mdl")
|
||||
player_manager.AddValidModel("CPModel", "models/wn/ota_commander.mdl")
|
||||
player_manager.AddValidModel("CPModel", "models/wn/ota_elite.mdl")
|
||||
player_manager.AddValidModel("CPModel", "models/wn/ota_elite_summit.mdl")
|
||||
player_manager.AddValidModel("CPModel", "models/wn/ota_shotgunner.mdl")
|
||||
player_manager.AddValidModel("CPModel", "models/wn/ota_soldier.mdl")
|
||||
player_manager.AddValidModel("CPModel", "models/combine_super_soldier.mdl")
|
||||
player_manager.AddValidModel("CPModel", "models/wn/ota_skylegion.mdl")
|
||||
player_manager.AddValidModel("CPModel", "models/wn/ordinal.mdl")
|
||||
player_manager.AddValidModel("CPModel", "models/willardnetworks/combine/antibody.mdl")
|
||||
|
||||
player_manager.AddValidHands("CPModel", "models/weapons/c_arms_combine.mdl", 0, "00000000")
|
||||
Reference in New Issue
Block a user