SA-MP Forums Archive
[Ajuda] Luzes anoitecer - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Luzes anoitecer (/showthread.php?tid=449400)



Luzes anoitecer - ThiagoMK - 08.07.2013

Galera estou usando esse fs de hora real quando tiver noite ele anoitece quando tiver de dia.. e etc..
Mais quando anoitece as luzes nгo estгo todas acendendo tem uns lugares que ficam escuros..

pawn Код:
#include <a_samp>

// forward
forward tempo();

public OnFilterScriptInit()
{
    print("\n--------------------------------------");
    print(" Filter Tempo, By Steel (steeldark)");
    print("--------------------------------------\n");

    SetTimer("tempo",500,true);

    return 1;
}

public OnFilterScriptExit()
{
    return 1;
}

public tempo()
{
    new Hour, Minute, Second;
    gettime(Hour, Minute, Second);

    if(Hour >= 06 && Hour <= 18){
    SetWorldTime(12);
    SetWeather(12);
    }
    else
        {
        SetWorldTime(24);
        SetWeather(24);
        }
}



Re: Luzes anoitecer - JonathanFeitosa - 09.07.2013

pawn Код:
#include <a_samp>

// forward
forward tempo();

public OnFilterScriptInit()
{
    print("\n--------------------------------------");
    print(" Filter Tempo, By Steel (steeldark)");
    print("--------------------------------------\n");

    SetTimer("tempo",500,true);

    return 1;
}

public OnFilterScriptExit()
{
    return 1;
}

public tempo()
{
    new Hour, Minute, Second;
    gettime(Hour, Minute, Second);

    if(Hour >= 06 && Hour <= 18){
    SetWorldTime(12);
    SetWeather(12);
    }
    else
        {
        SetWorldTime(0);
        SetWeather(43);
        }
}