the full code should be like this:
Code:
#include <amxmodx>
public plugin_init() {
register_plugin("Plugin Name", "Version", "Author")
register_dictionary("mydiction.txt") //this assumes it is in:
//cstrike/amxmodx/data/lang/mydiction.txt
}
public plugin_end() {
new mapname[32]
get_mapname(mapname, 31)
client_print(0, print_chat, "%L", LANG_PLAYER, "PLAYED_MAP", mapname)
}
__________________