getdate help
#5

This can be possible if you fill an array every month or so (manually) with the Sat/Sun days using calender like this, 'MonthDays' array has all the Sat/Sun days in the month of January, 16.

Код:
new MonthDays[10] = {"2", "3", "9", "10", "16", "17", "23", "24", "30", "31");

stock IsWeekend()
{
    new dd, mm, yy;
    getdate(yy, mm, dd);
    for(new i=0; i<10; i++)
    {
        if(MonthDays[i] == dd)
        {
            return true;
        }
    }
    return false;
}
Reply


Messages In This Thread
getdate help - by DetoNater - 24.12.2015, 20:43
Re: getdate help - by sheeraz - 25.12.2015, 06:46
Re: getdate help - by DetoNater - 25.12.2015, 06:49
Re: getdate help - by Vince - 25.12.2015, 11:12
Re: getdate help - by Tamy - 25.12.2015, 14:22
Re: getdate help - by ball - 25.12.2015, 14:44
Re: getdate help - by DetoNater - 25.12.2015, 17:11
Re: getdate help - by CrazyChoco - 25.12.2015, 17:30
Re: getdate help - by DetoNater - 25.12.2015, 17:34
Re: getdate help - by Vince - 25.12.2015, 22:20

Forum Jump:


Users browsing this thread: 3 Guest(s)