Input Dialog
#3

It works very well but i do have a problem.
When i type 10, the script executes 1 and 10. will tell you the following:
You have sold 1 pile of logs to Darryl(NPC) for 200$
You have sold 10 pile of logs to Darryl(NPC) for 2000$

Code:
PHP код:
                    if(inputtext[0] == '1')
                    {
                         
// do something
                    
}
                    if(
inputtext[0] == '1' && inputtext[1] == '0')
                    {
                         
// do something
                    

I did try the following, but this does only execute if(inputtext[0] == '1') no matter which input you use.

PHP код:
                    if(inputtext[0] == '1')
                    {
                         
// do something
                    
}
                    else if(
inputtext[0] == '1' && inputtext[1] == '0')
                    {
                         
// do something
                    

What am i doing wrong?
Reply


Messages In This Thread
Input Dialog - by jasperschellekens - 09.04.2017, 10:13
Re: Input Dialog - by Eoussama - 09.04.2017, 10:19
Re: Input Dialog - by jasperschellekens - 10.04.2017, 12:25
Re: Input Dialog - by OneDay - 10.04.2017, 12:28
Re: Input Dialog - by jasperschellekens - 10.04.2017, 12:35
Re: Input Dialog - by GangstaSunny. - 10.04.2017, 12:47

Forum Jump:


Users browsing this thread: 1 Guest(s)