How to make a config stop after 1 hit [instead of using OB Settings]
-
Hello,
Is it possible to make a config stop after 1 hit using LoliScript ?
The reason I want this is because I made a combo scraper.Regards,
Micro
-
There is an option in the settings to do exactly this, look for it.
-
@Ruri Yes, but like I mentioned I want to do this for a specific config and not change the overall settings in OB.
Just so that me/friends don't have to change the settings all the time when running this specific config.
-
No you can't. Maybe it will be possible in the future, I don't know.
-
You can try scripting.
IF "<X>" EqualTo "<Y>"
SET STATUS FAIL
ENDIFIF "<STATUS>" Contains "SUCCESS"
NEWGVAR "X" "10"
NEWGVAR "Y" "10"
ENDIF
-
It will only hit once, then it will fail all the other accounts.
In case, I wanted to stop after the hit change:IF "<X>" EqualTo "<Y>"
SET STATUS BAN
ENDIFSo, after the first hit, I stopped the test!
-
It's a nice idea but he wants to be able to stop the execution, not just send everything else to fail, and that is not supported yet as the slave bot has no knowledge about its master and cannot command its master to stop.
-
Instead of failing to ban it, it will somehow "pause" the execution.
I've even come an update he can use that.