Write Error
#4

pawn Код:
new full = strlen(inputtext);
for(new i = 0; i < full; i++)
    {
        if(IsNumeric(inputtext[i]))
         {
          SendClientMessage(playerid, 0xFFFFFFFF, "Your  Firstname Cannot Contain Numbers or be Blank Text Only");
            ShowPlayerDialog(playerid,5,DIALOG_STYLE_INPUT,"Firstname","What is your firstname?","Submit","Cancel");
          return 0;
         }
    }

pawn Код:
stock IsNumeric(string[])
{
    for (new i = 0, j = strlen(string); i < j; i++)
    {
        if (string[i] > '9' || string[i] < '0') return 0;
    }
    return 1;
}
Reply


Messages In This Thread
Write Error - by Buzzbomb - 13.11.2010, 02:13
Re: Write Error - by Buzzbomb - 13.11.2010, 04:23
Re: Write Error - by willsuckformoney - 13.11.2010, 04:48
Re: Write Error - by gr56 - 13.11.2010, 05:31
Re: Write Error - by Buzzbomb - 13.11.2010, 06:09
Re: Write Error - by gr56 - 13.11.2010, 06:36
Re: Write Error - by Buzzbomb - 13.11.2010, 07:52

Forum Jump:


Users browsing this thread: 1 Guest(s)