[AJUDA] GameTextForPlayer
#1

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
Reply
#2

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.
Reply
#3

O problema de usar mais de um GTFP й que ele sу vai mostrar o ultimo
Reply
#4

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);
Reply
#5

Olha o double post, edita o post anterior caraзas.
Reply
#6

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);
Reply


Forum Jump:


Users browsing this thread: 3 Guest(s)