08.01.2015, 22:12
(
Последний раз редактировалось willianholzadm; 09.01.2015 в 03:31.
)
Bom, estou tendo dificuldade demais em uma tela de login que estou desenvolvendo.
Seguinte, a textdraw estar selecionando e tudo mas quando clico nгo estar aparecendo a funзгo dela.
Agradeзo desde de jб !
@Edit , Consegui resolver !
Seguinte, a textdraw estar selecionando e tudo mas quando clico nгo estar aparecendo a funзгo dela.
PHP код:
new Text:TextLogin;
TextLogin = TextDrawCreate(33.000000, 213.000000, "Logar no servidor");
TextDrawBackgroundColor(TextLogin, 255);
TextDrawFont(TextLogin, 2);
TextDrawLetterSize(TextLogin, 0.290000, 1.000000);
TextDrawColor(TextLogin, -1);
TextDrawSetOutline(TextLogin, 0);
TextDrawSetProportional(TextLogin, 1);
TextDrawSetShadow(TextLogin, 1);
TextDrawUseBox(TextLogin, 1);
TextDrawBoxColor(TextLogin, 255);
TextDrawTextSize(TextLogin, 162.000000, 10.000000);
TextDrawSetSelectable(TextLogin, true); // LOGAR
if(_:clickedid != INVALID_TEXT_DRAW)
{
if(clickedid == TextLogin)
{
format(arquivo, sizeof(arquivo), ContasPlayers, getName(playerid));
if(INI_Exist(arquivo))
{
new Ip[100];
GetPlayerIp(playerid,Ip,sizeof(Ip));
format(stringlogreg, sizeof(stringlogreg), "{01F8FF}Olб, vocк jб possui uma conta registrada.\n\nNome:{01FF30} %s\n{01F8FF}Status:{01FF30} Registrada\n{01F8FF}IP:{01FF30} %s\n\n{01F8FF}Insira a sua senha para logar-se.\n\n{FFF801}* Caso tenha esquecido sua senha entre em contato com o suporte.", getName(playerid), Ip);
ShowPlayerDialog(playerid, DialogLogin, DIALOG_STYLE_PASSWORD, "{FFFFFF}Login", stringlogreg, "Login", "Sair");
}
else
{
ShowPlayerDialog(playerid, 2588, DIALOG_STYLE_MSGBOX, "{FFFFFF}AVISO", "{F60032}Vocк ainda nгo possuir uma conta em nosso servidor !\nPor Favor click em {FFFFFF}'REGISTRAR NO SERVIDOR'{F60032} antйs.", "Fechar", "");
}
return 1;
}
return 1;
}
@Edit , Consegui resolver !