[Ajuda] Nгo aparece no servidor - 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] Nгo aparece no servidor (
/showthread.php?tid=362577)
Nгo aparece no servidor -
noobre - 24.07.2012
pawn Код:
enum pInfo
{
pPass,
pLevel,
...
pNome,
};
pawn Код:
public OnPlayerSpawn(playerid)
{
new string[128];
new prisioneiro = 1 + random(49);
PlayerInfo[playerid][pNome] = prisioneiro;
for(new i=0; i<MAX_PLAYERS; i++)
{
format(string,256,"Prisioneiro [%d]",prisioneiro);
SetPlayerChatBubble(i,string, 0xFF0000FF, 100.0, 10000);
// SetPlayerChatBubble(playerid, "Prisioneiro [Nє %d]", 0xFF0000FF, 100.0, 10000, prisioneiro); Esta linha apenas foi apenas um teste , nгo linguem.
}
O Player nгo aparece com o "Prisioneiro X" em cima da cabeзa.
Re: Nгo aparece no servidor -
ViniBorn - 24.07.2012
SetPlayerChatBubble possui parametro relativo a tempo
Aconselho a usar Attach3DTextLabelToPlayer
Re: Nгo aparece no servidor -
leonardo1434 - 24.07.2012
Remover isto
pawn Код:
PlayerInfo[playerid][pNome] = prisioneiro;
Re: Nгo aparece no servidor -
noobre - 24.07.2012
Mas nгo б mesmo possibilidade de usar SetPlayerchatBubble ?
Re: Nгo aparece no servidor -
noobre - 24.07.2012
Quote:
Originally Posted by leonardo1434
Remover isto
pawn Код:
PlayerInfo[playerid][pNome] = prisioneiro;
|
Nгo deu dessa forma.
( Sorry for double post )