[Ajuda] Textura nгo carrega no objeto
#1

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); 
Reply
#2

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;

Reply
#3

Entendi vlw
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)