Hello,
I want after i say /countdown then
Start a hud message who change to other number after "1sec"
Exemple: 5 "1sec =" 4 "1sec" 3 "1sec" 2 "1sec" 1 "1sec" FIGHT!!
PHP Code:
register_clcmd("say /countdown", "cmd_countdown")
new const g_Count[][] =
{
"5",
"4",
"3",
"2",
"1",
"FIGHT!!"
}
public cmd_countdown(id)
{
set_hudmessage(0, 0, 205, -1.0, -1.0, 2, 1.0, 9.0, 0.1, 0.2, 4)
show_hudmessage(0,"%i", g_Count)
g_Count = 0
g_Count++
}
It's not working