eskemo, you can't check g_Days == 8, it's an array.
You need to add g_FFADays++ after that...or you should add here
PHP Code:
player_hudmessage(0, 5, HUD_DELAY + 1.0, {0, 0, 255}, "%L", LANG_SERVER, "FFA_STATUS_DAY", g_Days [g_FFADay++])
Also, this is wrong. If you want to compare 2 integers, you use ==, not =
PHP Code:
If(g_FFADay = 7)
So your code should be
PHP Code:
If(g_FFADay == 7)