02.06.2017, 21:03
Como posso fazer um sistema bilнngue? alguйm pode me passar algum tutorial? jб tentei dois tutoriais e nгo funcionou.
#define Dialog_Idioma 7 //no topo ShowPlayerDialog(playerid, Dialog_Idioma, DIALOG_STYLE_MSGBOX, "Language/Linguagem", "Mensagem Idioma 1\n\n\ Mensagem Idioma 2\n\n", "Idioma01", "Idioma02");
}
if (dialogid == Dialog_Idioma)
{
if(response)
{
//idioma 1
//o que acontece aqui
PlayerDados[playerid][Idioma1]=1;//Existe
PlayerDados[playerid][Idioma2]=0;//Nгo existe
}
else /*outro*/
{
//idioma 2
//o que acontece aqui
PlayerDados[playerid][Idioma2]=1;;//Existe
PlayerDados[playerid][Idioma1]=0;//Nгo existe
}
return 1;
enum InfoPlayer {
Idioma1,
Idioma2
};
new PlayerDados[MAX_PLAYERS][InfoPlayer];
COMMAND:kick(playerid, params[])
{
if(PlayerDados[playerid][Admin]==0)return MensagemIdioma(playerid);
}
stock MensagemIdioma(playerid)
{
if(PlayerDados[playerid][Idioma1]==1)
{
SendClientMessage(playerid, -1,"You can not!");
return 1;
}
if(PlayerDados[playerid][Idioma2]==1)
{
SendClientMessage(playerid, -1,"Vocк nгo pode!");
return 1;
}
return 0;
}