[FilterScript] Bait-Car Prototype (New Idea for CnR!)
#1

Bait-Car Prototype 2.0


Update 1.0: added locked doors, so the crook can get out, but not back in, and removed /clearbc since it is now useless and the car will either despawn or be removed when a new one spawns.

Update 2.0: Added 2 more cars and a boat, set all commands to admin permission only.

I'm sure most people that clicked on this post knew that I was talking about the TV show "Bait Car", but if you didn't, basically theres special police groups that have a remote control car that they can shutdown whenever a crook tries to steal it.

I was playing on a Cops and Robbers server today and noticed that the cops were more or less just killing most people because it is too difficult to stop them on the run. So, today I want to bring a new element to the cop's arsenal. The Bait-Car.

There are 6 bait-car models to choose from. Then, you park your car on the side of the road, or wherever criminals tend to boost cars (or place your boat near a dock and wait on the shore or in another boat). Then you hide in the shadows, waiting for someone to hop in your car and drive off. Then when the car takes off, you disable the engine with a simple command, bringing it slowly to a stop, making it easier to catch the thief.

What it needs to have happen is to be re-written in a Cops and Robbers environment and probably only used by undercover cops. The following is the code and a download for you to use. If you do add it to your CnR server, I would like to check it out. leave me a PM of your IP.
Here's an intro video also. All commands are in CAPS.

http://*********/6QKTuGKk_bk


Код:
//Bait-Car prototype

#define FILTERSCRIPT

#include <a_samp>

new BC1;
new BC2;
new BC3;
new BC4;
new BC5;
new BC6;

public OnVehicleDeath(vehicleid, killerid)
{
	DestroyVehicle(BC1);
	DestroyVehicle(BC2);
	DestroyVehicle(BC3);
	DestroyVehicle(BC4);
	DestroyVehicle(BC5);
	DestroyVehicle(BC6);
	return 1;
}

