Do you think I could just leave this part blank and it'd be okay? We're just going to replace the whole thing with a header image anyway, right?
You are not logged in.
Sometimes users can spam and crash the bot, but besides from not listening to spamming request, how can i recover and reconnect the bot? cuz it seems like it's not really working. Do i have to reset any variables?
con.OnDisconnect += delegate(object sender, string error)
{
Program p = new Program();
connect(p.email, p.pass, p.worldid, p.accountOption);
return;
}
static void connect(string a, string b, string c, int accountOption)
{
Console.WriteLine("[Bot] Trying to login...");
//..... More to go
}
Offline
Try changing this:
con.OnDisconnect += delegate(object sender, string error)
{
Program p = new Program();
connect(p.email, p.pass, p.worldid, p.accountOption);
return;
}
to this:
con.OnDisconnect += delegate(object sender, string error)
{
Thread.Sleep(100); // just to prevent stack over flow
Program p = new Program();
connect(p.email, p.pass, p.worldid, p.accountOption);
return;
}
If doesn't work, don't ask me.
Offline
Thread.Sleep(100); // just to prevent stack over flow
Congrats! I'm nominating you for http://www.thedailywtf.com/!
--------------
On-topic:
You should probably not create a new Program(), because that instance will probably not contain an email/pass/worldid... How about using "this.email", "this.pass", etc.?
I have never thought of programming for reputation and honor. What I have in my heart must come out. That is the reason why I code.
Offline
how about not even using the "this.", whats wrong with those strings.
Just to clarify my intentions. The same code gets generated either way.
I have never thought of programming for reputation and honor. What I have in my heart must come out. That is the reason why I code.
Offline
You could make your life even easier, goeyfun, and use windows forms. It's a massive handicap to work with console.
One bot to rule them all, one bot to find them. One bot to bring them all... and with this cliché blind them.
Offline
con.OnDisconnect += delegate(object sender, string error)
{
connect(email, pass, worldid, accountOption);
return;
}
I hope this will not work but try
I removed the Program object, i dont know why you need to use it.
Warning!
This user has been found guilty by The Committee of Truth of using honesty, and reminding people of the past, without permission and outside of the allotted timeframes.
I’ve been asked if I’m ChatGPT5.
The answer is no.
I hope this helps! Let me know if you have any other questions.
Everybody edits, but some edit more than others
Offline
Offline
I just made a quick bot that spam to see the effect.
Conclusions: The final message is not final.... "Final Warning. You have said the same thing 1000 times." But after that i myself stop the bot so.... Hmmmmm
Warning!
This user has been found guilty by The Committee of Truth of using honesty, and reminding people of the past, without permission and outside of the allotted timeframes.
I’ve been asked if I’m ChatGPT5.
The answer is no.
I hope this helps! Let me know if you have any other questions.
Everybody edits, but some edit more than others
Offline
Offline
[ Started around 1743874078.5146 - Generated in 0.118 seconds, 15 queries executed - Memory usage: 1.48 MiB (Peak: 1.64 MiB) ]