[Ajuda] Blindagem simples
#10

pequei esse Fs de blindagem.
pawn Код:
#include <a_samp>

// Coordenadas do local para fazer a Blindagem
#define X 1
#define Y 1
#define Z 1

new Blindado[MAX_PLAYERS];

public OnFilterScriptInit()
{
    print("\n--------------------------------------");
    print("         FS by CidadeNovaRP ¬¬");
    print("--------------------------------------\n");
    return 1;
}

public OnVehicleDamageStatusUpdate(vehicleid,playerid)
{
    if(vehicleid == Blindado[playerid])
    {
        SetVehicleHealth(vehicleid, 2000.0);
        RepairVehicle(vehicleid);
        return 1;
    }
    return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
    if (strcmp("/blindar", cmdtext, true, 10) == 0)
    {
        if(!PlayerToPoint(2.0 ,playerid, 2488.5581,-1460.1916,24.0181))
        if(!IsPlayerInAnyVehicle(playerid)) return SendClientMessage(playerid, -1, "Vocк deve estar em um Veнculo para blinda-lу!");
        SendClientMessage(playerid, -1, "Vocк blindou seu veiculo!");
        Blindado[playerid] = GetPlayerVehicleID(playerid);
        return 1;
    }
    return 0;
}

stock PlayerToPoint(Float:radi, playerid, Float:x, Float:y, Float:z)
{
    if(IsPlayerConnected(playerid))
    {
        new Float:oldposx, Float:oldposy, Float:oldposz;
        new Float:tempposx, Float:tempposy, Float:tempposz;
        GetPlayerPos(playerid, oldposx, oldposy, oldposz);
        tempposx = (oldposx -x);
        tempposy = (oldposy -y);
        tempposz = (oldposz -z);
        if (((tempposx < radi) && (tempposx > -radi)) && ((tempposy < radi) && (tempposy > -radi)) && ((tempposz < radi) && (tempposz > -radi)))
        {
            return true;
        }
    }
    return 0;
}
esse aki o carro repara, mas a blindagem с diminui ele fika pra sempre no carro, queria q ela aumentasse a vida do carro para 200, e ia diminuindo
Reply


Messages In This Thread
[Ajuda] Blindagem - by Gutierrez_zikaloko - 27.05.2012, 22:15
Re: [Ajuda] Blindagem simples - by blacktrindade - 27.05.2012, 22:24
Re: [Ajuda] Blindagem simples - by Gutierrez_zikaloko - 27.05.2012, 22:29
Re: [Ajuda] Blindagem simples - by paulor - 27.05.2012, 22:29
Re: [Ajuda] Blindagem simples - by zbt - 27.05.2012, 22:30
Re: [Ajuda] Blindagem simples - by Gutierrez_zikaloko - 27.05.2012, 22:45
Re: [Ajuda] Blindagem simples - by paulor - 27.05.2012, 22:51
Re: [Ajuda] Blindagem simples - by Gutierrez_zikaloko - 27.05.2012, 22:57
Re: [Ajuda] Blindagem simples - by zbt - 27.05.2012, 23:07
Re: [Ajuda] Blindagem simples - by Gutierrez_zikaloko - 28.05.2012, 17:36

Forum Jump:


Users browsing this thread: 1 Guest(s)