Code:
// In plugin_init()
register_dictionary( "mydictionaryfile.txt" );
// In your function()
show_hudmessage(0,"%L", LANG_PLAYER, "TIME_REMAINING", time_hour, time_min, time_sec, timeleft / 60, timeleft % 60,nextmap );
// In your dictionary file :
[en]
TIME_REMAINING = The time: %d:%d:%d^nTime remaining: %d:%02d^nNext map: %s
As notes : I use LANG_PLAYER because the id here is 0. If 0 is not passed you have to use this id instead. eg : If you write
show_hudmessage(index ; you have to use
index instead of
LANG_PLAYER.
__________________