Nothing2Lose has written
EDIT: Altes Prob gelöst (oh mein Gott war das crap)
Neues Prob. : zum Tageswechsel (event:changeday)
commt eine fehlermeldung in der console, warum?
Code:
n:start {
$mounthday=1;
$mounth=1;
$year=1;
}
on:changeday {
$mounthday+1;
if ($mounthday=>31); {
$mounth+1
$mounthday=1
}
if ($mounth=>5); {
$year+1
$mounth=1
}
}
Neues Prob. : zum Tageswechsel (event:changeday)
commt eine fehlermeldung in der console, warum?
Code:
n:start {
$mounthday=1;
$mounth=1;
$year=1;
}
on:changeday {
$mounthday+1;
if ($mounthday=>31); {
$mounth+1
$mounthday=1
}
if ($mounth=>5); {
$year+1
$mounth=1
}
}
vergiss nicht die ";" am ende der zeilen, sonst gibts nen error. und ob das einfach "+" nicht auch einen auslöst kp. ich benutz da immer "++" bzw "--" für 1+/- oder wenns mehr als 1 ist dann "+=" bzw "-=" ...
weiterhin darf zwischen dem
1
if ($mounth=>5) {