ajobr Posted August 1, 2020 Share Posted August 1, 2020 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 androksi Posted August 2, 2020 Other Languages Moderators Share Posted August 2, 2020 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. 1 Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now