This is what you should do for your plugin:
mylangs.txt
Code:
[en]
OHHAI_THAR = Ohhai thar!
[de]
OHHAI_THAR = You suck, teehee.
myplugin.sma
Code:
#include < amxmodx >
public plugin_init( )
{
register_dictionary( "mylangs.txt" );
}
public client_putinserver( iPlayer )
{
client_print( iPlayer, print_chat, "* %L", iPlayer, "OHHAI_THAR" );
}
If you follow that example, then it should work.
__________________