help me with command
#4

pawn Код:
CMD:givexp(playerid, params[])
{
    if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, -1, "You must be admin to use this command.");
    new amount, string[128], name[24];
    GetPlayerName(playerid, name, sizeof(name));
    if(sscanf(params, "d", amount)) return SendClientMessage(playerid, -1, "Usage: /givexp [amount]");
    {
        for(new i = 0; i < MAX_PLAYERS; i++)
        {
            PlayerInfo[id][Exp] += amount;
        }
        format(string, sizeof(string), "Admin %s gave %d XP to all players.", name, amount);
        SendClientMessageToAll(-1, string);
    }
    return 1;
}
Reply


Messages In This Thread
help me with command - by Hugoca - 29.11.2012, 14:08
Re: help me with command - by iGetty - 29.11.2012, 14:13
Re: help me with command - by Hugoca - 29.11.2012, 14:18
Re: help me with command - by iGetty - 29.11.2012, 14:52
Re: help me with command - by Hugoca - 29.11.2012, 14:52
Re: help me with command - by Hugoca - 29.11.2012, 14:56
Re: help me with command - by Mustafa6155 - 29.11.2012, 15:21
Re: help me with command - by Hugoca - 29.11.2012, 15:32
Re: help me with command - by Hugoca - 30.11.2012, 07:46
Re: help me with command - by cessil - 30.11.2012, 07:55

Forum Jump:


Users browsing this thread: 1 Guest(s)