convert to zcmd
#3

pawn Код:
CMD:gotomb(playerid, params[])
{
    #pragma unused params
    if(!IsPlayerAdmin(playerid))
        return 1;
        SetPlayerPos(playerid, MoneyBagPos[0], MoneyBagPos[1] +3, MoneyBagPos[2]);
    return SendClientMessage(playerid, -1, "You have been {FF0000}teleported {FFFFFF}to the {33FF66}money bag");
}
CMD:gotomb(playerid, params[])
    return MoneyBag();
CMD:togglemb(playerid, params[])
{
    #pragma unused params
    if(Timer[0] == 0)
        {
            KillTimer(Timer[1]);
                Timer[0] = 1;
                SendClientMessage(playerid, -1, "Money bag turned {FF0000} off!");
        }
        else
        {
                Timer[1] = SetTimer("MoneyBag", MB_DELAY, true);
                Timer[0] = 0;
            SendClientMessage(playerid, -1, "Money bag turned {33FF66} on!");
    }
    return 1;
}
CMD:moneybag(playerid, params[])
{
    #pragma unused params
    new string[150];
        if(!MoneyBagFound) format(string, sizeof(string), "**The {33FF66}Money Bag has been {FF0000}hidden in {FFFF66}%s!", MoneyBagLocation);
        if(MoneyBagFound) format(string, sizeof(string), "**The {33FF66}Money Bag is {FF0000} not running!");
        return SendClientMessage(playerid, -1, string);
}
I gave you in the first command, an example of how you should check if a player is ADMIN. Do the same to the rest and it should work.
Reply


Messages In This Thread
convert to zcmd - by Markus1337 - 24.01.2013, 12:28
AW: convert to zcmd - by Blackazur - 24.01.2013, 12:33
Re: convert to zcmd - by antonio112 - 24.01.2013, 12:34

Forum Jump:


Users browsing this thread: 1 Guest(s)