Quote:
Originally Posted by simanovich
As in my last check, FM_GetGameDescription did work, with the last hlds files (SteamCMD Update)
|
It's work normale, my friend have servers from MondialServeurs ( This Host Uses Last HLDS Update ) and it's work without problem.
EDIT: Try This
Code:
#include < amxmodx >
#include < fakemeta >
public plugin_init( )
register_forward( FM_GetGameDescription, "OnGameDescription" );
public OnGameDescription( )
{
forward_return( FMV_STRING, "Your Game Name Here" );
return FMRES_SUPERCEDE
}