Help me! :D
#1

Hi, I need a script, where the show
hours of GTA on my server, the default time of the GTA,
where the minutes are seconds! xD
And it was at night, at 20:00, the same as normal!
I hope you can help me! *-*

Sorry for my bad english! ._.
Reply
#2

Either set a timer and when that timer's done do SetWorldTime or use gettime and SetWorldTime.

Example:
Код:
forward ChangeTime();

int theTime;
 
public OnGameModeInit( )
{
    SetWorldTime(0);
    theTime = 0;
    SetTimer("ChangeTime",60000,true);
}
 
public ChangeTime()
{
	SetWorldTime(theTime + 1);
    theTime ++;
}
(Untested)
Reply
#3

I must also show that the "time" in the game
TextDraw! : D
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)