%L is used to get strings from LangFile
Ex func :
PHP Code:
client_print(0, print_chat, "[AMXX] %L", LANG_PLAYER, "SCORE_MSG")
Now if my plugin uses a dictionary ( lang file )
Then that file should look like this
HTML Code:
[en]
SCORE_MSG = Your score is %d
[de]
SCORE_MSG = Ihr Spielergebnis ist %d
[es]
SCORE_MSG = Su cuenta es %d
[fr]
SCORE_MSG = Votre score est %d
Which means it will depend on user's language and will automatically take translations you provide in your dictionary ( lang file )