Code:
#include<amxmodx>
#include<amxmisc>
#include <chatcolor>
new MaxRounds
new RoundCount
public plugin_init() {
register_plugin("timeleft", "", "Muhammet Kaya")
register_logevent("round_end", 2, "1=Round_End")
register_event("TextMsg", "new_map_or_restart", "a", "2&#Game_C", "2&#Game_w")
register_clcmd("say timeleft","ShowRoundsLeft")
MaxRounds = get_cvar_pointer("mp_maxrounds")
}
public round_end()
{
RoundCount++
}
public new_map_or_restart()
{
RoundCount = 0
}
public ShowRoundsLeft(id)
{
if(get_pcvar_num(MaxRounds) == 0)
{
client_print_color(id,print_team_default, "^4[KGB] ^1Nema ogranicenja rundi!")
}
if(get_pcvar_num(MaxRounds) >0)
{
client_print_color(id,print_team_default, "^4[KGB] ^1Preostalo rundi: ^3%d", get_pcvar_num(MaxRounds) - RoundCount)
}
}
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang1050\\ f0\\ fs16 \n\\ par }
*/