This is what line 437 reads and the rest of the function(I think) in the showteamtabs.lua thing.
[lua]for k,v in ipairs(RPExtraTeams) do
if LocalPlayer():Team() ~= k then
local nodude = true
if v.admin == 1 and not LocalPlayer():IsAdmin() then
nodude = false
end
if v.admin > 1 and not LocalPlayer():IsSuperAdmin() then
nodude = false
end
if (type(v.NeedToChangeFrom) == "number" and LocalPlayer():Team() ~= v.NeedToChangeFrom) or (type(v.NeedToChangeFrom) == "table" and not table.HasValue(v.NeedToChangeFrom, LocalPlayer():Team())) then
nodude = false
end
if nodude then
local weps = "no extra weapons"
if #v.Weapons > 0 then
weps = table.concat(v.Weapons, "
")
end
if v.Vote then
local condition = ((v.admin == 0 and LocalPlayer():IsAdmin()) or (v.admin == 1 and LocalPlayer():IsSuperAdmin()) or LocalPlayer():GetNWBool(“Priv”…v.command))
AddIcon(v.model, v.name, v.Des, weps, “/vote”…v.command, condition, “/”…v.command)
else
AddIcon(v.model, v.name, v.Des, weps, “/”…v.command)
end
end
end[/lua]
Function thing…