lol sry

.Even if i could just make it say "The nextmap has not yet been voted for" ,then when the map has been voted it will display the nextmap.The one that comes with amxx wehn you type nextmap it just says the map your are playing.
Code:
new inprogress=0
new bool:mselected = false
public sayNextMap(id){
new timeleft = get_timeleft()
new time2=timeleft-timeleft%60
new minutesleft=floatround(float(time2)/60.0)
new mapname[32]
get_mapname(mapname,31)
new smap[32]
get_cvar_string("amx_nextmap",smap,31)
if(minutesleft>=2&&!mselected)
client_print(0,print_chat,"A Vote Will Occur For The Nextmap In %d %s ",(minutesleft==3||minutesleft==2)?timeleft-100:minutesleft-2,(minutesleft==3||minutesleft==2)?"seconds.":"minutes.")
else
if(mselected)
client_print(0,print_chat,"Players have voted for %s...Map change is in %d seconds",smap,timeleft)
else
if(inprogress)
client_print(0,print_chat,"Current map is %s. Voting is in progress for nextmap...",mapname)
return PLUGIN_HANDLED
}
__________________