[FilterScript] Equip
#1

Decided to make a little script idea which served as the work of the police ... I think a good idea to make a pickup at a police station near the lockers with clothes, standing on a given outfit ...

Sreens:


Changelog:

1.0:
* Add Armour on body.
1.1:
* Add Armour in game;
* Add system relations object and armor.
2.0
* Add swat helmet;
* Add shield;
* Add rubber stick.
2.1:
* Add Taser.
2.2:
* Add /equipoff command.

2.3
* Fix some troubles with uneqip.

pawn Код:
/*
*   Created:    02.02.11
*   Author:     OKStyle
*   Description:    Armour 2.3
*/

#include <a_samp>
#define COLOR_INTERFACE_BODY 0xFDE39DAA
public OnPlayerCommandText(playerid, cmdtext[])
{
    if(strcmp(cmdtext, "/equip", true, 6) == 0)
    {
        if(GetPVarInt(playerid, "Equipped") != 0) return SendClientMessage(playerid, COLOR_INTERFACE_BODY, "You are already equipped!");
        if(GetPlayerSkin(playerid) < 280 || GetPlayerSkin(playerid) > 288) return SendClientMessage(playerid, COLOR_INTERFACE_BODY, "This command is available only to the servants of the law.");
        SetPlayerAttachedObject(playerid, 1, 19142,  1, 0.1,  0.05, 0.0,  0.0,   0.0,   0.0);
        SetPlayerAttachedObject(playerid, 2, 19141,  2, 0.11, 0.0,  0.0,  0.0,   0.0,   0.0);
        SetPlayerAttachedObject(playerid, 3, 18637, 13, 0.35, 0.0,  0.0,  0.0,   0.0, 180.0);
        SetPlayerAttachedObject(playerid, 4, 18642,  7, 0.1,  0.0, -0.11, 0.0, -90.0,  90.0);
        GivePlayerWeapon(playerid, 3, 1);
        SetPlayerArmour(playerid, 100.0);
        SetPVarInt(playerid, "Equipped", 1);
        SendClientMessage(playerid, COLOR_INTERFACE_BODY, "You outfits.");
        return 1;
    }
    if(strcmp(cmdtext, "/equipoff", true, 9) == 0)
    {
        if(GetPVarInt(playerid, "Equipped") != 1) return SendClientMessage(playerid, COLOR_INTERFACE_BODY, "You already unequipped!");
        new Float:ap;
        GetPlayerArmour(playerid, ap);
        if(ap > 0)
        {
            RemovePlayerAttachedObject(playerid, 1);
            SetPlayerArmour(playerid, 0.0);
        }
        RemovePlayerAttachedObject(playerid, 2);
        RemovePlayerAttachedObject(playerid, 3);
        RemovePlayerAttachedObject(playerid, 4);
        new weapons[13][2];
        for (new i; i < 13; i++)
        {
            GetPlayerWeaponData(playerid, i, weapons[i][0], weapons[i][1]);
        }
        ResetPlayerWeapons(playerid);
        for (new i; i < 13; i++)
        {
            if(i == 1) continue;
            GivePlayerWeapon(playerid, weapons[i][0], weapons[i][1]);
        }
        SetPVarInt(playerid, "Equipped", 0);
        SendClientMessage(playerid, COLOR_INTERFACE_BODY, "You undressed and disarmed.");
        return 1;
    }
    return 0;
}
public OnPlayerUpdate(playerid)
{
    if(GetPVarInt(playerid, "Equipped") == 1)
    {
        RemovePlayerAttachedObject(playerid, 1);
        new Float:ap;
        GetPlayerArmour(playerid, ap);
        if(ap > 0) SetPlayerAttachedObject(playerid, 1, 19142,  1, 0.1,  0.05, 0.0,  0.0,   0.0,   0.0);
    }
    return 1;
}
public OnFilterScriptExit()
{
    for(new i, j = GetMaxPlayers(); i != j; i++)
    {
        if(!IsPlayerConnected(i)) continue;
        if(IsPlayerNPC(i)) continue;
        if(GetPVarInt(playerid, "Equipped") != 1) continue;
        RemovePlayerAttachedObject(i, 1);
        RemovePlayerAttachedObject(i, 2);
        RemovePlayerAttachedObject(i, 3);
        RemovePlayerAttachedObject(i, 4);
    }
    return 1;
}
Reply


Messages In This Thread
Equip - by OKStyle - 03.02.2011, 02:30
Re: Equip - by [M.A]Angel[M.A] - 03.02.2011, 02:42
Re: Equip - by LordCumiRing - 03.02.2011, 03:41
Re: Equip - by davbad1 - 03.02.2011, 05:54
Re: Equip - by GobL1N - 19.02.2011, 22:51
Re: Equip - by DartakousLien - 19.02.2011, 23:00
Respuesta: Equip - by 0_o.mati.o_0 - 19.02.2011, 23:35
Re: Equip - by gostza111 - 19.03.2011, 15:28
Re: Equip - by Mr.Youssef - 07.04.2011, 14:11
Re: Equip - by SpiderWalk - 17.05.2011, 11:23
AW: Equip - by Forbidden - 01.06.2011, 18:52
Re: Equip - by OKStyle - 11.10.2011, 10:25
Re: Equip - by backnot - 03.01.2012, 21:58
Re: Equip - by marcelocent - 19.05.2013, 15:44
Re: Equip - by edgargreat - 19.05.2013, 18:53

Forum Jump:


Users browsing this thread: 1 Guest(s)