clanPlayers[] = {
"3R//",
"Name2",
"Name3"
}
local colorCodeRed[] = {255,0,0}
local colorCodeGreen[] = {0,255,0}
local colorCodeBlue[] = {0,0,255}
setTimer(function()
if isInClan(source) == true then
setPlayerName(source,"3R//"..getPlayerName(source))
end
end,1000,0)
function isInClan(player)
local name = getPlayerName(player)
for i,v in ipairs (clanPlayers) do
if name == clanPlayers[1] then
return true
end
end
return false
end