Timer won't Countdown!!!
#12

Try this:
pawn Code:
new GameSeconds = 1451;
new Text:Textdraw0;
pawn Code:
Textdraw0 = TextDrawCreate(86.000000,427.000000,"Loading..");
    TextDrawAlignment(Textdraw0,2);
    TextDrawBackgroundColor(Textdraw0,0x000000ff);
    TextDrawFont(Textdraw0,3);
    TextDrawLetterSize(Textdraw0,0.499999,2.000000);
    TextDrawColor(Textdraw0,0xffffffff);
    TextDrawSetOutline(Textdraw0,1);
    TextDrawSetProportional(Textdraw0,1);
    TextDrawSetShadow(Textdraw0,1);
pawn Code:
public OnPlayerConnect(playerid)
{
    TextDrawShowForPlayer(playerid, Textdraw0);
    return true;
}
pawn Code:
SetTimer("GameTime",1000,1);
pawn Code:
forward GameTime();
public GameTime()
{
    GameSeconds++;
    new TimeString[14];
    format(TimeString,sizeof(TimeString),"%i:%i",(GameSeconds/(60*60))%24,(GameSeconds/60)%60);
    //                                 Hours:Minutes
    TextDrawSetString(Textdraw0,TimeString);
    //In case you need a reset on completing 24 hours:
    if((GameSeconds/(60*60))%24 == 24) { GameSeconds = 0; }
    return true;
}
//You don't need GameMinutes here. No other stuff.
Reply


Messages In This Thread
[SOLVED]Timer won't Countdown!!! - by Tigerbeast11 - 24.08.2011, 00:45
Re: Timer won't Countdown!!! - by a_big - 24.08.2011, 00:50
Re: Timer won't Countdown!!! - by Jefff - 24.08.2011, 00:56
Re: Timer won't Countdown!!! - by Tigerbeast11 - 24.08.2011, 00:56
Re: Timer won't Countdown!!! - by Intoxicated - 24.08.2011, 00:56
Re: Timer won't Countdown!!! - by Tigerbeast11 - 24.08.2011, 00:59
Re: Timer won't Countdown!!! - by grand.Theft.Otto - 24.08.2011, 01:04
Re: Timer won't Countdown!!! - by Jefff - 24.08.2011, 01:05
Re: Timer won't Countdown!!! - by Tigerbeast11 - 24.08.2011, 01:06
Re: Timer won't Countdown!!! - by grand.Theft.Otto - 24.08.2011, 01:10
Re: Timer won't Countdown!!! - by Tigerbeast11 - 24.08.2011, 01:15
Re: Timer won't Countdown!!! - by iPLEOMAX - 24.08.2011, 02:28
Re: Timer won't Countdown!!! - by Bakr - 24.08.2011, 02:41
Re: Timer won't Countdown!!! - by iPLEOMAX - 24.08.2011, 02:46
Re: Timer won't Countdown!!! - by Tigerbeast11 - 24.08.2011, 08:53
Re: Timer won't Countdown!!! - by iPLEOMAX - 24.08.2011, 08:55
Re: Timer won't Countdown!!! - by Tigerbeast11 - 24.08.2011, 08:56
Re: Timer won't Countdown!!! - by Tigerbeast11 - 24.08.2011, 08:59
Re: Timer won't Countdown!!! - by iPLEOMAX - 24.08.2011, 09:06
Re: Timer won't Countdown!!! - by Tigerbeast11 - 24.08.2011, 09:08
Re: Timer won't Countdown!!! - by Tigerbeast11 - 24.08.2011, 10:09

Forum Jump:


Users browsing this thread: 1 Guest(s)