SA-MP Forums Archive
[Ajuda] Textura nгo carrega no objeto - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Textura nгo carrega no objeto (/showthread.php?tid=658389)



Textura nгo carrega no objeto - TwoSimsLight - 03.09.2018

Estou tentando usar textura de neve nos terrenos do interior de los santos, mas o objeto carrega sem a textura :/

como faзo pra arrumar? cуdigo que usei: (ignorem os x y z, foi apenas pra testar)

PHP код:
 CreateDynamicObject(131471945.10156, -325.2656329.92656,   356.858400.000003.14159);
         
SetObjectMaterial(1314703902"libertyhi3""mp_snow"0xFFFFFFFF); 



Re: Textura nгo carrega no objeto - Domingues - 03.09.2018

Quote:
Originally Posted by TwoSimsLight
Посмотреть сообщение
Estou tentando usar textura de neve nos terrenos do interior de los santos, mas o objeto carrega sem a textura :/

como faзo pra arrumar? cуdigo que usei: (ignorem os x y z, foi apenas pra testar)

PHP код:
 CreateDynamicObject(131471945.10156, -325.2656329.92656,   356.858400.000003.14159);
         
SetObjectMaterial(1314703902"libertyhi3""mp_snow"0xFFFFFFFF); 
Vocк estб fazendo errado, veja esse exemplo da wiki

PHP код:
public OnPlayerCommandText(playerid,cmdtext[])
{
    if(!
strcmp(cmdtext,"/mycommand",true))
    {
        new 
Float:XFloat:YFloat:Z;
        new 
myobject;
        
GetPlayerPos(playeridXYZ);
        
myobject CreateObject(19371XYZ+0.50.00.00.0300.0);
        
SetObjectMaterial(myobject019341"egg_texts""easter_egg01"0xFFFFFFFF);
        
//Replaces the texture of our object with the texture of object 19341
        
return 1;
    }
    return 
0;




Re: Textura nгo carrega no objeto - TwoSimsLight - 03.09.2018

Entendi vlw