help please
#2

pawn Код:
//By Mika Adel/Mode. Mika Adel
// uncomment the line below if you want to write a filterscript
//#define FILTERSCRIPT

#include <a_samp>
#include <zcmd>

#define COLOR_WHITE 0xFFFFFFAA
#define COLOR_ORANGE 0xFFA500AA
#define COLOR_GREY 0xAFAFAFAA

new robbing[MAX_PLAYERS];
new alreadyrobbed[MAX_PLAYERS];

enum pInfo
{
    pCash
};

new PlayerInfo[MAX_PLAYERS][pInfo];

COMMAND:robban(playerid, params[])
{
    if(IsPlayerConnected(playerid))
    {
        if(robbing[playerid] == 1)
        {
            SendClientMessage(playerid, COLOR_GREY, " You are already robbing the bank, please slow down");
            return 1;
        }
        if(alreadyrobbed[playerid] == 1)
        {
            SendClientMessage(playerid, COLOR_WHITE, "You already robbed the bank! Wait 1 hour.");
            return 1;
        }
        if(!IsPlayerInRangeOfPoint(playerid, 5.0, 2308.8071,-13.2485,26.7422)) // Change X Y Z to the location you want
        {
            SendClientMessage(playerid, COLOR_GREY, " You are not at the bank !");
            return 1;
        }
        SendClientMessage(playerid, COLOR_WHITE, " You started to rob the bank, This will take 10 minutes");
        SetTimerEx("bankrob", 600000, false, "i", playerid);
        robbing[playerid] = 1;
        SendClientMessageToAll(COLOR_ORANGE, "||----------Latest News----------||");
        SendClientMessageToAll(COLOR_WHITE, " The bank is currently getting robbed.");
        SendClientMessageToAll(COLOR_WHITE, " We are currently waiting for the cops");
        SendClientMessageToAll(COLOR_WHITE, " We will report more when we get more information");
        SendClientMessageToAll(COLOR_ORANGE, "||----------Latest News----------||");
        return 1;
    }
    return 1;
}


forward bankrob(playerid);
public bankrob(playerid)
{
    SendClientMessage(playerid, COLOR_WHITE, " Your finished robbing the bank, Run now");
    GivePlayerMoney(playerid, 500000);
    PlayerInfo[playerid][pCash] = PlayerInfo[playerid][pCash]+500000;
    alreadyrobbed[playerid] = 1;
    robbing[playerid] = 0;
    SetTimerEx("robbedoff", 3600000, false, "i", playerid);
    SendClientMessageToAll(COLOR_ORANGE, "||----------Latest News----------||");
    SendClientMessageToAll(COLOR_WHITE, " It looks like the bankrobber got the cash.");
    SendClientMessageToAll(COLOR_WHITE, " The cops is currently waiting outside.");
    SendClientMessageToAll(COLOR_ORANGE, "||----------Latest News----------||");
    return 1;
}

forward robbedoff(playerid);
public robbedoff(playerid)
{
    alreadyrobbed[playerid] = 0;
    SendClientMessage(playerid, COLOR_WHITE, " You can now rob the bank again");
    return 1;
}
Reply


Messages In This Thread
help please - by adelmika - 27.09.2012, 02:45
Re: help please - by .v - 27.09.2012, 03:29
Re: help please - by adelmika - 27.09.2012, 03:50

Forum Jump:


Users browsing this thread: 1 Guest(s)