Moin Moin..
Ich habe das uhren Tutorial angeguckt.. Und musste festellen das Diese Error´s kamen:
C:\Users\Sinan\Desktop\SAMP SERVER2\gamemodes\first.pwn(310) : warning 219: local variable "clockstr" shadows a variable at a preceding level
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
1 Warning.
Zeile 310:
forward onSecond();
public onSecond()
{
new hour,minute,sec;
gettime(hour,minute,sec);
new clockstr[15]; //Hier ist der WARNING!!
if(minute<10)format(clockstr,sizeof clockstr,"%d:0%d:%d",hour,minute,sec);
else format(clockstr,sizeof clockstr,"%d:%d:%d",hour,minute,sec);
TextDrawSetString(Textdraw0,clockstr);
TextDrawShowForAll(Textdraw0);
SetWorldTime(hour);
return 1;
}
//Edit: Habe es selber hinbekommen.