Tach,
ich hab mal wieder ein kleines Problem. Diesmal liegt es an einem Textdraw
ich habe oben eingefügt
new LohnTime = 30;
dann
forward LohnTimer();
bei ongamemodeinit
SetTimer("LohnTimer",60000,1);
und dann das public
public LohnTimer()
{
LohnTime--;
new string[128];
format(string, sizeof(string), "%d", LohnTime);
TextDrawSetString(LohnText2, string);
TextDrawHideForAll(LohnText2);
TextDrawShowForAll(LohnText2);
}
doch der Textdraw bleibt immer bei 30
kann mir jemand helfen?