26.08.2010, 22:51
Quote:
@Bieel ERRADO! se destroir ele nгo vai aparecer Mais!.
@topic: tenta. pawn Код:
|
pawn Код:
public OnGameModeInit()
{
SetTimer("chamar",100,true);
return 1;
}
forward chamar(playerid)
public chamar(playerid)
{
new string[256];
format(string, 256, " ~w~Kills:~r~ %d ~w~Deaths:~r~ %d ~w~Level:~r~ %d ~w~Exp:~r~ %d ~w~Estudos:~r~ %d", pap_CarregarInt(playerid, "Matou"), pap_CarregarInt(playerid, "Morreu"), pap_CarregarInt(playerid, "Level"), pap_CarregarInt(playerid, "Experiencia"), pap_CarregarInt(playerid, "Estudos"));
TextDrawSetString(Infos, string);
TextDrawHideForPlayer(playerid, Infos);
TextDrawShowForPlayer(playerid, Infos);
return 1;
}