03.06.2011, 22:33
PHP код:
#include <a_samp>
#include <time>
forward PD();
new tempo;
public OnGameModeInit()
{
new h;
SetTimer("PD", 60000,true);
gettime(h);
tempo = h;
return 1;
}
public PD()
{
new h, m, s;
gettime(h,m,s);
if(h == tempo+1 || h == 23)
{
//FUNЗХES DO PAYDAY AQUI
}
else
{
tempo = h;
}
return 1;
}