Textdraw isnt updating
#5

Quote:
Originally Posted by Dwane
Посмотреть сообщение
It does, if inside that callback, you display in a formated string the SeaScore.
I did this:
pawn Код:
public ScoreUpdate() {
    TextDrawDestroy(Text:SeaScoreTD);
    TextDrawDestroy(Text:SfoScoreTD);
    format(ScoreTextSin,128,"Seals: %i",SeaScore);
    SeaScoreTD = TextDrawCreate(425,348,ScoreTextSin);
    TextDrawFont(SeaScoreTD,1);
    TextDrawLetterSize(SeaScoreTD,0.7,2);
    TextDrawColor(SeaScoreTD,0xff0000FF);
    TextDrawSetOutline(SeaScoreTD,false);
    TextDrawSetProportional(SeaScoreTD,true);
    TextDrawSetShadow(SeaScoreTD,1);
    format(ScoreTextSfo,128,"Speical Forces: %i",SfoScore);
    SfoScoreTD = TextDrawCreate(425,367,ScoreTextSfo);
    TextDrawFont(SfoScoreTD,1);
    TextDrawLetterSize(SfoScoreTD,0.7,2);
    TextDrawColor(SfoScoreTD,0x0000FFFF);
    TextDrawSetOutline(SfoScoreTD,false);
    TextDrawSetProportional(SfoScoreTD,true);
    TextDrawSetShadow(SfoScoreTD,1);
    TextDrawShowForAll(Text:SfoScoreTD);
    TextDrawShowForAll(Text:SeaScoreTD);  }
And its working.. but isnt it a total waste of RAM usage? and its stupid to re-create the textdraw all the time isnt it?
Reply


Messages In This Thread
Textdraw isnt updating - by nuriel8833 - 03.12.2012, 16:28
Re: Textdraw isnt updating - by Konstantinos - 03.12.2012, 16:31
Re: Textdraw isnt updating - by nuriel8833 - 03.12.2012, 16:38
Re: Textdraw isnt updating - by Konstantinos - 03.12.2012, 16:42
Re: Textdraw isnt updating - by nuriel8833 - 03.12.2012, 16:57
Re: Textdraw isnt updating - by Konstantinos - 03.12.2012, 17:02
Re: Textdraw isnt updating - by nuriel8833 - 03.12.2012, 17:09
Re: Textdraw isnt updating - by Konstantinos - 03.12.2012, 17:14

Forum Jump:


Users browsing this thread: 1 Guest(s)