27.07.2015, 05:51
Intao Como Pode Ver
format(STR, sizeof(STR), "~b~Nome~w~ : ~y~%s", TvNome);
PlayerTextDrawSetString(playerid, TV_SPEC[1][playerid], STR);
Eu Coloquei Para Endicar o nome da Pessoa quando da /tv Mais Desaparece A Text Oque EU Posso Fazer Para Nao Desaparecer ,
format(STR, sizeof(STR), "~b~Nome~w~ : ~y~%s", TvNome);
PlayerTextDrawSetString(playerid, TV_SPEC[1][playerid], STR);
Eu Coloquei Para Endicar o nome da Pessoa quando da /tv Mais Desaparece A Text Oque EU Posso Fazer Para Nao Desaparecer ,
PHP код:
CMD:tv(playerid,params[])
{
if(!TV[playerid])
{
new id, string[124], TvNome[24], STR[12];
{
if(sscanf(params,"d",id)) return SendClientMessage(playerid,-1,"Uso: /tv [ID]");
GetPlayerName(id, TvNome, 24);
}
///////////////////////////////////////////////////////////////////////////////////////////
format(STR, sizeof(STR), "~b~Nome~w~ : ~y~%s", TvNome);
PlayerTextDrawSetString(playerid, TV_SPEC[1][playerid], STR);
///////////////////////////////////////////////////////////////////////////////////////////
GameTextForPlayer(playerid, "~w~ TV~n~~r~ On", 5000, 6);
PlayerPlaySound(playerid, 1145, 0.0, 0.0, 0.0);
TogglePlayerSpectating(playerid, 1);
PlayerSpectatePlayer(playerid, id);
format(string, sizeof(string), "Vocк Esta De TV Em {00BFFF}(%s)", TvNome);
SendClientMessage(playerid, -1, string);
PlayerTextDrawShow(playerid, TV_SPEC[0][playerid]);
PlayerTextDrawShow(playerid, TV_SPEC[1][playerid]);
PlayerTextDrawShow(playerid, TV_SPEC[2][playerid]);
PlayerTextDrawShow(playerid, TV_SPEC[3][playerid]);
PlayerTextDrawShow(playerid, TV_SPEC[4][playerid]);
TV[playerid] = true;
}
else
{
TogglePlayerSpectating(playerid, 0);
GameTextForPlayer(playerid, "~w~ TV~n~~r~ Off", 5000, 6);
PlayerPlaySound(playerid, 1145, 0.0, 0.0, 0.0);
PlayerTextDrawHide(playerid, TV_SPEC[0][playerid]);
PlayerTextDrawHide(playerid, TV_SPEC[1][playerid]);
PlayerTextDrawHide(playerid, TV_SPEC[2][playerid]);
PlayerTextDrawHide(playerid, TV_SPEC[3][playerid]);
PlayerTextDrawHide(playerid, TV_SPEC[4][playerid]);
GameTextForPlayer(playerid,"TV:~r~OFF",2000,6);
TV[playerid] = false;
}
return 1;
}