Can any someone help me with this
#1

Can anyone please convert this to zcmd

Код:
if(strcmp(cmd, "/robbank", true) == 0)
    {
        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, 2328.8669,-1919.2814,828.1979))//--Change those X Y Z
            {
                SendClientMessage(playerid, COLOR_GREY, "   You are not at the bank !");
                return 1;
            }
                    SendClientMessage(playerid, COLOR_WHITE, "You have Robbed Los Santos Local Bank And Stole 1 Million Dollar - Stay low From Cops for few");
                    robbing[playerid] = 1;
                    LoopingAnim(playerid,"ped", "ARRESTgun", 4.0, 0, 1, 1, 1, 0);
                    GivePlayerMoney(playerid, 1000000);
                    SendClientMessageToAll(COLOR_ORANGE, "||----------Latest News----------||");
                    SendClientMessageToAll(COLOR_NICEGREEN, " Los Santos Local Bank Trust has Been Broken.");
                    SendClientMessageToAll(COLOR_NICEGREEN, " The Bank is Currentley getting Robbed. ");
                    SendClientMessageToAll(COLOR_NICEGREEN, " We will report more once we get more information");
                    SendClientMessageToAll(COLOR_ORANGE, "||----------Latest News----------||");
                    return 1;
                }
            }
Thanks.
Reply
#2

pawn Код:
CMD:robbank(playerid, params[])
{
    if(robbing[playerid] == 1) return SendClientMessage(playerid, COLOR_GREY, " You are already robbing the bank, please slow down");
    if(alreadyrobbed[playerid] == 1) return SendClientMessage(playerid, COLOR_WHITE, "You already robbed the bank! Wait 1 hour.");
    if(!IsPlayerInRangeOfPoint(playerid, 5.0, 2328.8669,-1919.2814,828.1979)) return SendClientMessage(playerid, COLOR_GREY, "   You are not at the bank !");
    SendClientMessage(playerid, COLOR_WHITE, "You have Robbed Los Santos Local Bank And Stole 1 Million Dollar - Stay low From Cops for few");
    robbing[playerid] = 1;
    LoopingAnim(playerid,"ped", "ARRESTgun", 4.0, 0, 1, 1, 1, 0);
    GivePlayerMoney(playerid, 1000000);
    SendClientMessageToAll(COLOR_ORANGE, "||----------Latest News----------||");
    SendClientMessageToAll(COLOR_NICEGREEN, " Los Santos Local Bank Trust has Been Broken.");
    SendClientMessageToAll(COLOR_NICEGREEN, " The Bank is Currentley getting Robbed. ");
    SendClientMessageToAll(COLOR_NICEGREEN, " We will report more once we get more information");
    SendClientMessageToAll(COLOR_ORANGE, "||----------Latest News----------||");
    return 1;
}
Give that a go.
Reply
#3

Thanks so i make this on my Filter Script and now
Here is the error
Код:
C:\Documents and Settings\37rjemms\Desktop\Robbank.pwn(77) : warning 209: function "cmd_robbank" should return a value
C:\Documents and Settings\37rjemms\Desktop\Robbank.pwn(82) : error 001: expected token: "#endif", but found "-end of file-"
Код:
#define FILTERSCRIPT

#include <a_samp>
#include <zcmd>
#define COLOR_WHITE 0xFFFFFFAA
#define COLOR_ORANGE 0xFF8000FF
#define COLOR_GREY 0xAFAFAFAA

#if defined FILTERSCRIPT

public OnFilterScriptInit()
{
    print("\n--------------------------------------");
    print(" Blank Filterscript by your name here");
    print("--------------------------------------\n");
    return 1;
}
enum pInfo
{
     pCash,
};
new PlayerInfo[MAX_PLAYERS][pInfo];
new alreadyrobbed[MAX_PLAYERS];
new robbing[MAX_PLAYERS];

forward bankrob(playerid);
forward robbedoff(playerid);
public bankrob(playerid)
{
    SendClientMessage(playerid, COLOR_WHITE, " Your finished robbing the bank, Run now");
    GivePlayerMoney(playerid, 3000000);
    PlayerInfo[playerid][pCash] = PlayerInfo[playerid][pCash]+3000000;
    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;
}
public robbedoff(playerid)
{
    alreadyrobbed[playerid] = 0;
    SendClientMessage(playerid, COLOR_WHITE, " You can now rob the bank again");
    return 1;
}
CMD:robbank(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;
        }
}
public OnFilterScriptExit()
{
    return 1;
}
Reply
#4

Quote:
Originally Posted by [HiC]TheKiller
Посмотреть сообщение
pawn Код:
CMD:robbank(playerid, params[])
{
    if(robbing[playerid] == 1) return SendClientMessage(playerid, COLOR_GREY, " You are already robbing the bank, please slow down");
    if(alreadyrobbed[playerid] == 1) return SendClientMessage(playerid, COLOR_WHITE, "You already robbed the bank! Wait 1 hour.");
    if(!IsPlayerInRangeOfPoint(playerid, 5.0, 2328.8669,-1919.2814,828.1979)) return SendClientMessage(playerid, COLOR_GREY, "   You are not at the bank !");
    SendClientMessage(playerid, COLOR_WHITE, "You have Robbed Los Santos Local Bank And Stole 1 Million Dollar - Stay low From Cops for few");
    robbing[playerid] = 1;
    LoopingAnim(playerid,"ped", "ARRESTgun", 4.0, 0, 1, 1, 1, 0);
    GivePlayerMoney(playerid, 1000000);
    SendClientMessageToAll(COLOR_ORANGE, "||----------Latest News----------||");
    SendClientMessageToAll(COLOR_NICEGREEN, " Los Santos Local Bank Trust has Been Broken.");
    SendClientMessageToAll(COLOR_NICEGREEN, " The Bank is Currentley getting Robbed. ");
    SendClientMessageToAll(COLOR_NICEGREEN, " We will report more once we get more information");
    SendClientMessageToAll(COLOR_ORANGE, "||----------Latest News----------||");
    return 1;
}
Give that a go.
Ohh anyway i put this on my Gamemode Thanks man for converting it your the best
More power to you
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)