10.05.2010, 12:58
Quote:
Originally Posted by russooooo
Quote:
pawn Код:
Код:
GameTextForPlayer(playerid, const string[], time, style) playerid - id do jogador que entra no veнculo e mensagem lhe serб mostrada. const string[] - mensagem/String que serб mostrada no centro do monitor com a funзгo GameTextForPlayer. time - tempo em milisegundos. style - o estilo do texto em que serб mostrado. Caso queiras tambйm saber tem na wiki este exemplo. pawn Код:
|
ache pequeno erro:
pawn Код:
public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
new string[50], idvehicle;
GetVehicleModel(idvehicle);
format(string, sizeof(string), "Vocк entrou no Veiculo (ID): %i", idvehicle);
GameTextForPlayer(playerid, string, 3000, 4);
return 1;
}