Shynex
Member
- Joined
- Jan 28, 2020
- Messages
- 11
- Programming Experience
- Beginner
So currently I am programming a c# Steam Bot with the visual Studio add on selenium.
So far it is working pretty well, but the "while (true)" loop just stops after some time.
Sometimes its running like 600 times, but there are also some runs with only 100 iterations.
I highly appreciate every Idea, which could solve my Problem.
Thats basicly the Code:
So far it is working pretty well, but the "while (true)" loop just stops after some time.
Sometimes its running like 600 times, but there are also some runs with only 100 iterations.
I highly appreciate every Idea, which could solve my Problem.
Thats basicly the Code:
C#:
while (true)
{
//Click some Buttons
//Save some Numbers
if (I like the Item)
{
//buyItem();
}
Reload_the_Numbers()
reloadButton.Click();
wait(5);
}
Last edited by a moderator: