Portal SAMP
[Ajuda] Como adicionar outro CreateDynamicObject - 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] Como adicionar outro CreateDynamicObject (/showthread.php?tid=745)



Como adicionar outro CreateDynamicObject - ruando7 - 06/02/2021

Alguém sabe como adicionar outro DynamicObject? sistema de plantação de drogas

Código:
Plant_Refresh(plantid)
{
    if (plantid != -1 && PlantData[plantid][plantExists])
    {
        static
            string[128];

        if (IsValidDynamicObject(PlantData[plantid][plantObject]))
            DestroyDynamicObject(PlantData[plantid][plantObject]);

        if (IsValidDynamic3DTextLabel(PlantData[plantid][plantText3D]))
            DestroyDynamic3DTextLabel(PlantData[plantid][plantText3D]);

        PlantData[plantid][plantObject] = CreateDynamicObject(3409, PlantData[plantid][plantPos][0], PlantData[plantid][plantPos][1], PlantData[plantid][plantPos][2] - 1.80, 0.0, 0.0, PlantData[plantid][plantPos][3], PlantData[plantid][plantWorld], PlantData[plantid][plantInterior]);

        format(string, sizeof(string), "[Planta %d]\n{FFFFFF}%s - %d/%d Gramas", plantid, Plant_GetType(PlantData[plantid][plantType]), PlantData[plantid][plantDrugs], Plant_MaxGrams(PlantData[plantid][plantType]));
          PlantData[plantid][plantText3D] = CreateDynamic3DTextLabel(string, COLOR_LIGHTGREEN, PlantData[plantid][plantPos][0], PlantData[plantid][plantPos][1], PlantData[plantid][plantPos][2], 10.0, INVALID_VEHICLE_ID, INVALID_PLAYER_ID, 0, PlantData[plantid][plantWorld], PlantData[plantid][plantInterior]);
    
        }
    return 1;
}



RE: Como adicionar outro CreateDynamicObject - xbruno1000x - 08/02/2021

Código:
CreateDynamicObject(modelid, Float:x, Float:y, Float:z, Float:rx, Float:ry, Float:rz, worldid = -1, interiorid = -1, playerid = -1, Float:streamdistance = STREAMER_OBJECT_SD, Float:drawdistance = STREAMER_OBJECT_DD, areaid = -1, priority = 0);


Fonte:
Wiki Streamer -> https://github.com/samp-incognito/samp-streamer-plugin/wiki/Natives-(Objects)