SA-MP Forums Archive
[Ajuda] TextDraws Funзao - 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] TextDraws Funзao (/showthread.php?tid=576740)



TextDraws Funзao - JuniorTheDM - 06.06.2015

Como Que Eu Posso Fazer , NO Lugar DO 00,00,00 Aparecer Os Cash q A Funзao й [pCasher]
PHP код:
    Rodape[4] = TextDrawCreate(21.000000424.000000"00,00,00");
    
TextDrawBackgroundColor(Rodape[4], 255);
    
TextDrawFont(Rodape[4], 1);
    
TextDrawLetterSize(Rodape[4], 0.3899991.000000);
    
TextDrawColor(Rodape[4], -1);
    
TextDrawSetOutline(Rodape[4], 0);
    
TextDrawSetProportional(Rodape[4], 1);
    
TextDrawSetShadow(Rodape[4], 1);
    
TextDrawSetSelectable(Rodape[4], 0); 



Re: TextDraws Funзao - Lуs - 06.06.2015




Re: TextDraws Funзao - ModaLOKO - 06.06.2015

pawn Код:
new STR[100];
        //
        format(STR, 100, "%d",[pCasher]);
        TextDrawSetString(Rodape,STR);
Usa isso como base...


Re: TextDraws Funзao - JuniorTheDM - 06.06.2015

nao consegui fazer nem umas das opзaoes me ajudem


Re: TextDraws Funзao - ReyMysterio - 06.06.2015

Qual й a variбvel completa do Cash ?


Re: TextDraws Funзao - JuniorTheDM - 06.06.2015

PlayerInfo[playerid][pCasher] = 0;


Re: TextDraws Funзao - ModaLOKO - 06.06.2015

Quote:
Originally Posted by ModaLOKO
Посмотреть сообщение
pawn Код:
new STR[100];
        //
        format(STR, 100, "%d",[pCasher]);
        TextDrawSetString(Rodape,STR);
Usa isso como base...
PHP код:
        format(STR100"%d",PlayerInfo[playerid][pCasher]);
        
TextDrawSetString(Rodape,STR); 



Re: TextDraws Funзao - JuniorTheDM - 06.06.2015

Moda mais aonde eu coloco Isso ? =3


Re: TextDraws Funзao - ReyMysterio - 06.06.2015

Coloca em OnGameModeInit
PHP код:
SetTimer("AtualizarCash"1000true); 
Final do GM
PHP код:
forward AtualizarCash();
public 
AtualizarCash()
{
    for(new 
0MAX_PLAYERSi++)
    {
        if(
IsPlayerConnected(i))
        {
            new 
String[64];
            
format(Stringsizeof(String), "%d"PlayerInfo[playerid][pCasher]);
            
TextDrawSetString(Rodape[4], String);
        }
    }

Tem aqui um bom exemplo


Re: TextDraws Funзao - ModaLOKO - 06.06.2015

agora se vocк nгo souber montar ta dificil em amigo kkkk