13.12.2012, 13:19
Quote:
Lembrando ele nгo irб retornar a nomes, do tipo:
Motorista, Passageiro, ele irб retornar NUMEROS. 0 - Motorista 1- Passageiro 2 - Passageiro 3 - Passageiro .... E assim por diante. |
pawn Код:
if(strcmp(cmdtext, "/teste", true) == 0)
{
new szString[14], iSeat = GetPlayerVehicleSeat(playerid), vish[80];
// How you can discard of your information.
if( iSeat == 12 ) return SendClientMessage(playerid, 0xFFFFFFFF, "An error has prevented us from returning the seat ID.");
if(iSeat == 0) { vish = "Motorista"; }
if(iSeat == 1) { vish = "Carona"; }
if(iSeat >= 2) { vish = "Passageiro"; }
format(szString, sizeof(szString), "Your seat: %s", vish );
SendClientMessage(playerid, 0xFFFFFFFF, szString);
return 1;
}