[AJUDA] Atualizar 3DTextLabel - 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] Atualizar 3DTextLabel (
/showthread.php?tid=274393)
[AJUDA] Atualizar 3DTextLabel -
Leo_Lost - 05.08.2011
Criei 1 Organizaзao Nova No GM Do ThugLife Fico Tudo Certim mas tipo Quando Alguem entra de Lider na Organizaзao
Fica Marcando o Nome da Pessoa no /orgs, mas ae ele sai e entra no Server Ja nao Fica mas o nome dela mas ela contina de lider e so Essa Organizaзao que eu criei que da isso as outros estao tudo normal.
Код:
format(string, sizeof(string), "{66CD00}PCC: (23){FFE4E1}%s", InfoOrg[23][Lider]);
SendClientMessage(playerid, COR_PCC, string);
Re: [AJUDA] Atualizar 3DTextLabel -
RockFire - 05.08.2011
Update3DTextLabel
Re: [AJUDA] Atualizar 3DTextLabel -
Leo_Lost - 05.08.2011
Pra colocar no lugar do 3DTextLabel neh?
Re: [AJUDA] Atualizar 3DTextLabel -
ViniBorn - 05.08.2011
Nгo, vocк usa isso pra atualizar os jб existentes.
Re: [AJUDA] Atualizar 3DTextLabel -
Leo_Lost - 11.08.2011
So nao intendo aonde coloco o Update3DTextLabel.
Re: [AJUDA] Atualizar 3DTextLabel -
JonathanFeitosa - 11.08.2011
pawn Код:
// OnGameModeInit
SetTimer("LiderJFS", 10000, true);
// Final GameMode:
public LiderJFS()
{
new InfoPCC;
Delete3DTextLabel(InfoPCC);
InfoPCC = format(string, sizeof(string), "{66CD00}PCC: (23){FFE4E1}%s", InfoOrg[23][Lider]);
SendClientMessage(playerid, COR_PCC, string);
return true;
}