1. asassin95 - 04 Декабря, 2017 - 09:26:08 - перейти к сообщению
How to make the script stop when a certain condition is reached?
2. Kibor - 04 Декабря, 2017 - 11:13:59 - перейти к сообщению
To stop the script, just make the goto transition to the end of the script.
To check the condition, use the if statement.
To check the condition, use the if statement.
CODE:
int a=0;
loop()
{
a++;
if (a==100) goto exit;
}
exit:;
loop()
{
a++;
if (a==100) goto exit;
}
exit:;
3. asassin95 - 07 Декабря, 2017 - 12:06:50 - перейти к сообщению
How to close the program during operation by pressing T
4. Kibor - 07 Декабря, 2017 - 14:40:06 - перейти к сообщению
CODE:
enabletimer(0);
loop()//The bot cycle
{
sleep(100);
}
CREATE_TIMER(0, 100)
{
if (getkeystate(84)==1) close();// Pressed T
}
enabletimer(0);
loop()//The bot cycle
{
sleep(100);
}
CREATE_TIMER(0, 100)
{
if (getkeystate(84)==1) close();// Pressed T
}