giving scores to people under 999 scores only
#5

Quote:
Originally Posted by -Prodigy-
Посмотреть сообщение
pawn Код:
CMD:refund(playerid, params[])
{
    if(isnull(params)) return SendClientMessage(playerid, -1, "Usage: /Refund < Amount >");

    new amount = strval(params);

    for(new i = 0; i < MAX_PLAYERS; i++)
    {
        if(!IsPlayerConnected(i) || GetPlayerScore(i) > 1000) continue;

        SetPlayerScore(i, GetPlayerScore(i) + 1000); // Give players with less than 1000 score 1000 score
    }
    return 1;
}
ty repped.
Reply


Messages In This Thread
giving scores to people under 999 scores only - by Superhot - 21.10.2013, 12:56
Re: giving scores to people under 999 scores only - by reckst4r - 21.10.2013, 13:46
Re: giving scores to people under 999 scores only - by Superhot - 21.10.2013, 23:28
Re: giving scores to people under 999 scores only - by -Prodigy- - 21.10.2013, 23:54
Re: giving scores to people under 999 scores only - by Superhot - 22.10.2013, 04:05

Forum Jump:


Users browsing this thread: 3 Guest(s)