Portal SAMP
[Ajuda] pintar objeto - Versão de Impressão

+- Portal SAMP (https://portalsamp.com)
+-- Fórum: SA-MP (https://portalsamp.com/forumdisplay.php?fid=5)
+--- Fórum: Área de suporte (https://portalsamp.com/forumdisplay.php?fid=6)
+--- Tópico: [Ajuda] pintar objeto (/showthread.php?tid=3251)



pintar objeto - spongebob - 25/01/2023

alguem sabe se tem alguma include pra pintar um objeto anexado ou por que meu codigo não funciona?
funciona:
Código PHP:
SetPlayerAttachedObject(playerid31948720.101, -0.00.05.5084.6083.71.01.01.00xFF00FF00);//mudar cor do chapeu branco pra verde 



não funciona:
Código:
myObject = SetPlayerAttachedObject(playerid, 0, 18656, 7, 2.333998, -0.174, 0.0049, 0.0, 0.0, -101.800025, 0.149, 0.1169, 0.234001);

SetPlayerObjectMaterial(playerid, myObject, 0, 19606 , "EnExMarkers" , "enexmarker4-3") ;


não funciona e o objeto fica preto onde eu coloquei pra ficar verde:

Código:
SetPlayerAttachedObject(playerid, 0, 18656, 7, 2.333998, -0.174, 0.0049, 0.0, 0.0, -101.800025, 0.149, 0.1169, 0.234001, 0xFF00FF00);



RE: pintar objeto - CoelhaO_LokaO - 25/01/2023

Alguns objetos funciona outros não apenas os brancos funciona


RE: pintar objeto - MarcosBrazz - 25/01/2023

SetPlayerObjectMaterial é usado em objetos criados com CreatePlayerObject e não com SetPlayerAttachedObject como você está tentando fazer, para "pintar" um objeto anexado utilize os ultimos 2 parametros de SetPlayerAttachedObject
Utilizando seu própio exemplo:
A parte verde é a cor que o objeto anexado será "pintado"

SetPlayerAttachedObject(playerid, 3, 19487, 2, 0.101, -0.0, 0.0, 5.50, 84.60, 83.7, 1.0, 1.0, 1.0, 0xFF00FF00);

Veja: https://www.open.mp/docs/scripting/functions/SetPlayerAttachedObject


RE: pintar objeto - spongebob - 27/01/2023

duvida sanada vlw gente!