Hi , i have a small problem with this code , the messages are displayed , but in different languages , how to fix ?
PHP Code:
#include < amxmodx >
new iMsgIndex;
new messages[][] =
{
"MSG_1",
"MSG_2",
"MSG_3",
"MSG_4"
}
public plugin_init()
{
register_dictionary("crazy_zombie_plague.txt");
set_task(20.0, "show_messages", .flags="b");
}
public show_messages(id)
{
iMsgIndex = iMsgIndex % sizeof(messages);
client_print_color(0, "%L", LANG_PLAYER, messages[iMsgIndex++]);
}
stock client_print_color(const id,const input[], any:...)
{
new msg[191], players[32], count = 1; vformat(msg,190,input,3);
replace_all(msg,190,"/g","^4"); // green
replace_all(msg,190,"/y","^1"); // normal
replace_all(msg,190,"/t","^3"); // team
if (id) players[0] = id; else get_players(players,count,"ch");
for (new i=0;i<count;i++)
{
if (is_user_connected(players[i]))
{
message_begin(MSG_ONE_UNRELIABLE,get_user_msgid("SayText"),_,players[i]);
write_byte(players[i]);
write_string(msg);
message_end();
}
}
}
PHP Code:
[bp]
MSG_1 = /g[ZP] /yAddon criado por CrazY. Aproveite! :D
MSG_2 = /g[ZP] /yPressione F pra usar a laterna.
MSG_3 = /g[ZP] /yPressione M pra abrir o menu.
MSG_4 = /g[ZP] /yVisite o blog: www.crazyblgger.blogspot.com.br
[en]
MSG_1 = /g[ZP] /yAddon created by CrazY. Enjoy! :D
MSG_2 = /g[ZP] /yPress F to use the flashlight.
MSG_3 = /g[ZP] /yPress M to open the menu.
MSG_4 = /g[ZP] /yVisit the website: www.crazyblgger.blogspot.com.br
__________________