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.
Hello everyone!
I am having trouble with a bot that needs to /teleport multiple people with breaks in between. For example, code is something like this:
connection.Send("say", "/teleport " + users[m.GetInt(0)].username + " 11 14");
System.Threading.Thread.Sleep(400);
connection.Send("say", "/teleport " + users[m.GetInt(0)].username + " 11 14");
System.Threading.Thread.Sleep(400);
connection.Send("say", "/teleport " + users[m.GetInt(0)].username + " 13 16");
System.Threading.Thread.Sleep(400);
connection.Send("say", "/teleport " + users[m.GetInt(0)].username + " 17 16");
System.Threading.Thread.Sleep(400);
connection.Send("say", "/teleport " + users[m.GetInt(0)].username + " 17 16");
System.Threading.Thread.Sleep(400);
connection.Send("say", "/teleport " + users[m.GetInt(0)].username + " 13 16");
System.Threading.Thread.Sleep(400);
connection.Send("say", "/teleport " + users[m.GetInt(0)].username + " 11 14");
Unfortunately, it seems only one person can be /teleported at a time. I think it has something to do with the System.Threading command not letting any other commands pass during it. Can anyone help me, so everyone can teleport while others are teleporting?
Thanks,
AK712
Offline
Just wondering... Why don't you just delete the Thread.Sleep()?
Offline
Because they need to stay in that teleported area for a specific amount of time.
Offline
ThreadPool.QueueUserWorkItem(delegate
{
//Your Code Here
});
thanks zoey aaaaaaaaaaaand thanks latif for the avatar
Offline
Just wondering... Why don't you just delete the Thread.Sleep()?
Because the new EE server being developed by the new admins doesn't allow a lot of messages in chat for a time of 575 at minimum. Altough, some server code will remain and still remains.
Try changing it to something like:
Sleep(575);
//code
Sleep(400);
//code
Sleep(575);
//code
Hope you get it. Works extremely fine for me.
Offline
Hello everyone!
I am having trouble with a bot that needs to /teleport multiple people with breaks in between. For example, code is something like this:
connection.Send("say", "/teleport " + users[m.GetInt(0)].username + " 11 14");
System.Threading.Thread.Sleep(400);
connection.Send("say", "/teleport " + users[m.GetInt(0)].username + " 11 14");
System.Threading.Thread.Sleep(400);
connection.Send("say", "/teleport " + users[m.GetInt(0)].username + " 13 16");
System.Threading.Thread.Sleep(400);
connection.Send("say", "/teleport " + users[m.GetInt(0)].username + " 17 16");
System.Threading.Thread.Sleep(400);
connection.Send("say", "/teleport " + users[m.GetInt(0)].username + " 17 16");
System.Threading.Thread.Sleep(400);
connection.Send("say", "/teleport " + users[m.GetInt(0)].username + " 13 16");
System.Threading.Thread.Sleep(400);
connection.Send("say", "/teleport " + users[m.GetInt(0)].username + " 11 14");Unfortunately, it seems only one person can be /teleported at a time. I think it has something to do with the System.Threading command not letting any other commands pass during it. Can anyone help me, so everyone can teleport while others are teleporting?
Thanks,
AK712
Are you using a loop? (for (..., while (...)
Offline
I think he wants to say that the bot dosent process any other event until the action of this one is done.
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
You can do this by multithreading (Look here for tutorial). This will allow multiple players at the same time.
Offline
Offline
All you need is a message queue and a stopwatch to determine when a certain amount of time has passed.
Offline
Sleep is tottaly not reccomended, I would reccomend async, like goeyfun said.
await Task.Delay(int milliseconds)
shh i have returned
Offline
[ Started around 1743878135.0166 - Generated in 0.058 seconds, 13 queries executed - Memory usage: 1.56 MiB (Peak: 1.72 MiB) ]