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.
Somebody told me this may be a better way to send chats or blocks
// Start
Thread A{
chatlist.Add(What i have to send);
}
Thread B{
foreach blaaaa in chatlist{
con.Send("say",blaaa);
}
// End
this dual thread method to replace the old way im using
//Start
Void A{
con.Send("say",blaaa);
con.Send("say",blaaa2);
}
//End
I wanna ask is the upper method more effective? Or is there any way you used to?
Offline
The client prevents chat messages being sent faster than something like 600-700ms, so unless you really mess up your code, it's difficult to be more "effective".
Sending a packet doesn't take long; it's not clear why you need any threads unless you're sending repeat messages with a timer. Your code's fine =3
One bot to rule them all, one bot to find them. One bot to bring them all... and with this cliché blind them.
Offline
The client prevents chat messages being sent faster than something like 600-700ms, so unless you really mess up your code, it's difficult to be more "effective".
Sending a packet doesn't take long; it's not clear why you need any threads unless you're sending repeat messages with a timer. Your code's fine =3
Correction: It is 500ms, due to jitter, it still probably makes sense to choose 600ms.
But yeah, in your second example, the second chat message will just be ignored.
Oh and what language is your code in? I would totally use a lovely syntax like that o.O
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
well im lazy to type those sleep... okay so I'll stick with the old way, not extra thread.
Btw, How to implement a anti-spam when bot is sending chat?
// what im using...
Random bool crap True or False Generated.
if(crap == True)string extra="."
con.Send("say",crap+"nonsense message");
//End
I just randomly put a dot in front of the message, is that good enough?
Offline
Is the fastest way to send blocks half of the ping time to api.playerio.com, or half of the time it takes from sending the block to receiving it?
I would ignore ping and just decrease the delay until blocks start being missed out. Then add a few ms to allow for lag.
One bot to rule them all, one bot to find them. One bot to bring them all... and with this cliché blind them.
Offline
[ Started around 1743877837.6614 - Generated in 0.040 seconds, 12 queries executed - Memory usage: 1.44 MiB (Peak: 1.56 MiB) ]