10.04.2017, 12:25
(
Последний раз редактировалось jasperschellekens; 10.04.2017 в 12:26.
Причина: forgot [php] tags
)
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:
I did try the following, but this does only execute if(inputtext[0] == '1') no matter which input you use.
What am i doing wrong?
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
}
PHP код:
if(inputtext[0] == '1')
{
// do something
}
else if(inputtext[0] == '1' && inputtext[1] == '0')
{
// do something
}