Jump to content
  • 0

Question

Posted

Imi da un warning la string si nu stiu cum sa il rezolv.

(3074) : warning 203: symbol is never used: "string"

[pawn]stock adtext(string[], adid)

{

    switch(adid)

    {

        case 0:

        {

            for (new i = 0; i < 12; i++)

            {

                //SetObjectMaterialText(adplakat, string, 0, 90, "Impact", 24, 0, -32256, -16777216, 1);

            }

        }

        case 1:

        {

            for (new i = 12; i < 25; i++)

            {

                //SetObjectMaterialText(adplakat, string, 0, 90, "Impact", 24, 0, -32256, COLOR_WHITE, 1);

            }

        }

        case 2:

        {

            for (new i = 25; i < 38; i++)

            {

                //SetObjectMaterialText(adplakat, string, 0, 90, "Arial", 24, 0, -32256, COLOR_BLUE, 1);

            }

        }

    }

}[/pawn]

Ma puteti ajuta ?>

1 answer to this question

Recommended Posts

Posted

Incearca asa

stock adtext(adid)
{
    switch(adid)
    {
        case 0:
        {
            for (new i = 0; i < 12; i++)
            {
                //SetObjectMaterialText(adplakat[i], string, 0, 90, "Impact", 24, 0, -32256, -16777216, 1);
            }
        }
        case 1:
        {
            for (new i = 12; i < 25; i++)
            {
                //SetObjectMaterialText(adplakat[i], string, 0, 90, "Impact", 24, 0, -32256, COLOR_WHITE, 1);
            }
        }
        case 2:
        {
            for (new i = 25; i < 38; i++)
            {
                //SetObjectMaterialText(adplakat[i], string, 0, 90, "Arial", 24, 0, -32256, COLOR_BLUE, 1);
            }
        }
    }
}

35012l1.png.aee1a3398b9bd9f8eec50574d2cd

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.