Hi
I inserted colors for the text in the script. When I do the compile there are no errors, but when I log in to the server and type timeleft nothing happens (The text from the script that should be in color does not appear). Does anyone know what the problem is?
The code I use is:
Code:
#include<amxmodx>
#include<amxmisc>
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_chat, "!g[KGB] !nNema ogranicenja rundi!")
}
if(get_pcvar_num(MaxRounds) >0)
{
client_print_color(id,print_chat, "!g[KGB] !nPreostalo rundi: !t%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 }
*/
Please stop trying to help. You appear to just be posting random stuff. Wait until you actually understand more about AMX Mod X and how the game works.