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;
}
CMD:enter(playerid,params[])
{
new bint;
bint = GetPlayerInterior(playerid);
if(bint == 0) //0 is the interior id of bank.
{
SetPlayerPos(playerid, X.X,Y.Y,Z.Z); // You must get the bank postion inside first (Near the bank Entrance door)
SetPlayerInterior(playerid, 0);
SetPlayerVirtualWorld(playerid, 0);
SetCameraBehindPlayer(playerid);
DestroyVehicle(GetPlayerVehicleID(playerid)); //Just incase you used /enter with a vehicle
}
else
{
SendClientMessage(playerid, 0xFF0000, "You need to be in a bank to use this command.");
}
return 1;
}