Help. /Givemoney myself, player not online
#5

pawn Код:
CMD:givemoney(playerid, params[])
{
    new string[128], name[MAX_PLAYER_NAME], amount;
    if(sscanf(params, "s[24]d[10]", name, amount)) return SendClientMessage(playerid, COLOR_GRAD2, "USAGE: {FFFFFF}/givemoney [Name] [amount]");
    /*if(doesAccountExist(name)) return SendClientMessage(playerid, COLOR_GREY, "* This player is not in server..");

    if you have doesAccountExist
   
    -----------------------------*/

    if(type < 0 || type > 99999999) return SendClientMessage(playerid, COLOR_GREY, "* Cannot go under 0 or above 99999999.");
    if(PlayerInfo[playerid][pAdmin] < 1337) return SendClientMessage(playerid, COLOR_GRAD1, "You are not ADMIN!");

    format(string, sizeof(string), "Admin: %s was offline added money $%d by %s", name, amount, GetPlayerNameEx(playerid));
    SendClientMessageToAll(/*COLOR HERE*/,string);
    PlayerInfo[MAX_PLAYERS][pCash] += amount;
    /*OnPlayerOfflineSave(name);
   
    If you have OnPlayerOfflineSave
   
    ---------------------------*/

    return 1;
}
I think it involves the player registers, and much more
Quote:

I'm not sure with this cmd

Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 2 Guest(s)