[AJUDA] GameTextForPlayer -
danielmondello - 29.07.2010
Eae pessoal, to com um problema no meu GameTextForPlayer.
Код:
new str2[256];
format(str2,sizeof(str2),"Cost: %i",hInfo[hid][Cost])
format(str2,sizeof(str2),"Fee: %i",hInfo[hid][Rentcost]])
format(str2,sizeof(str2),"Owned by: %s", hInfo[hid][Name])
GameTextForPlayer(playerid, str2, 1000, 5);
Ja tentei usar um monte de string mas sу aparece a primeira, se eu defino tudo estilo
Код:
format(str2,sizeof(str2),"Cost: %i",hInfo[hid][Cost],"Fee: %i",hInfo[hid][Rentcost],"Owned by: %s", hInfo[hid][Name]);
sу aparece o "COST".
Quero que aparece o cost Fee e o owned tudo no mesmo GameText.
obs: se quizer ajudar ajude mas nao venha mander ler tutoriais ou estudar
Re: [AJUDA] GameTextForPlayer -
[NWD]Tweener_ - 29.07.2010
Tenta assim /Acho
pawn Код:
new str[128];//Ou pode ser menos Cells, testa lб
new str2[128];//Ou pode ser menos Cells, testa lб
new str3[128];//Ou pode ser menos Cells, testa lб
format(str,sizeof(str),"Cost: %i",hInfo[hid][Cost])
format(str2,sizeof(str2),"Fee: %i",hInfo[hid][Rentcost]])
format(str3,sizeof(str3),"Owned by: %s", hInfo[hid][Name])
GameTextForPlayer(playerid, str, 1000, 5);
GameTextForPlayer(playerid, str3, 1000, 5);
GameTextForPlayer(playerid, str4, 1000, 5);
Nem sei mexer muito com isso, por isso nem sei se estб certo, e acho que a parte do GameTextForPlayer estб errada.
Re: [AJUDA] GameTextForPlayer -
danielmondello - 29.07.2010
O problema de usar mais de um GTFP й que ele sу vai mostrar o ultimo
Re: [AJUDA] GameTextForPlayer -
danielmondello - 30.07.2010
new str2[256];
format(str2, sizeof(str2), "Cost: %i ~n~ Fee: %i ~n~ Owned by: %s", hInfo[hid][Cost], hInfo[hid][Rentcost], hInfo[hid][Name]);
GameTextForPlayer(playerid, str2, 1000, 5);
Re: [AJUDA] GameTextForPlayer -
RoamPT - 30.07.2010
Olha o double post, edita o post anterior caraзas.
Re: [AJUDA] GameTextForPlayer -
ipsBruno - 30.07.2010
Assim meu Filho
pawn Код:
new str2[128];
format(str2, sizeof(str2), "Cost: %i ~n~ Fee: %i ~n~ Owned by: %s", hInfo[hid][Cost], hInfo[hid][Rentcost], hInfo[hid][Name]);
GameTextForPlayer(playerid, str2, 1000, 5);