I'm having some trouble inserting ml in a plugin.
I did this for client_print, but it doesn't work.
Code:
client_print(id, print_chat, "%s %L", id, "MR_CONNECT_1", prefix);
client_print(id, print_chat, "%s %L", id, "MR_CONNECT_2", prefix);
client_print(id, print_chat, "%s %L", id, "MR_CONNECT_3", prefix);
client_print(id, print_chat, "%s %L", id, "MR_CONNECT_4", prefix);
I get "b ML_NOTFOUND MR_CONNECT_1" in chat.
And i did this for hudmessages, and this works fine.
Code:
formatex(powername[id], 99, "%L", id, "MR_POWER_NONE");
This is the ml
Code:
MR_CONNECT_1 = This server is running Super Mario Mod by Drekes.
MR_CONNECT_2 = Type /help for everything you need to know.
MR_CONNECT_3 = Type /guns to choose your guns.
MR_CONNECT_4 = You will need to bind +mario to use some skills.
MR_POWER_NONE = None
Does someone know what i'm doing wrong?
__________________