i write a plugin for show time,but the "MONTHS[str_to_num(ns_Month)]","WEEK[str_to_num(ns_week)]" always return 0,why?
Code:
public show_timer(){
new MONTHS[12][] = {"01","02","03","04","05","06","07","08","09","10","11","12"}
new WEEK[7][] = {"1","2","3","4","5","6","7"}
new nextmap[32]
new cumap[32]
new timel = get_timeleft()
new ns_Hour[3], ns_Minutes[3],ns_Month[3],ns_Day[3],ns_Year[5],ns_second[3],ns_week[3]
get_cvar_string("amx_nextmap",nextmap,31)
get_mapname(cumap,31)
get_time("%H", ns_Hour, 2)
get_time("%M", ns_Minutes, 2)
get_time("%B", ns_Month, 2)
get_time("%d", ns_Day, 2)
get_time("%Y", ns_Year, 4)
get_time("%S", ns_second, 2)
get_time("%A", ns_week, 2)
set_hudmessage(0,255,0,0.70,0.18,0, 1.0, 1.0, 0.1, 0.2, 11)
show_hudmessage(0,"%s/%s/%s/ %s^nthe time: %s:%s:%s^nmap1: %s^nnextmap: %s^ntimeleft: %d:%02d",ns_Year,MONTHS[str_to_num(ns_Month) -1],ns_Day,WEEK[str_to_num(ns_week) -1],ns_Hour,ns_Minutes,ns_second,cumap,nextmap,timel / 60, timel % 60)
return PLUGIN_CONTINUE
}
public plugin_init()
{
register_plugin("TimeProjector","0.1","olol")
set_task(1.0, "show_timer",0,"",0,"b")
return PLUGIN_CONTINUE
}