mam plugin kt贸ry przez timeleft pokazuje ile pozosta艂o rund do ko艅ca tylko kiedy dam powiedzmy restart to plugin nie odlicza od pocz膮tku rund tylko ju偶 kolejn膮...
chyba 偶e macie taki plugin kt贸ry dobrze odlicza pozosta艂e rundy

#include <amxmodx>
#include <amxmisc>
new SayText;
new a_runda;
new b_runda;
new c_runda;
public plugin_init()
{
register_plugin("Round_Left", "1.1", "MaKeL")
SayText = get_user_msgid("SayText");
c_runda = get_cvar_num("mp_maxrounds")
register_clcmd("say timeleft","Set_timeleft")
register_clcmd("say roundleft","Set_timeleft")
register_event("HLTV", "NewRound", "a", "1=0", "2=0")
}
public NewRound()
{
a_runda++
}
public Set_timeleft(id)
{
b_runda = c_runda - a_runda
if(b_runda > 4)
{
print_green(id,"[amxx] Pozostalo %d rund do konca", b_runda)
}
if(b_runda == 4 ||b_runda == 3)
{
print_green(id,"[amxx] Pozostalo %d rundy do konca", b_runda)
}
if(b_runda == 2)
{
print_green(id,"[amxx] Uwaga !!! przedostatnia runda")
}
if(b_runda == 1)
{
print_green(id,"[amxx] Uwaga !!! Ostatnia runda")
}
}
stock print_green(id,const fmt[],{Float,_}:...) { //this is my stock btw
if(id && !is_user_connected(id)) return 0
static buffer[192]
buffer[0] = '^x04'
vformat(buffer[1],190, fmt,3)
message_begin(id ? MSG_ONE : MSG_ALL,SayText,{0,0,0},id)
write_byte(id)
write_string(buffer)
message_end()
return 1
}