18.09.2012, 19:49
I use my own vip system, i have many vip ranks but all are permanent but i want to give as i want like one month or two month or permanent or ever as i want and thanks

public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/timer", cmdtext, true, 10) == 0)
{
SetTimer("blabla",30000,true);
return 1;
}
return 0;
}
forward blabla(playerid);
public blabla(playerid)
{
SendClientMessage(playerid,-1,"timer exaple");
}