Hello Ams !
I'm using a FFA Plugin
And i want have the Name of the day
It's working perfectly,
But after the Day Sunday finish, i don't have the day Monday again.
I use this:
Quote:
player_hudmessage(0, 5, HUD_DELAY + 1.0, {0, 0, 255}, "%L", LANG_SERVER, "FFA_STATUS_DAY", g_Days [g_FFADay])
new const g_Days[][] =
{
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday",
"Sunday"
}
public round_first()
{
g_FFADay = 0
}
|
I think i have to add a commande like this:
Quote:
If(g_FFADay = 7)
{
g_FFADAY = 0
}
|
But i don't know who i have to add this commande...