Making an Expiry Date for VIP system
#1

Hi, how do i make an Expiry Date for VIP system, i'm currently using MySQL system.


Thanks.
Reply
#2

anyone?
Reply
#3

Hi,

This could be done with a PHP script if you could link the .pwn to query something like localhost/expired?uplayer=pName etc.
Reply
#4

quick start for you;

Код:
#include <a_http>
Код:
#define URL "www.******.com/expiry.php"
Код:
#include <a_http>
Код:
forward OnCheckResponse(index, response_code, data[]);
Код:
new post_string[MAX_POST_LENGTH];
Код:
public OnPlayerConnect(playerid)
{
	CheckExpiry(playerid);
	return 1;
}
Код:
stock CheckExpiry(playerid)
{
    format(post_string, sizeof(post_string), "expire=%s", playerid);
    HTTP(playerid, HTTP_POST, URL, post_string, "OnCheckResponse");
	return 1;
}
Код:
public OnCheckResponse(index, response_code, data[])
{
    if(response_code == 1)
    {
         CODE HERE
    }
    else printf("ERROR");
}
Reply
#5

You can simply make on with this Function:
pawn Код:
stock mktime(hour,minute,second,day,month,year)
{
    new timestamp2;
    timestamp2 = second + (minute * 60) + (hour * 3600);
    new days_of_month[12];
    if ( ((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0) )
    {
        days_of_month = {31,29,31,30,31,30,31,31,30,31,30,31}; // Schaltjahr
    }
    else
    {
        days_of_month = {31,28,31,30,31,30,31,31,30,31,30,31}; // keins
    }
    new days_this_year = 0;
    days_this_year = day;
    if(month > 1)
    { // No January Calculation, because its always the 0 past months
        for(new i=0; i<month-1;i++)
        {
            days_this_year += days_of_month[i];
        }
    }
    timestamp2 += days_this_year * 86400;
    for(new j=1970;j<year;j++)
    {
        timestamp2 += 31536000;
        if ( ((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0) )  timestamp2 += 86400; // Schaltjahr + 1 Tag
    }
    return timestamp2;
}

// Usage:
Veriable[playerid] = gettime+mktime(...);

// The Check could be:

if(gettime() < Veriable[playerid])
{
    //VIP isn't expired
}
Reply
#6

Thanks TigerKiller. But how do i make it MySQL Based?
Reply
#7

Quote:
Originally Posted by BlackID
Посмотреть сообщение
Thanks TigerKiller. But how do i make it MySQL Based?
You just save and load it like Cash, Score . . .

Info: make a veriable which only holds the timestamp and one for the VIP Status like Bronze, Silber, Gold
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)