[Include] CopTools (0.3c)
#1

Hey there,

Just a small thing I made while checking out the new functions, is a include containing the following functions:

-PutRiotShieldOnBack(playerid) Puts a shield on the player's back
-PutRiotShieldOnArm(playerid) Puts a shield on the player's arm
-GiveFlashLight(playerid) Puts a flashlight in the player's left hand
-GiveTazer(playerid) Puts a tazer in the player's left hand
-RemoveItems(playerid) Removes Items

It might not be free of bugs yet, cause I just made it and it only tested it on the normal cop skins. (It's possible that they don't fit well on some skins.)

You can't hold 2 shields at once, and same with the flashlight and the tazer, you can't have them both at the same time, in the same hand.

Screens:

Gallery:/imageshack/gal.php?g...1208185229.png


Uploaded with ImageShack.us

Use it by putting <cop-tools> at the top of your script as always.

Download(PasteBin)
Download(EasyUpload)

Example code on how to use it in a command:
pawn Code:
public OnPlayerCommandText(playerid, cmdtext[])
{
    if (strcmp("/arm", cmdtext, true, 10) == 0)
    {
        PutRiotShieldOnArm(playerid);
        return 1;
    }
    if (strcmp("/back", cmdtext, true, 10) == 0)
    {
        PutRiotShieldOnBack(playerid);
        return 1;
    }
    if (strcmp("/light", cmdtext, true, 10) == 0)
    {
        GiveFlashLight(playerid);
        return 1;
    }
    if (strcmp("/tazer", cmdtext, true, 10) == 0)
    {
        GiveTazer(playerid);
        return 1;
    }
    if (strcmp("/removeitems", cmdtext, true, 10) == 0)
    {
        RemoveItems(playerid);
        return 1;
    }
    return 0;
}
Reply


Messages In This Thread
CopTools (0.3c) - by Geso - 08.12.2010, 16:40
Re: CopTools (0.3c) - by nielsbon1 - 08.12.2010, 16:45
Re : CopTools (0.3c) - by Peppe95 - 08.12.2010, 16:46
Re: CopTools (0.3c) - by Scenario - 08.12.2010, 16:48
Re: CopTools (0.3c) - by Geso - 08.12.2010, 16:51
Re: CopTools (0.3c) - by The_Gangstas - 08.12.2010, 16:52
Re: CopTools (0.3c) - by Flyfishes - 08.12.2010, 16:53
Re : CopTools (0.3c) - by Hip-hop - 08.12.2010, 17:01
AW: CopTools (0.3c) - by Trooper[Y] - 08.12.2010, 20:36
Re: CopTools (0.3c) - by wups - 08.12.2010, 20:52
Re: CopTools (0.3c) - by Geso - 09.12.2010, 13:52
Re: CopTools (0.3c) - by ZmaXy - 09.12.2010, 17:53
Re: CopTools (0.3c) - by wups - 09.12.2010, 18:24
Re: CopTools (0.3c) - by [MWR]Blood - 18.12.2010, 13:21
Re: CopTools (0.3c) - by Geso - 18.12.2010, 13:48
Re: CopTools (0.3c) - by paramedic114 - 18.12.2010, 13:56
Re: CopTools (0.3c) - by Geso - 18.12.2010, 14:00
Re: CopTools (0.3c) - by Noss* - 18.12.2010, 20:12
Re: CopTools (0.3c) - by paramedic114 - 18.12.2010, 20:23
Re: CopTools (0.3c) - by Tessar - 18.12.2010, 21:09
Re: CopTools (0.3c) - by jameskmonger - 18.12.2010, 21:18
Re: CopTools (0.3c) - by Geso - 19.12.2010, 08:43
Re: CopTools (0.3c) - by knackworst - 19.12.2010, 08:53
Re: CopTools (0.3c) - by paramedic114 - 19.12.2010, 12:01
Re: CopTools (0.3c) - by Geso - 19.12.2010, 12:07
Re: CopTools (0.3c) - by paramedic114 - 19.12.2010, 12:08
Re: CopTools (0.3c) - by paramedic114 - 19.12.2010, 13:47
Re: CopTools (0.3c) - by Geso - 19.12.2010, 13:49
Re: CopTools (0.3c) - by SpiderWalk - 22.01.2011, 17:03
Re: CopTools (0.3c) - by Lukas_Guetta - 22.01.2011, 17:16
Re: CopTools (0.3c) - by Geso - 23.01.2011, 07:57
Respuesta: CopTools (0.3c) - by SuperMarioRol - 29.01.2011, 10:46
Re: Respuesta: CopTools (0.3c) - by Geso - 29.01.2011, 11:00
Re: CopTools (0.3c) - by [SFA]SpiRRiT - 06.03.2011, 07:31
Re: CopTools (0.3c) - by Tee - 08.03.2011, 01:45
Re: CopTools (0.3c) - by ConsoleX - 13.03.2011, 01:29
Re: CopTools (0.3c) - by DrewFArnold - 13.03.2011, 09:10
Re: CopTools (0.3c) - by Geso - 13.03.2011, 14:30
Re: CopTools (0.3c) - by ConsoleX - 13.03.2011, 20:07
Respuesta: CopTools (0.3c) - by Code8976Man - 13.03.2011, 20:12
Re: CopTools (0.3c) - by ConsoleX - 14.03.2011, 01:30
Re: CopTools (0.3c) - by Geso - 14.03.2011, 15:25
Re: CopTools (0.3c) - by ConsoleX - 15.03.2011, 04:45
Re: CopTools (0.3c) - by Geso - 15.03.2011, 15:18
Re: CopTools (0.3c) - by ConsoleX - 15.03.2011, 21:16
Re: CopTools (0.3c) - by Geso - 16.03.2011, 15:14
Re: CopTools (0.3c) - by Medal Of Honor team - 16.03.2011, 15:16
Re: CopTools (0.3c) - by calzo2011 - 01.08.2011, 11:26
Re: CopTools (0.3c) - by Geso - 01.08.2011, 12:16
Re: CopTools (0.3c) - by A7X_CEEJAY - 24.08.2011, 19:52
Re: CopTools (0.3c) - by legodude - 24.08.2011, 21:30
Re: CopTools (0.3c) - by A7X_CEEJAY - 25.08.2011, 10:50
Re: CopTools (0.3c) - by GTA-Roleplay - 15.09.2011, 12:20
Re: CopTools (0.3c) - by jaami - 26.04.2012, 13:32
Re: CopTools (0.3c) - by ikkentim - 26.04.2012, 19:08

Forum Jump:


Users browsing this thread: 1 Guest(s)