SA-MP Forums Archive
[AJUDA] TextDrawEditor1.0 - 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] TextDrawEditor1.0 (/showthread.php?tid=289447)



[AJUDA] TextDrawEditor1.0 - .CrazZy._.[De] - 11.10.2011

Eae pessoal, bom й o seguinte eu crio um Textdraw no TextDrawEditor em cima do radar, sу que tipo eu jб tenho um textdraw no meu gm em baixo do radar, dae Quando eu vou boto o textdraw feito no TextDrawEditor que criei, dб erro.. eu entro no meu server e nгo aparece oquк eu criei, sу aparece o que tб em baixo do radar mesmo, jб criei outros textdraw, e da o mesmo erro ¬¬', Alguйm pode ajudar como eu arrumo ? Agradeзo desde de jб *-*.


Re: [AJUDA] TextDrawEditor1.0 - Vai_Besta - 11.10.2011

Poste como vc esta usando


Re: [AJUDA] TextDrawEditor1.0 - [O.z]Caroline - 11.10.2011

poste o textdraw PRONTO aqui.


Re: [AJUDA] TextDrawEditor1.0 - .CrazZy._.[De] - 11.10.2011

pawn Код:
//Tou usando esse em baixo do radar:
new Text:Textdraw0;
new Text:Textdraw1;
new Text:Textdraw2;
new Text:Textdraw3;

//ongamemodeinit
    Textdraw0 = TextDrawCreate(541.000000, 405.000000, "Rtd");
    TextDrawBackgroundColor(Textdraw0, 255);
    TextDrawFont(Textdraw0, 1);
    TextDrawLetterSize(Textdraw0, 0.559998, 2.599998);
    TextDrawColor(Textdraw0, 0xFFFF00AA);
    TextDrawSetOutline(Textdraw0, 1);
    TextDrawSetProportional(Textdraw0, 1);

    Textdraw1 = TextDrawCreate(584.000000, 408.000000, "v3.2");
    TextDrawBackgroundColor(Textdraw1, 255);
    TextDrawFont(Textdraw1, 1);
    TextDrawLetterSize(Textdraw1, 0.509998, 2.299998);
    TextDrawColor(Textdraw1, 0xFFFFFFAA);
    TextDrawSetOutline(Textdraw1, 1);
    TextDrawSetProportional(Textdraw1, 1);

    Textdraw2 = TextDrawCreate(518.000000, 425.000000, "www.rtd-equipe.blogspot.com");
    TextDrawBackgroundColor(Textdraw2, 255);
    TextDrawFont(Textdraw2, 1);
    TextDrawLetterSize(Textdraw2, 0.209999, 1.100000);
    TextDrawColor(Textdraw2, 0xFFFFFFAA);//-1
    TextDrawSetOutline(Textdraw2, 1);
    TextDrawSetProportional(Textdraw2, 1);



    txtTimeDisp = TextDrawCreate(558.000000, 436.000000,"00:00");
    TextDrawBackgroundColor(txtTimeDisp, 255);
    TextDrawFont(txtTimeDisp, 1);
    TextDrawLetterSize(txtTimeDisp, 0.209999, 1.000000);
    TextDrawColor(txtTimeDisp, -1);
    TextDrawSetOutline(txtTimeDisp, 0);
    TextDrawSetProportional(txtTimeDisp, 1);
    TextDrawSetShadow(txtTimeDisp, 1);

    for(new i; i < MAX_PLAYERS; i ++)
    {
        if(IsPlayerConnected(i))
        {
            TextDrawShowForPlayer(i, Textdraw0);
            TextDrawShowForPlayer(i, Textdraw1);
            TextDrawShowForPlayer(i, Textdraw2);
            TextDrawShowForPlayer(i, Textdraw3);
        }
    }

//connect
    TextDrawShowForPlayer(playerid, Textdraw0);
    TextDrawShowForPlayer(playerid, Textdraw1);
    TextDrawShowForPlayer(playerid, Textdraw2);
    TextDrawShowForPlayer(playerid, Textdraw3);

------------------------------------------------------------
//e esse й oque eu criei no textdraw editor, que nгo tou conseguindo botar:
Textdraw0 = TextDrawCreate(496.000000, 103.000000, "New Textdraw");
TextDrawBackgroundColor(Textdraw0, 255);
TextDrawFont(Textdraw0, 3);
TextDrawLetterSize(Textdraw0, 0.500000, 1.000000);
TextDrawColor(Textdraw0, -65281);
TextDrawSetOutline(Textdraw0, 0);
TextDrawSetProportional(Textdraw0, 1);
TextDrawSetShadow(Textdraw0, 1);



Re: [AJUDA] TextDrawEditor1.0 - [O.z]Caroline - 11.10.2011

pawn Код:
new Text:Textdraw0;

// ONGAMEMODEINIT
Textdraw0 = TextDrawCreate(496.000000, 103.000000, "New Textdraw");
TextDrawBackgroundColor(Textdraw0, 255);
TextDrawFont(Textdraw0, 3);
TextDrawLetterSize(Textdraw0, 0.500000, 1.000000);
TextDrawColor(Textdraw0, -65281);
TextDrawSetOutline(Textdraw0, 0);
TextDrawSetProportional(Textdraw0, 1);
TextDrawSetShadow(Textdraw0, 1);



// ONPLAYERCONNECT

TextDrawShowForPlayer(playerid, Textdraw0);
\/


Re: [AJUDA] TextDrawEditor1.0 - .CrazZy._.[De] - 11.10.2011

Quote:
Originally Posted by [O.z]Caroline
Посмотреть сообщение
pawn Код:
new Text:Textdraw0;

// ONGAMEMODEINIT
Textdraw0 = TextDrawCreate(496.000000, 103.000000, "New Textdraw");
TextDrawBackgroundColor(Textdraw0, 255);
TextDrawFont(Textdraw0, 3);
TextDrawLetterSize(Textdraw0, 0.500000, 1.000000);
TextDrawColor(Textdraw0, -65281);
TextDrawSetOutline(Textdraw0, 0);
TextDrawSetProportional(Textdraw0, 1);
TextDrawSetShadow(Textdraw0, 1);



// ONPLAYERCONNECT

TextDrawShowForPlayer(playerid, Textdraw0);
\/
Tipo.. eu quero deixar os 2 textdraw no gm , entende ?


Re: [AJUDA] TextDrawEditor1.0 - Vai_Besta - 11.10.2011

Vocк ta usando o mesmo nome para 2 textdraw, ai da erro


Re: [AJUDA] TextDrawEditor1.0 - .CrazZy._.[De] - 11.10.2011

Quote:
Originally Posted by Vai_Besta
Посмотреть сообщение
Vocк ta usando o mesmo nome para 2 textdraw, ai da erro
Hm.. agora Raciocinei.. mudei ake e deu certo vlw ae Pessoal (: