This code goes not updated when player get info (Server List)
PHP Code:
#include <amxmodx>
#include <fakemeta>
new p_Name;
public plugin_init()
{
register_plugin("Game Namer","1.1","NeuroToxin");
p_Name = register_cvar("amx_gamename","Counter-Strike");
register_forward(FM_GetGameDescription,"FM_GameDesc");
}
public FM_GameDesc()
{
new szName[32];
get_pcvar_string(p_Name,szName,charsmax(szName));
forward_return(FMV_STRING,szName);
return FMRES_SUPERCEDE;
}
Any Suggestion updates?
__________________