[Ajuda] public
#1

Queria ajuda de voces pra saber porque essa public nunca e chamada e como se ela tivesse desativada ja tentei fazer debug mas nao da.

pawn Код:
forward Synctime();
public Synctime()
{
    new string[80];
    new tmphour;
    new tmpminute;
    new tmpsecond;
    gettime(tmphour, tmpminute, tmpsecond);
    Fixhour(tmphour);
    tmphour = shifthour;
        print("1.");
    if ((tmphour > ghour) || (tmphour == 0 && ghour == 23))
    {
        format(string, sizeof(string), "{FF1493}Agora sгo %d:00 horas.",shifthour);
        SendClientMessageToAll(COLOR_DBLUE,string);
                print("2.");
        ghour = tmphour;
        PayDay();
        SetHora();
    }
}
Reply
#2

Tente fazer um comando que chame esta funзгo

pawn Код:
public Synctime()
{
    new string[80],tmphour,tmpminute,tmpsecond;
    gettime(tmphour, tmpminute, tmpsecond);
    Fixhour(tmphour);
    tmphour = shifthour;
    if ((tmphour > ghour) || (tmphour == 0 && ghour == 23)){
        PayDay();
        SetHora();
        ghour = tmphour;
        format(string, sizeof(string), "{FF1493}Agora sгo %d:00 horas.",shifthour);
        SendClientMessageToAll(COLOR_DBLUE,string);
    }
    print("[Debug]: Synctime carregada com sucesso!");
    return 1;
}
Reply
#3

Tente por isto no OnGameModeInit..

PHP код:
SetTimer("Synctime"1000true); 
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)