1
General Discussion / Re: Its Been a Long Time
« on: September 29, 2014, 04:54:46 pm »
You're better of buying a new computer instead of upgrading.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
freevirus.scriptdownload.com <-- free script download
iam good scripter and iam computer genuis to
hey can anyone give me the scripts of vccnr plzzz
thanks
error 076: syntax error in the expression, or invalid function call
not work!!!
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp(cmdtext," engineoff ", true)==0)
{
new vehicleid = GetPlayerVehicleID(playerid);
KillVehicleEngine(vehicleid); // Engine off
SendClientMessage(playerid,COLOR_WHITE,"Car engine turned off,re-enter the vehicle to restart it.");
return 1;
}
if (strcmp(cmdtext," lightson ",true)==0)
{
new vehicleid = GetPlayerVehicleID(playerid);
SetVehicleLights(vehicleid,1); // Lights on
SendClientMessage(playerid,COLOR_WHITE,"Car headlights turned on");
return 1;
}
else if (strcmp(cmdtext," lightsoff ",true)==0)
{
new vehicleid = GetPlayerVehicleID(playerid);
SetVehicleLights(vehicleid,0); // Lights off
SendClientMessage(playerid,COLOR_WHITE,"Car headlights turned off");
return 1;
}
if (strcmp(cmdtext," wakeup ",true)==0)
{
TogglePlayerControllable(playerid,1);
SendClientMessage(playerid,COLOR_WHITE,"You are now awake!");
return 1;
}
return 1;
}