Portal SAMP
textraw help - Versão de Impressão

+- Portal SAMP (https://portalsamp.com)
+-- Fórum: SA-MP (https://portalsamp.com/forumdisplay.php?fid=5)
+--- Fórum: Área de suporte (https://portalsamp.com/forumdisplay.php?fid=6)
+--- Tópico: textraw help (/showthread.php?tid=731)



textraw help - Sam2018 - 03/02/2021

as estatísticas não são mostradas a todos os jogadores, por quê?
como fazer com que todos os vejam textdraw ?




Código:
new PlayerText:Stat[MAX_PLAYERS];

new PlayerText:FPG[MAX_PLAYERS];
public OnPlayerConnect(playerid)
{

    HCB(playerid);


public OnPlayerSpawn(playerid)
{

PlayerTextDrawShow(playerid, FPG[playerid]);
PlayerTextDrawShow(playerid, Stat[playerid]);

return;1
forward UpdatePlayer(playerid);
public UpdatePlayer(playerid)
{
new sstring[256];
format(sstring,sizeof(sstring),"~r~~h~score: ~w~%d ~r~~h~kills: ~w~%d ~r~~h~deaths: ~w~%d ~r~~h~vip: ~w~%d ~r~~h~Exp: ~w~%d ~r~~h~HeadShoot: ~w~%d ~r~~h~rank: ~w~%s",GetPlayerScore(playerid),PlayerInfo[playerid][Kills],
PlayerInfo[playerid][Deaths],PlayerInfo[playerid][vip],PlayerInfo[playerid][XPX],PlayerInfo[playerid][HST],GetXP(playerid));
    PlayerTextDrawSetString(playerid,Stat[playerid], sstring);

new FPSSS = GetPlayerDrunkLevel(playerid), fps;
if (FPSSS < 100) { SetPlayerDrunkLevel(playerid, 2000);
} else {
if (FPSSS != FPSS[playerid])
{
  fps = FPSS[playerid] - FPSSS;
  if (fps > 0 && fps < 200) FPS[playerid] = fps; FPSS[playerid] = FPSSS;
  }
}// BY Tribisk
new Fstring[60];
format(Fstring,sizeof(Fstring),"~r~~h~fps:~w~ %d  ~r~~h~Ping: ~w~%d",FPS[playerid],GetPlayerPing(playerid));
    PlayerTextDrawSetString(playerid,FPG[playerid], Fstring);
return 1;
}

stock HCB(playerid)
{

Stat[playerid] = CreatePlayerTextDraw(playerid, 302.588287, 426.416839, "_");
PlayerTextDrawLetterSize(playerid, Stat[playerid], 0.235881, 0.958333);
PlayerTextDrawAlignment(playerid, Stat[playerid], 2);
PlayerTextDrawColor(playerid, Stat[playerid], -1);
PlayerTextDrawSetShadow(playerid, Stat[playerid], 0);
PlayerTextDrawSetOutline(playerid, Stat[playerid], 1);
PlayerTextDrawBackgroundColor(playerid, Stat[playerid], 51);
PlayerTextDrawFont(playerid, Stat[playerid], 2);
PlayerTextDrawSetProportional(playerid, Stat[playerid], 1);

FPG[playerid] = CreatePlayerTextDraw(playerid, 547.765014, 28.000236, "_");
PlayerTextDrawLetterSize(playerid, FPG[playerid], 0.155411, 1.284999);
PlayerTextDrawAlignment(playerid, FPG[playerid], 1);
PlayerTextDrawColor(playerid, FPG[playerid], -1);
PlayerTextDrawSetShadow(playerid, FPG[playerid], 0);
PlayerTextDrawSetOutline(playerid, FPG[playerid], 1);
PlayerTextDrawBackgroundColor(playerid, FPG[playerid], 51);
PlayerTextDrawFont(playerid, FPG[playerid], 2);
PlayerTextDrawSetProportional(playerid, FPG[playerid], 2);
return 1;
}



RE: textraw help - xbruno1000x - 04/02/2021

Corrija sua mensagem de forma a torná-la compreensível, não entendi o problema.


RE: textraw help - Sam2018 - 04/02/2021

(04/02/2021 01:00)xbruno1000x Escreveu: Corrija sua mensagem de forma a torná-la compreensível, não entendi o problema.
Olá, tenho um problema com o textdraw não funciona e não é mostrado a todos os jogadores


quando eles se conectam, apenas o textdraw é mostrado para um único jogador. Eu quero o desenho de textdrae que
todo o mundo podem ver


RE: textraw help - DollyN - 05/02/2021

(04/02/2021 01:31)Sam2018 Escreveu:
(04/02/2021 01:00)xbruno1000x Escreveu: Corrija sua mensagem de forma a torná-la compreensível, não entendi o problema.
Olá, tenho um problema com o textdraw não funciona e não é mostrado a todos os jogadores


quando eles se conectam, apenas o textdraw é mostrado para um único jogador. Eu quero o desenho de textdrae que
todo o mundo podem ver

Man é porque tu colocou Player TextDraw coloca Global la no seu editor ai vai e exporta novamente e tenta ai vai dar dboa faz esse teste ai pra tu ver...