Quote:
Originally Posted by ALiScripter
Something like this can work.
PHP код:
funktion(playerid)
{
if(/*get vip expire time*/ < getdate)
{
remove his vip level
}
else
{
new string[100], format(string, sizeof(string), "Your VIP level will expire on %d", vip level variable);
SendClientMessage(playerid, -1, string);
}
}
|
My question isnt how to make this "funktion", it is where to put this function? In a repeating timer or what