Jump to content

Question

Posted

Salut , am facut un textdraw ca sa apara la tutorial. Am incercat sa il fac sa apara doar la tutorial dar nu imi reuseste ma puteti ajuta? cum sa il fac sa apara doar la tutorial?

Textdraw11 = TextDrawCreate(266.000000, 159.000000, "Tutorial");
	TextDrawBackgroundColor(Textdraw11, -1);
	TextDrawFont(Textdraw11, 3);
	TextDrawLetterSize(Textdraw11, 0.469999, 1.299999);
	TextDrawColor(Textdraw11, -16776961);
	TextDrawSetOutline(Textdraw11, 1);
	TextDrawSetProportional(Textdraw11, 1);

3 answers to this question

Recommended Posts

Posted
public OnPlayerConnect( playerid )
{
    TextDrawShowForPlayer( playerid, Textdraw11 );

    return 1;
}

Posted

pui la un callback

if(TutTime[playerid] >= 1)
{
        Textdraw11 = TextDrawCreate(266.000000, 159.000000, "Tutorial");
	TextDrawBackgroundColor(Textdraw11, -1);
	TextDrawFont(Textdraw11, 3);
	TextDrawLetterSize(Textdraw11, 0.469999, 1.299999);
	TextDrawColor(Textdraw11, -16776961);
	TextDrawSetOutline(Textdraw11, 1);
	TextDrawSetProportional(Textdraw11, 1);
}

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.