Dialog inputtext help!
#15

Quote:
Originally Posted by Jochemd
Посмотреть сообщение
No problem :P
Actually it is, IsNumeric it's not for converting a string to integer, it checks if the input is numeric!
Insert ABCD, and using strval on the ABCD string may result in a strange long number.

So i suggest you to use IsNumeric, because the one who is gonna send you the Race Reqeust, he might wanna insert
3e by accident. So guess what happens. Error, or crash.



Here , use this.
pawn Код:
else if(dialogid == 3)
{
    if ( response ){
        if ( !IsNumeric ( inputtext ) ) return SendClientMessage(...); //ERROR No-Number inserted.
        if ( !strlen ( inputtext ) ) return ShowPlayerDialogEx(playerid, 3);}
    else SendClientMessage(playerid, COLOR_GREY, "[Error:] You have cancelled the request!");
}
You can also try using sscanf, which will check if the player is connected, and it will ease your job by almost 60%.
Reply


Messages In This Thread
Dialog inputtext help! - by Flyfishes - 23.11.2010, 14:04
Re: Dialog inputtext help! - by Zh3r0 - 23.11.2010, 14:07
Re: Dialog inputtext help! - by [MWR]Blood - 23.11.2010, 14:09
Re: Dialog inputtext help! - by Zh3r0 - 23.11.2010, 14:10
Re: Dialog inputtext help! - by Flyfishes - 23.11.2010, 14:15
Re: Dialog inputtext help! - by TheXIII - 23.11.2010, 14:39
Re: Dialog inputtext help! - by Flyfishes - 23.11.2010, 14:40
Re: Dialog inputtext help! - by Zh3r0 - 23.11.2010, 14:46
Re: Dialog inputtext help! - by Scenario - 23.11.2010, 14:50
Re: Dialog inputtext help! - by Flyfishes - 23.11.2010, 14:51
Re: Dialog inputtext help! - by Flyfishes - 23.11.2010, 14:58
Re: Dialog inputtext help! - by Jochemd - 23.11.2010, 15:16
Re: Dialog inputtext help! - by Flyfishes - 23.11.2010, 15:19
Re: Dialog inputtext help! - by Jochemd - 23.11.2010, 15:28
Re: Dialog inputtext help! - by Zh3r0 - 23.11.2010, 15:34
Re: Dialog inputtext help! - by Jochemd - 23.11.2010, 15:39
Re: Dialog inputtext help! - by Zh3r0 - 23.11.2010, 15:41
Re: Dialog inputtext help! - by Jochemd - 23.11.2010, 15:44
Re: Dialog inputtext help! - by Zh3r0 - 23.11.2010, 15:47

Forum Jump:


Users browsing this thread: 1 Guest(s)