Online Time Bonus?
#4

You wanted the one without variable thingy :
pawn Код:
public OnGameModeInit( )
{
    SetTimer( "OneHourBonus", 3600 * 1000, true );
    return true;
}

forward OneHourBonus( );
public OneHourBonus( )
{
    for ( new i, slots = GetMaxPlayers( ); i < slots; i ++ )
    {
        GivePlayerMoney( i, 5000 );
        SendClientMessage( i, -1, "ONE HOUR AWARD!" );
    }

    return 1;
}
Reply


Messages In This Thread
Online Time Bonus? - by LeeXian99 - 21.04.2013, 11:58
Re: Online Time Bonus? - by greentarch - 21.04.2013, 12:09
Re: Online Time Bonus? - by LeeXian99 - 21.04.2013, 12:14
Re: Online Time Bonus? - by greentarch - 21.04.2013, 12:26

Forum Jump:


Users browsing this thread: 5 Guest(s)