09.07.2010, 10:14
MoO! I need some helps....
I wanna make it so that it says "You have entered a Vehicle (Vehicle)
MooOo! in advanced xD
I wanna make it so that it says "You have entered a Vehicle (Vehicle)
pawn Код:
public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
SendClientMessage(playerid, COLOR_INTERFACE, "You have entered a Vehicle (%s)", vehicle);
return 1;
}
public OnPlayerExitVehicle(playerid, vehicleid)
{
SendClientMessage(playerid, COLOR_INTERFACE, "You have left a Vehicle (%s)", vehicle);
return 1;
}