public OnPlayerCommandText(playerid, cmdtext[])
{
	if(IsPlayerAdmin(playerid))
	{
		if (strcmp("/BC", cmdtext, true)==0)
		{
			SendClientMessage(playerid, 0x00FFFFFF, "Commands: Huntley = /BC1 | Turismo = /BC2 | Sultan = /BC3");
			SendClientMessage(playerid, 0x00FFFFFF, "Commands: Buffalo = /BC4 | Patriot = /BC5 | Jetmax (boat) = /BC6 ");
			SendClientMessage(playerid, 0x00FFFFFF, "Commands: /DIS -Disable the Bait-Car's motor, bringing the car to a stop.");
			return 1;
		}
		if (strcmp("/BC1", cmdtext, true)==0)
		{
			SendClientMessage(playerid, 0x00FFFFFF, "Bait-Car 1 Initiated, find a spot to park it.");
			DestroyVehicle(BC1);
			DestroyVehicle(BC2);
			DestroyVehicle(BC3);
			DestroyVehicle(BC4);
			DestroyVehicle(BC5);
			DestroyVehicle(BC6);
			new Float:x,Float:y,Float:z,Float:a;
			GetPlayerFacingAngle(playerid,a);
			GetPlayerPos(playerid,x,y,z);
			BC1=CreateVehicle(579, x, y, z,a, -1, -1, -1);
			PutPlayerInVehicle(playerid, BC1, 0);
			return 1;
		}
		if (strcmp("/BC2", cmdtext, true)==0)
		{
			SendClientMessage(playerid, 0x00FFFFFF, "Bait-Car 2 Initiated, find a spot to park it.");
			DestroyVehicle(BC1);
			DestroyVehicle(BC2);
			DestroyVehicle(BC3);
			DestroyVehicle(BC4);
			DestroyVehicle(BC5);
			DestroyVehicle(BC6);
			new Float:x,Float:y,Float:z,Float:a;
			GetPlayerFacingAngle(playerid,a);
			GetPlayerPos(playerid,x,y,z);
			BC2=CreateVehicle(451, x, y, z,a, -1, -1, -1);
			PutPlayerInVehicle(playerid, BC2, 0);
			return 1;
		}
		if (strcmp("/BC3", cmdtext, true)==0)
		{
			SendClientMessage(playerid, 0x00FFFFFF, "Bait-Car 3 Initiated, find a spot to park it.");
			DestroyVehicle(BC1);
			DestroyVehicle(BC2);
			DestroyVehicle(BC3);
			DestroyVehicle(BC4);
			DestroyVehicle(BC5);
			DestroyVehicle(BC6);
			new Float:x,Float:y,Float:z,Float:a;
			GetPlayerPos(playerid,x,y,z);
			GetPlayerFacingAngle(playerid,a);
			BC3=CreateVehicle(560, x, y, z,a, -1, -1, -1);
			PutPlayerInVehicle(playerid, BC3, 0);
			return 1;
		}
		if  (strcmp("/BC4", cmdtext, true)==0)
		{
			SendClientMessage(playerid, 0x00FFFFFF, "Bait-Car 4 Initiated, find a spot to park it.");
			DestroyVehicle(BC1);
			DestroyVehicle(BC2);
			DestroyVehicle(BC3);
			DestroyVehicle(BC4);
			DestroyVehicle(BC5);
			DestroyVehicle(BC6);
			new Float:x,Float:y,Float:z,Float:a;
			GetPlayerPos(playerid,x,y,z);
			GetPlayerFacingAngle(playerid,a);
			BC4=CreateVehicle(402, x, y, z,a, -1, -1, -1);
			PutPlayerInVehicle(playerid, BC4, 0);
			return 1;
		}
		if  (strcmp("/BC5", cmdtext, true)==0)
		{
			SendClientMessage(playerid, 0x00FFFFFF, "Bait-Car 5 Initiated, find a spot to park it.");
			DestroyVehicle(BC1);
			DestroyVehicle(BC2);
			DestroyVehicle(BC3);
			DestroyVehicle(BC4);
			DestroyVehicle(BC5);
			DestroyVehicle(BC6);
			new Float:x,Float:y,Float:z,Float:a;
			GetPlayerPos(playerid,x,y,z);
			GetPlayerFacingAngle(playerid,a);
			BC5=CreateVehicle(470, x, y, z,a, -1, -1, -1);
			PutPlayerInVehicle(playerid, BC5, 0);
			return 1;
		}
		if  (strcmp("/BC6", cmdtext, true)==0)
		{
			SendClientMessage(playerid, 0x00FFFFFF, "Bait-Car 6 Initiated, find a spot to park it.");
			DestroyVehicle(BC1);
			DestroyVehicle(BC2);
			DestroyVehicle(BC3);
			DestroyVehicle(BC4);
			DestroyVehicle(BC5);
			DestroyVehicle(BC6);
			new Float:x,Float:y,Float:z,Float:a;
			GetPlayerPos(playerid,x,y,z);
			GetPlayerFacingAngle(playerid,a);
			BC6=CreateVehicle(493, x, y, z,a, -1, -1, -1);
			PutPlayerInVehicle(playerid, BC6, 0);
			return 1;
		}
		if (strcmp("/DIS", cmdtext, true)==0)
		{
			SendClientMessage(playerid, 0x00FFFFFF, "Bait-Car Disabled.");
			SetVehicleParamsEx(BC1, 0, 1, 0, 1, 0, 0, 0);
			SetVehicleParamsEx(BC2, 0, 1, 0, 1, 0, 0, 0);
			SetVehicleParamsEx(BC3, 0, 1, 0, 1, 0, 0, 0);
			SetVehicleParamsEx(BC4, 0, 1, 0, 1, 0, 0, 0);
			SetVehicleParamsEx(BC5, 0, 1, 0, 1, 0, 0, 0);
			SetVehicleParamsEx(BC6, 0, 1, 0, 1, 0, 0, 0);
			return 1;
		}
	}
	else
	{
		SendClientMessage(playerid, 0x00FFFF, "You must be an admin/police.");
		return 1;
	}
	return 0;
}
Download
http://www.mediafire.com/?tqv6uyb1j25bli5
What I want from this script is to be known as the guy who added the bait car to all the greatest servers! Also, give me your honest opinions!
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)