Jump to content

Adicionar roupa ao cj


Recommended Posts

Bom estou com um problema em meu script que não sei qual erro está ocorrendo. a função dele era pra ser para que ele comparasse se um player está com determinada roupa e se estiver depois de um tempo ele trocar a roupa do player para outra... desenvolvi o codigo e do mesmo jeito não funciona e não aparece nada no debug...
Segue o código dele abaixo...

Spoiler

--Jhob--

local tempoCrescer = 30000 --em milisegundos
--Função de crescer cabelo--

function crescer1()
    for i, thePlayer in ipairs ( getElementsByType ( "player" ) ) do
        if getPlayerSkin(thePlayer) == 0 then
            local texture, model = getPedClothes ( thePlayer, 1 )
            if (texture and model == "player_face" and "head") then
                addPedClothes(thePlayer, "tash", "head", 30 )
                outputChatBox("Seu cabelo cresceu", thePlayer, 255, 0, 0, true)
            end 
        end
    end
end
setTimer(crescer1, tempoCrescer, 0)

Server-Side

 

Link to comment
  • Other Languages Moderators

Olá.

Primeiro: sua lógica possui alguns erros, especificamente na linha 11. Deveria ser assim:

if texture and model == "player_face" or model == "head" then

Segundo: a função getPlayerSkin está obsoleta. Use getElementModel ao invés disso.

  • Thanks 1
Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...