Code:
#include <amxmodx>
#include <crxranks>
#include <engine>
const SPEAK_LEVEL = 5
public plugin_init()
{
register_plugin("CRXRanks: Speak On Level", "1.0", "OciXCrom")
}
public crxranks_user_level_updated(id, iLevel)
{
set_speak(id, iLevel >= 5 ? SPEAK_NORMAL : SPEAK_MUTED)
}
__________________