[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.000000, 424.000000, "00,00,00");
TextDrawBackgroundColor(Rodape[4], 255);
TextDrawFont(Rodape[4], 1);
TextDrawLetterSize(Rodape[4], 0.389999, 1.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(STR, 100, "%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", 1000, true);
Final do GM
PHP код:
forward AtualizarCash();
public AtualizarCash()
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
new String[64];
format(String, sizeof(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