Zaloguj się by uzyskać pełen dostęp. Nie masz jeszcze konta? Założ je już teraz w kilka sekund.
GTAONLINE.PL
Tematy otagowane jako: tff
1. [RACE:DM] Kolorowy tag - tff
Witam. Znalaz?em na internecie skrypt, kt?ry jak twierdzi autor, powinien doda? nam tag przed nickiem kt?ry b?dzie zmiani? kolory.
Problem w tym, ?e nie napisa? jak to dzia?a.
clanPlayers[] = {
    
"TFG~",
    
"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,"TFG~/"..getPlayerName(source))  
    
end 
end
,1000,0)

function 
isInClan(player
    
local name getPlayerName(player)
    for 
i,v in ipairs (clanPlayers) do
        if 
name == clanPlayers[1then
            
return true
        end
    end
    
return false
end