SA-MP Forums Archive
[Ajuda] Sу o ID 0 pode ver :S - 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] Sу o ID 0 pode ver :S (/showthread.php?tid=483287)



Sу o ID 0 pode ver :S - gusgutos661 - 25.12.2013

Pessoal to com essa TextDraw Aqui:


Porem eu ia usar Text...ShowForAll mas, nгo porque ela atualiza o numero de kills etc.

Entao usei tudo que achei na internet, e usei isso no ongamemodeInit

for(new i; i < MAX_PLAYERS; i++)
{


Stats[2][i] = TextDrawCreate(578.000000, 435.000000, "08:45");
TextDrawBackgroundColor(Stats[2][i], 255);
TextDrawFont(Stats[2][i], 2);
TextDrawLetterSize(Stats[2][i], 0.240000, 1.199999);
TextDrawColor(Stats[2][i], -1);
TextDrawSetOutline(Stats[2][i], 1);
TextDrawSetProportional(Stats[2][i], 1);

Stats[3][i] = TextDrawCreate(610.000000, 437.000000, "35");
TextDrawBackgroundColor(Stats[3][i], 255);
TextDrawFont(Stats[3][i], 2);
TextDrawLetterSize(Stats[3][i], 0.160000, 0.899999);
TextDrawColor(Stats[3][i], -65281);
TextDrawSetOutline(Stats[3][i], 1);
TextDrawSetProportional(Stats[3][i], 1);

Stats[4][i] = TextDrawCreate(475.000000, 435.000000, "~p~TEMPO CONECTADO:");
TextDrawBackgroundColor(Stats[4][i], 255);
TextDrawFont(Stats[4][i], 2);
TextDrawLetterSize(Stats[4][i], 0.240000, 1.199999);
TextDrawColor(Stats[4][i], -1);
TextDrawSetOutline(Stats[4][i], 1);
TextDrawSetProportional(Stats[4][i], 1);

Mas nгo adianta, sу aparece pro ID 0

Alguem sabe como ajudar?


Re: Sу o ID 0 pode ver :S - PT - 25.12.2013

https://sampwiki.blast.hk/wiki/CreatePlayerTextDraw


Re: Sу o ID 0 pode ver :S - BodyBuilder - 25.12.2013

Como meteste o fundo preto? :S

Qual й o comando?


Re: Sу o ID 0 pode ver :S - Kyl3 - 25.12.2013

https://sampwiki.blast.hk/wiki/PlayerTextDrawUseBox


Re: Sу o ID 0 pode ver :S - StreetGT - 25.12.2013

1є -> declara antes new Stats[MAX_PLAYERS][SIZE];
logo vai ficar Stats[i][2] onde antes era Stats[2][i]
Nгo te esqueзas que vais ter de mudar tudo.

2є -> for(new i = 0; i < MAX_PLAYERS; i++)

3є -> cria as textdraw quando o jogador connecta, ou faz login, logo, ja nao vais precisar do loop anterior e vai ficar tipo Stats[playerid][2].