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.
Pages: 1
Hello i want to ask is it possible to make some space like free to edit and some place isnt, thanks!
If you mean like you have minigames which shouldn't be edited and in the rest of the world you can, yes.
What you have to do is you have to check what the player's position is. You can do this in your OnMessage. PlayerIO sends a messsage 'm' with that data.
The area that can't be edited in my example is X=50, Y=50.
Code (read the whole message before adding it to your code!):
private void onMessage(object sender, PlayerIOClient.Message m) { if (m.Type == "m") { if ((m.GetInt(1) > 50) && (m.Getint(2) > 50)) { con.Send("say", "/giveedit " + players[m.GetInt(0)]); } else if ((m.Getint(1) < 50) && (m.GetInt(2) < 50)) { con.Send("say", "/giveedit " + players[m.GetInt(0)]); } } }
The only problem with this code is that is will send a command each time a player moves. this will make the bot slow, and will probably be very slow.
To solve this, you can use a List to check if a player has edit.
---------------------------------------------------------
This is what you have to do:
Add this below your 'static string worldkey;'
List<string> edit = new List<string>(); List<string> noedit = new List<string>();
Now comes the OnMessage code:
private void onMessage(object sender, PlayerIOClient.Message m) { if (m.Type == "add") { players.Add(m.GetInt(0), m.GetString(1)); noedit.Add(m.GetString(1)); } if (m.Type == "m") { if (((m.GetInt(1) > 50) && (m.Getint(2) > 50)) && (noedit.Contains(players[m.GetInt(0)])) { con.Send("say", "/giveedit " + players[m.GetInt(0)]); noedit.Remove(players[m.GetInt(0)]); edit.Add(players[m.GetInt(0)]); } else if (((m.Getint(1) < 50) && (m.GetInt(2) < 50)) && (edit.Contains(players[m.GetInt(0)])) { con.Send("say", "/giveedit " + players[m.GetInt(0)]); edit.Remove(players[m.GetInt(0)]); noedit.Add(players[m.GetInt(0)]); } } }
I hope this worked!
912468
Offline
If you hit an arrow key inside the edit box and moved outside of the box, you would still have edit until you released the key and by doing so sent another packet to the bot.
I would suggest removing a player's edit if they draw outside the box; maybe give them a warning and edit access after 15 seconds or so.
Or you could dig out that EE Physics dll [someone] made, to track more accurately a player's position. But it being possible to draw outside the box from inside the box, you would still need to tell off misbehaving players.
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 most easy is to make all world a "free edit".
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
The Doctor wrote:The most easy is to make all world a "free edit".
No. Lot of you said my bots sucks so I want to make somthing like shift with some updates...
There are lot of shift bots with updates... Nothing what you did "sucks" is just already-made/no practical purpose.
You got wonderful ideas but are only copies. You need to make something new!
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
Pages: 1
[ Started around 1743862105.9579 - Generated in 0.043 seconds, 12 queries executed - Memory usage: 1.49 MiB (Peak: 1.63 MiB) ]