01.10.2009, 16:41
pawn Код:
if(strcmp(cmd, "/start", true) == 0)
{
if (mission2[playerid] == 1)
{
new vehicle;
vehicle = GetPlayerVehicleID(playerid);
if(GetVehicleModel(vehicle ) == 548) // lmao you hade 596 thats lspd cop car cargobob id is 548
{
SendClientMessage(playerid,NICESKY,"[MISSION] Good job. Now fly the Cargobob to the Big Ear.");
SendClientMessage(playerid,NICESKY,"[MISSION] Once there, use /loadbombs to load the bombs.");
}
else
{
SendClientMessage(playerid,NICESKY,"[MISSION] Wrong vehicle.");
}
}
return 1;
}