17.08.2013, 11:19
Quote:
I tried to add a message when I enter vehicle to see if it will send a message which will say that its a truck. It didn't send anything and other code under onplayerentervehicle wasn't working because of that stock.
|
pawn Код:
public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
new vehid[128];
format(vehid,sizeof(vehid),"Your are in vehicle ID: %d",vehicleid);
SendClientMessage(playerid,-1,vehid);
return 1;
}