01.05.2013, 04:00
Debes comparar la variable con el nъmero ingresado.
pawn Код:
if(dialogid == Dialog_Test)
{
if(response == 1)
{
if(Info[playerid][pTarjetaCredito] == strval(inputtext))
{
SendClientMessageEx(playerid, -1, " Funciono ");
}
else
{
SendClientMessage(playerid,-1,"Pin incorrecto");
}
}
return 1;
}